.games__section{
    padding-top: 32px;
}

.games__list{
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 24px;
}

.games__item-big{
    grid-column: 1/3;
    grid-row: 1/3;
}

.games__list-rew .games__item-big{
    grid-column: 5/6;
    grid-row: 1/3;
}

.games__card-block{
    background-color: #231452;
    border-radius: 16px;
}

.games__card-image{
    border-radius: 16px;
    overflow: hidden;
}

.games__card-title{
    font-family:"Montserrat-Regular";
    font-weight:600;
    font-size: 12px;
    color:#C0C0C8;
    padding: 16px 0;
    text-align: center;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    width: 100%;
}

.slider__list {
    gap: 8px;
    max-width: 100%;
    overflow: auto;
}

.slider__list-flex {
    display: flex;
    gap: 40px;
}

.slider__link-flex{
    display: flex;
    align-items: center;
    gap: 5px;
}

.slider__list-grid {
    display: grid!important;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
}
.slider__item {
    display: flex;
}
.slider__list::-webkit-scrollbar{
    display: none;
}

.panel-games{
    border-radius: 8px;
    background-color: #231452;
    padding: 20px 16px;
}

.panel-games__name{
    font-family:"Montserrat-Bold";
    font-weight:700;
    font-size: 16px;
    white-space: nowrap;
    color:#E1E1E2;
}

@media (max-width:1025px){
    .games__item:last-child,
    .games__item:nth-last-child(2){
        display: none;
    }
}

@media (max-width:669px){
    .games__item:last-child,
    .games__item:nth-last-child(2){
        display: block;
    }
    .games__list{
        grid-template-rows: repeat(4, 1fr);
        grid-auto-flow: column;
    }
    .games__list-rew .games__item-big{
        grid-column: 1/3;
        grid-row: 1/3;
    }
}

@media (max-width:360px){
    .games__list,
    .games__list-rew .games__item-big{
        display: flex;
        flex-wrap: wrap;
        row-gap: 8px;
        column-gap: 5px;
    }
    .games__card-image{
        width: 100%;
        height: auto;
    }
    .games__item{width: calc(50% - 3px);}
    .games__item-big{width: 100%;}
}