:root {
    --bg: #080c14;
    --surface: #0f1629;
    --surface-hover: #162038;
    --ink: #080c14;
    --text: #f8fafc;
    --muted: #94a3b8;
    --border: rgba(255, 255, 255, .08);
    --border-hover: rgba(255, 255, 255, .2);
    --coral: #ff4f38;
    --navy: #080c14;
    --yellow: #fbbf24;
    --lime: #22c55e;
    --purple: #8b5cf6;
}

*, *::before, *::after {
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    color-scheme: dark;
    overflow-x: hidden;
}

body a {
    color: inherit;
    text-decoration: none;
}

body img {
    max-width: 100%;
    display: block;
}

.wrap {
    width: min(1200px, 100% - 48px);
    margin-inline: auto;
}

/* ── Header ── */
.hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 12, 20, .88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

.hdr.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

.hdr__in {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hdr__logo {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -.03em;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.hdr__logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 14px;
}

.hdr__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hdr__nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s;
}

.hdr__nav a:hover {
    color: #fff;
}

.hdr__cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hdr__cta-link {
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
}

.hdr__cta-link:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .hdr__nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hdr__nav,
    .hdr__cta {
        display: none;
    }
    .hdr__in {
        justify-content: center;
    }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:active {
    transform: scale(.97);
}

.btn--coral {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(255, 79, 56, .5);
}

.btn--coral:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(255, 79, 56, .6);
}

.btn--dark {
    background: var(--surface);
    color: #fff;
    border: 1px solid var(--border);
}

.btn--dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(0, 0, 0, .5);
    border-color: var(--border-hover);
}

.btn--dark-glass {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn--dark-glass:hover {
    background: rgba(255, 255, 255, .16);
    color: #fff;
    transform: translateY(-2px);
}

.btn--store {
    background: #0f1629;
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    gap: 10px;
    border: 1px solid var(--border);
}

.btn--store:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
}

.btn--store small {
    display: block;
    font-size: 9px;
    font-weight: 500;
    opacity: .55;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.1;
}

.btn--store strong {
    display: block;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
}

/* ── Hero Showcase Container ── */
.hero-showcase {
    position: relative;
    background: var(--ink);
    width: 100%;
}

/* ── Hero ── */
.hero {
    position: relative;
    padding: 76px 0 0;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}

/* ── Ambient Background Glow Circles (Universal) ── */
.bg-circle,
.hero__bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(50px);
    z-index: 0;
}

.hero__bg-circle--a {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    background: var(--coral);
    opacity: .14;
}

.hero__bg-circle--b {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -80px;
    background: var(--yellow);
    opacity: .12;
}

.bg-circle--coral {
    background: var(--coral);
    opacity: .12;
}

.bg-circle--yellow {
    background: var(--yellow);
    opacity: .10;
}

.bg-circle--teal {
    background: var(--teal);
    opacity: .11;
}

.bg-circle--purple {
    background: #a855f7;
    opacity: .11;
}

.bg-circle--blue {
    background: #3b82f6;
    opacity: .11;
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    column-gap: 56px;
    align-items: center;
    padding-bottom: 8px;
}

@media (max-width: 960px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 20px;
    }

    .hero__shot {
        width: 100%;
        display: flex;
        justify-content: center;
        order: -1;
        margin-bottom: 8px;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero__badge i {
    color: var(--coral);
}

.hero__title {
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 850;
    line-height: 1.18;
    letter-spacing: -.03em;
    margin-bottom: 20px;
    min-height: calc(2 * 1.18em);
    display: block;
    white-space: normal;
}

.hero__title em {
    font-style: normal;
    color: var(--coral);
    display: inline;
}

.hero__content-wrap {
    position: relative;
    min-height: 290px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 960px) {
    .hero__content-wrap {
        min-height: auto;
    }
}

.hero__slide-content {
    display: none;
    animation: heroSlideFadeIn .35s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero__slide-content.active {
    display: block;
}

@keyframes heroSlideFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: min-content;
    gap: 12px 20px;
    margin-bottom: 28px;
    min-height: 180px;
    align-content: flex-start;
}

@media (max-width: 640px) {
    .hero__features {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 240px;
    }
}

.hero__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
}

.hero__features li strong {
    color: #fff;
    font-weight: 700;
}

