.featured-games-carousel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 58px 42px;
}

.featured-games-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.featured-games-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.55s ease;
    will-change: transform;
}

.featured-game-card {
    min-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 0.8fr);
    align-items: stretch;
    background: rgba(17, 24, 39, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

/* SOL GÖRSEL ALANI */
.featured-game-image-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 920 / 430;
    overflow: hidden;
    background: #06080c;
}

.featured-game-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #06080c;
    transition: transform 0.45s ease;
}

.featured-game-image-link:hover .featured-game-image {
    transform: scale(1.035);
}

/* GÖRSEL ÜZERINDE YOUTUBE HOVER */
.featured-game-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition:
        opacity 0.3s ease,
        background 0.3s ease;
}

.featured-game-image-link:hover .featured-game-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.58);
}

.featured-game-play {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff0000;
    box-shadow: 0 10px 35px rgba(255, 0, 0, 0.4);
}

.featured-game-play svg {
    width: 34px;
    height: 34px;
}

/* SAG BILGI ALANI */
.featured-game-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    gap: 15px;
    padding: 22px 24px;
    overflow: hidden;
}

.featured-game-label {
    margin: 0 0 5px;
    color: #facc15;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.featured-game-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(21px, 2.2vw, 31px);
    line-height: 1.08;
    font-weight: 800;
}

.featured-game-details {
    display: grid;
    gap: 8px;
    margin: 0;
}

.featured-game-details div {
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.featured-game-details div:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.featured-game-details dt {
    margin-bottom: 2px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.featured-game-details dd {
    margin: 0;
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
}

/* OKLAR */
.featured-game-arrow {
    position: absolute;
    top: calc(50% - 21px);
    z-index: 10;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(250, 204, 21, 0.35);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.96);
    color: #facc15;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.featured-game-arrow:hover {
    background: #facc15;
    color: #111827;
    transform: translateY(-50%) scale(1.08);
}

.featured-game-prev {
    left: 0;
}

.featured-game-next {
    right: 0;
}

/* NOKTALAR */
.featured-games-dots {
    position: absolute;
    left: 50%;
    bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 9px;
    transform: translateX(-50%);
}

.featured-games-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.27);
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.featured-games-dot.active {
    width: 25px;
    border-radius: 999px;
    background: #facc15;
}

/* TABLET VE TELEFON */
@media (max-width: 850px) {
    .featured-games-carousel {
        padding-right: 0;
        padding-left: 0;
    }

    .featured-game-card {
        grid-template-columns: 1fr;
    }

    .featured-game-content {
        padding: 22px;
    }

    .featured-game-arrow {
        top: 32%;
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .featured-game-prev {
        left: 12px;
    }

    .featured-game-next {
        right: 12px;
    }
}