/* =============================================
   SLIDER ALTI — 3 + 9 GRID
   ============================================= */

.hero-below {
    position: relative;
    z-index: 6;
    margin-top: 1.25rem;
    padding-bottom: 2rem;
}

.hero-below__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.hero-below__col--3,
.hero-below__col--9 {
    min-width: 0;
}

.hero-below__col--3 {
    overflow: hidden;
    isolation: isolate;
}

.hero-below__col--9 {
    isolation: isolate;
}

/* ---- Platform kartı ---- */
.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.125rem;
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 1rem 0;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #edf0f5;
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    box-sizing: border-box;
}

.platform-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.platform-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0.25rem 0;
}

.platform-swiper.swiper {
    overflow: hidden;
}

.platform-swiper .swiper-slide {
    width: 80%;
}

.platform-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    min-height: 3.25rem;
    padding: 0.75rem 0.875rem 0.75rem 1rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--platform-start, #4b9ff5) 0%, var(--platform-end, #1565d8) 100%);
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

.platform-pill__start {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
    min-width: 0;
}

.platform-pill__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.platform-pill__icon svg,
.platform-pill__icon i {
    display: block;
    font-size: 1.125rem;
    line-height: 1;
}

.platform-pill__icon svg {
    width: 22px;
    height: 22px;
}

.platform-pill__arrow svg {
    width: 22px;
    height: 22px;
}

.platform-pill__name {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.platform-pill__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.92;
}

.platform-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1.125rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #0d2f97 0%, #6c8ceb 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(13, 47, 151, 0.35);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.platform-card__cta svg {
    width: 15px;
    height: 15px;
}

.platform-card__cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow: 0 6px 18px rgba(13, 47, 151, 0.45);
}

/* ---- Responsive grid 3 + 9 ---- */
@media (min-width: 768px) {
    .hero-below__grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .hero-below__col--3,
    .hero-below__col--9 {
        display: flex;
        min-height: 0;
    }

    .hero-below__col--3 {
        grid-column: span 3;
    }

    .hero-below__col--9 {
        grid-column: span 9;
    }

    .platform-card {
        padding: 1.125rem 0;
    }
}

@media (min-width: 992px) {
    .hero-below {
        margin-top: 1.5rem;
        padding-bottom: 2.5rem;
    }

    .platform-card__title {
        font-size: 1.25rem;
    }
}

/* ---- Oyun / E-Pin carousel ---- */
.games-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 1.125rem 1rem 1rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #edf0f5;
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    box-sizing: border-box;
}

.games-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.625rem;
}

.games-panel__title {
    font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #1a2744;
}

.games-panel__highlight {
    color: #0d2f97;
}

.games-panel__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.games-panel__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    background: #ffffff;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.games-panel__nav-btn:hover {
    color: #0d2f97;
    border-color: #c7d4f7;
    background: #f8faff;
}

.games-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.games-swiper.swiper {
    overflow: hidden;
}

.games-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.game-card {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #eef1f6;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
}

.game-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    color: #94a3b8;
}

@media (min-width: 768px) {
    .games-panel {
        padding: 1.25rem 1.25rem 1.125rem;
    }

    .games-panel__head {
        margin-bottom: 0.75rem;
    }

    .game-card {
        border-radius: 14px;
    }
}

@media (min-width: 1200px) {
    .games-panel__title {
        font-size: 1rem;
    }
}