.hero__feat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform .2s ease, box-shadow .2s ease;
}

.hero__features li:hover .hero__feat-icon {
    transform: scale(1.08);
}

.hero__feat-icon svg {
    width: 15px;
    height: 15px;
    display: block;
}

.hero__feat-icon--red {
    background: rgba(255, 79, 56, .15);
    border: 1px solid rgba(255, 79, 56, .35);
    color: #ff4f38;
}

.hero__feat-icon--green {
    background: rgba(34, 197, 94, .15);
    border: 1px solid rgba(34, 197, 94, .35);
    color: #22c55e;
}

.hero__feat-icon--amber {
    background: rgba(245, 158, 11, .15);
    border: 1px solid rgba(245, 158, 11, .35);
    color: #fbbf24;
}

.hero__feat-icon--cyan {
    background: rgba(6, 182, 212, .15);
    border: 1px solid rgba(6, 182, 212, .35);
    color: #06b6d4;
}

.hero__feat-icon--purple {
    background: rgba(139, 92, 246, .15);
    border: 1px solid rgba(139, 92, 246, .35);
    color: #a78bfa;
}

.hero__feat-icon--blue {
    background: rgba(59, 130, 246, .15);
    border: 1px solid rgba(59, 130, 246, .35);
    color: #60a5fa;
}

.hero__feat-icon--pink {
    background: rgba(236, 72, 153, .15);
    border: 1px solid rgba(236, 72, 153, .35);
    color: #f472b6;
}

.hero__feat-icon--teal {
    background: rgba(20, 184, 166, .15);
    border: 1px solid rgba(20, 184, 166, .35);
    color: #2dd4bf;
}


/* ── Hero 3D Card Stack (Fixed Container, Never Shrinks) ── */
.hero__shot {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__stack-stage {
    position: relative;
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
}

.hero__stack {
    position: relative;
    width: 100%;
    height: 360px;
    perspective: 1200px;
}

@media (max-width: 640px) {
    .hero__stack {
        height: 290px;
    }
}

.hero__card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform .55s cubic-bezier(.16, 1, .3, 1), opacity .5s ease, filter .5s ease;
    cursor: pointer;
    overflow: visible;
    will-change: transform, opacity;
    user-select: none;
}

.hero__card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hero__card-media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
}

.hero__card-media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    display: block;
    box-shadow: 0 18px 45px -10px rgba(0, 0, 0, .6);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero__card-media img[data-src] {
    opacity: 0;
    visibility: hidden;
}

.hero__card-media img.is-loaded {
    opacity: 1;
    visibility: visible;
}

/* ── Hero Navigation Controls ── */
.hero__nav-controls {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.hero__counter-badge {
    font-weight: 800;
    font-size: 11.5px;
    letter-spacing: .04em;
    color: var(--yellow);
    background: rgba(251, 191, 36, .12);
    border: 1px solid rgba(251, 191, 36, .25);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.hero__nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s;
}

.hero__nav-btn:hover {
    background: var(--coral);
    border-color: var(--coral);
    transform: translateY(-2px);
}

.hero__nav-btn:active {
    transform: scale(.94);
}

.hero__nav-btn svg {
    width: 18px;
    height: 18px;
}

.hero__dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
}

.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .25);
    border: none;
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

.hero__dot:hover {
    background: rgba(255, 255, 255, .6);
}

.hero__dot.active {
    width: 22px;
    background: var(--coral);
}

/* ── Stats Strip ── */
.stats {
    background: transparent;
    color: #fff;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

@media (max-width: 680px) {
    .stats__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.stats__cell {
    padding: 0;
}

/* ── Downloads & Store Platforms CTA ── */
.downloads {
    position: relative;
    background: transparent;
    padding: 8px 0 28px;
    z-index: 2;
}

.downloads__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.downloads__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.downloads__cta .btn--store {
    background: #0f1629;
    border: 1.5px solid rgba(255, 255, 255, .15);
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .45);
    transition: all .25s ease;
    padding: 12px 24px;
}

.downloads__cta .btn--store:hover {
    border-color: rgba(255, 255, 255, .35);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -10px rgba(0, 0, 0, .65);
}

.downloads__note {
    margin-top: 12px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .72);
    font-weight: 500;
    letter-spacing: -.01em;
}

