.games__section {
    padding-top: 32px;
}

.slider__list {
    gap: 8px;
    max-width: 100%;
    overflow: auto;
}

.slider__list-flex {
    display: flex;
    justify-content: center;
    column-gap: 100px;
}

.slider__link-flex {
    display: flex;

    align-items: center;
    gap: 5px;
}

.slider__list-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 232px);
}

.slider__list-grid .slider__item {
    display: flex;
    background: #0F1128;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.slider__list::-webkit-scrollbar {
    display: none;
}

.panel-games {
    border-radius: 8px;
    background-color: #021717;
    padding: 20px 16px;
}

.panel-games__name {
    font-family: "Mulish-Bold";
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    color: #DDDDE3;
}

.games__title-block {
    display: flex;
    justify-content: space-between;
}

.games__title {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.games__score-link {
    font-family: "Mulish-Medium";
    font-weight: 500;
    font-size: 12px;
    color: #4D8AB9;
}

.games-slider {
    padding-top: 28px;
}

.games__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0F1128;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
}

.games__image {
    width: 100%;
}

.games__img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.games__name {
    padding: 16px;
    font-family: "Mulish-Medium";
    font-weight: 500;
    font-size: 12px;
    color: #C0C0C8;
    text-transform: capitalize;
}

.games__section img {
    border-radius: 8px;
}

.games__section img:hover {
    border: 2px solid #FF2301;
}

@media (max-width: 600px) {
    .slider__list-grid {
        grid-template-columns: repeat(5, 148px);
    }

    .slider__list-grid .slider__item {
        height: 100%;
    }
}