@media (max-width: 640px) {
    .downloads {
        padding: 10px 0 36px;
    }

    .downloads__cta {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .downloads__cta .btn--store {
        width: 100%;
        justify-content: center;
    }
}

.stats__num {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 6px;
    color: #fff;
}

.stats__num span[data-count] {
    color: var(--yellow);
}

.stats__label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── Sections Common ── */
.sec {
    padding: 88px 0;
    background: var(--bg);
    color: var(--text);
}

.sec--gray {
    background: #0c1220;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.sec__header {
    margin-bottom: 56px;
}

.sec__header--center {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
}

.sec__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}

.sec__title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin-bottom: 16px;
    color: #fff;
}

.sec__desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
}

/* ── Bento Grid ── */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.bento__card {
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 32px;
    background: var(--surface);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.bento__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, .08);
}

.bento__card--coral:hover { border-color: var(--coral); }
.bento__card--navy:hover { border-color: var(--navy); }
.bento__card--yellow:hover { border-color: var(--yellow); }
.bento__card--lime:hover { border-color: var(--lime); }
.bento__card--purple:hover { border-color: var(--purple); }

.bento__card--8 { grid-column: span 8; }
.bento__card--4 { grid-column: span 4; }
.bento__card--6 { grid-column: span 6; }
.bento__card--12 { grid-column: span 12; }

@media (max-width: 900px) {
    .bento__card--8, .bento__card--4, .bento__card--6 {
        grid-column: span 12;
    }
}

.bento__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.bento__card--coral .bento__icon { background: rgba(255, 79, 56, .1); color: var(--coral); }
.bento__card--navy .bento__icon { background: rgba(10, 22, 40, .1); color: var(--navy); }
.bento__card--yellow .bento__icon { background: rgba(251, 191, 36, .15); color: #b45309; }
.bento__card--lime .bento__icon { background: rgba(34, 197, 94, .1); color: #16a34a; }
.bento__card--purple .bento__icon { background: rgba(124, 58, 237, .1); color: var(--purple); }

.bento__tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bento__card--coral .bento__tag { color: var(--coral); }
.bento__card--navy .bento__tag { color: var(--navy); }
.bento__card--yellow .bento__tag { color: #b45309; }
.bento__card--lime .bento__tag { color: #16a34a; }
.bento__card--purple .bento__tag { color: var(--purple); }

.bento__title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}

.bento__desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
}

.bento__list {
    list-style: none;
    margin-top: 16px;
}

.bento__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 0;
}

.bento__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.bento__card--coral .bento__list li::before { background: var(--coral); }
.bento__card--navy .bento__list li::before { background: var(--navy); }
.bento__card--yellow .bento__list li::before { background: #b45309; }
.bento__card--lime .bento__list li::before { background: #16a34a; }
.bento__card--purple .bento__list li::before { background: var(--purple); }

.bento__frame {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
}

.bento__frame-bar {
    height: 28px;
    background: #f5f5f4;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
}

.bento__frame-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.bento__frame-bar span:nth-child(1) { background: var(--coral); }
.bento__frame-bar span:nth-child(2) { background: var(--yellow); }
.bento__frame-bar span:nth-child(3) { background: var(--lime); }
.bento__frame img { width: 100%; display: block; }

/* ── Features (color block style) ── */
.feat {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.feat:first-of-type {
    border-top: none;
    padding-top: 0;
}

@media (max-width: 900px) {
    .feat {
        padding: 36px 0;
    }
}

.feat__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.feat__tag--red { background: #fef2f2; color: #dc2626; }
.feat__tag--violet { background: #f5f3ff; color: #7c3aed; }
.feat__tag--fuchsia { background: #fdf4ff; color: #c026d3; }
.feat__tag--teal { background: #f0fdfa; color: #0d9488; }
.feat__tag--blue { background: #eff6ff; color: #2563eb; }

.feat__title {
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.feat__desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 20px;
}

.feat__desc strong {
    color: var(--ink);
}

.feat__list {
    list-style: none;
}

.feat__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
}

.feat__list li:last-child {
    border-bottom: none;
}

.feat__list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.feat__list--red li::before { background: #dc2626; }
.feat__list--violet li::before { background: #7c3aed; }
.feat__list--fuchsia li::before { background: #c026d3; }
.feat__list--teal li::before { background: #0d9488; }
.feat__list--blue li::before { background: #2563eb; }

.feat__visual {
    position: relative;
}

.feat__screen {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.feat__screen-bar {
    height: 30px;
    background: #f8f8f6;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
}

.feat__screen-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.feat__screen-bar span:nth-child(1) { background: var(--coral); }
.feat__screen-bar span:nth-child(2) { background: var(--yellow); }
.feat__screen-bar span:nth-child(3) { background: var(--lime); }
.feat__screen img { width: 100%; display: block; }

.feat__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 28px 28px;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    z-index: 1;
    text-align: center;
}

.feat__overlay h3 {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 8px;
}

.feat__overlay p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .78);
}

/* ── Gamification Dark Block ── */
.game {
    border-radius: 20px;
    padding: 56px 48px;
    background: var(--navy);
    color: #fff;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 72px;
}

.game::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 79, 56, .1);
    pointer-events: none;
}

@media (max-width: 820px) {
    .game {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 28px;
    }
    .game__img {
        margin-inline: auto;
    }
}

.game__img {
    width: min(280px, 100%);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    position: relative;
    z-index: 1;
}

.game__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.game h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 900;
    letter-spacing: -.03em;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.game p {
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

/* ── Single Row Strip Showcase (Exams & Channels) ── */
.sec--strip-row {
    position: relative;
    padding: 20px 0 8px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.sec--strip-row-channels {
    padding: 4px 0 44px;
}

.strip-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 14px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-y;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.strip-container::-webkit-scrollbar {
    display: none;
}

.strip-track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: max-content;
    min-width: 100%;
    margin-inline: auto;
    padding: 0 32px;
}

.chip--more-badge {
    background: rgba(255, 79, 56, .10);
    border: 1.5px solid rgba(255, 79, 56, .42);
    box-shadow: 0 0 18px -4px rgba(255, 79, 56, .3);
    cursor: help;
}

.chip--more-badge:hover {
    border-color: var(--coral);
    background: rgba(255, 79, 56, .18);
    box-shadow: 0 0 24px -2px rgba(255, 79, 56, .5);
}

.chip__more-plus {
    font-weight: 900;
    font-size: 14.5px;
    color: #ff5e47;
    letter-spacing: .02em;
}

.chip__more-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    margin-left: 4px;
}

.strip-track--avatars {
    gap: 10px;
}

.channel-avatar-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1.5px solid var(--border);
    text-decoration: none;
    user-select: none;
    flex-shrink: 0;
    transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s ease, border-color .25s ease;
}

.channel-avatar-chip:hover {
    transform: translateY(-3px) scale(1.18);
    box-shadow: 0 10px 24px -4px rgba(255, 79, 56, .45);
    border-color: var(--coral);
    z-index: 5;
}

.channel-avatar-chip__img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.channel-avatar-chip--more {
    background: rgba(255, 79, 56, .10);
    border: 1.5px solid rgba(255, 79, 56, .45);
    box-shadow: 0 0 16px -4px rgba(255, 79, 56, .28);
    cursor: help;
}

.channel-avatar-chip--more:hover {
    border-color: var(--coral);
    background: rgba(255, 79, 56, .20);
    box-shadow: 0 0 24px -2px rgba(255, 79, 56, .55);
}

.channel-avatar-chip__plus {
    font-weight: 900;
    font-size: 13px;
    color: #ff5e47;
    letter-spacing: -0.02em;
    line-height: 1;
}

@media (max-width: 768px) {
    .sec--strip-row {
        padding: 14px 0 6px;
    }
    .sec--strip-row-channels {
        padding: 4px 0 28px;
    }
    .strip-container {
        padding: 6px 0;
        -webkit-overflow-scrolling: touch;
    }
    .strip-track {
        gap: 7px;
        padding: 0 14px;
        flex-wrap: nowrap !important;
    }
    .chip {
        padding: 6px 14px;
        font-size: 13px;
        flex-shrink: 0;
    }
    .channel-avatar-chip {
        width: 38px;
        height: 38px;
    }
    .channel-avatar-chip__plus {
        font-size: 11.5px;
    }
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    white-space: nowrap;
    user-select: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.chip:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, .55);
    border-color: rgba(255, 255, 255, .3);
}

.chip__name {
    font-weight: 800;
    font-size: 14.5px;
    letter-spacing: .02em;
    line-height: 1;
}

.channel-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px 6px 6px;
    border-radius: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    white-space: nowrap;
    text-decoration: none;
    user-select: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.channel-chip:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, .55);
    border-color: rgba(255, 79, 56, .4);
    background: rgba(255, 255, 255, .08);
}

.channel-chip__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: #1e293b;
    border: 1.5px solid rgba(255, 255, 255, .15);
    transition: border-color .25s ease;
}

.channel-chip:hover .channel-chip__avatar {
    border-color: var(--coral);
}

.channel-chip__name {
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .01em;
    color: var(--text);
    line-height: 1;
}



/* ── FAQ ── */
.faq {
    max-width: 720px;
    margin-inline: auto;
}

.faq__item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.faq__item:hover {
    border-color: var(--border-hover);
}

.faq__item.open {
    border-color: var(--coral);
    box-shadow: 0 8px 24px -8px rgba(255, 79, 56, .2);
}

.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    color: #fff;
    cursor: pointer;
}

.faq__q-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 7px;
    background: rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    font-size: 14px;
    color: #fff;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), background .3s, color .3s;
}

.faq__item.open .faq__q-icon {
    transform: rotate(45deg);
    background: var(--coral);
    color: #fff;
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.16, 1, .3, 1);
}

.faq__a-inner {
    padding: 0 22px 20px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 15px;
}

/* ── Warning ── */
.warn {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-radius: 14px;
    background: rgba(251, 191, 36, .08);
    border: 1.5px solid rgba(251, 191, 36, .25);
    color: #fde68a;
    font-size: 14px;
    line-height: 1.7;
}

.warn i {
    color: var(--yellow);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── Footer ── */
.ftr {
    background: #050810;
    color: #94a3b8;
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
}

.ftr__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

@media (max-width: 760px) {
    .ftr__top {
        grid-template-columns: 1fr;
    }
}

.ftr__logo {
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.ftr__logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: 14px;
}

.ftr__desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 38ch;
    margin-bottom: 20px;
}

.ftr__stores {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
}

.ftr__stores span {
    color: #52525b;
    font-size: 13px;
    font-weight: 600;
}

.ftr__stores a {
    color: #d4d4d8;
    font-weight: 700;
}

.ftr__stores a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ftr__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
}

.ftr__links h4 {
    grid-column: 1/-1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #52525b;
    margin-bottom: 2px;
}

.ftr__links a {
    font-size: 14px;
    color: #a1a1aa;
    transition: color .2s;
}

.ftr__links a:hover {
    color: #fff;
}

/* ── Footer Supporters ── */
.ftr__supporters {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 32px 0 24px;
    margin-top: 10px;
}

.ftr__sup-heading {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 16px;
}

.ftr__sup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.ftr__sup-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.ftr__sup-card:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-2px);
}

.ftr__sup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.ftr__sup-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.ftr__sup-avatar--initial {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    display: grid;
    place-items: center;
}

.ftr__sup-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ftr__sup-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #f1f5f9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ftr__sup-desc {
    font-size: 11.5px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin-top: 2px;
}

.ftr__sup-socials {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.ftr__sup-socials a {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .05);
    color: #94a3b8;
    display: grid;
    place-items: center;
    font-size: 11px;
    transition: background .2s, color .2s;
}

.ftr__sup-socials a:hover {
    background: var(--coral);
    color: #fff;
}

.ftr__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: #52525b;
}

.ftr__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.ftr__legal a {
    color: #71717a;
}

.ftr__legal a:hover {
    color: #fff;
}

.ftr__social {
    display: flex;
    gap: 8px;
}

.ftr__social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: #a1a1aa;
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: background .2s, color .2s;
}

.ftr__social a:hover {
    background: var(--coral);
    color: #fff;
}

/* ── Mobile bar ── */
.mbar {
    display: none;
}

@media (max-width: 639px) {
    .mbar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100;
        gap: 10px;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        background: rgba(8, 12, 20, .92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid var(--border);
    }
    .mbar .btn {
        flex: 1;
    }
    body {
        padding-bottom: 76px;
    }
    .ftr__bottom {
        padding-bottom: 32px;
    }
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
