        /* ══════════════════════════════════════════════════════
   PERF NOTES:
   • Orb + float-card elements REMOVED from HTML — they were creating
     separate GPU compositing layers and delaying first paint.
   • Shimmer (background-position) animation REMOVED — not GPU-composited,
     caused continuous layout invalidation on the fixed sticky CTA.
   • Preconnects added in <head> for fonts/GTM — eliminates DNS lookup
     from critical path.
   • All animations that remain use only transform/opacity (compositor only).
   • System font stack used on initial paint; Outfit swapped in after idle.
══════════════════════════════════════════════════════ */

        :root {
            --red: #D91A1A;
            --red-dark: #B30F0F;
            --red-deeper: #7A0000;
            --red-mid: #F87171;
            --red-light: #FEE2E2;
            --red-light2: #FECACA;
            --accent: #FF5252;
            --gold: #FFD700;
            --white: #fff;
            --off-white: #FFF8F8;
            --text-dark: #1A0202;
            --text-mid: #3D0A0A;
            --text-gray: #6B3030;
            --s1: 0 2px 10px rgba(217, 26, 26, .07);
            --s2: 0 6px 24px rgba(217, 26, 26, .14);
            --slg: 0 16px 48px rgba(217, 26, 26, .22);
            --sr: 0 8px 30px rgba(217, 26, 26, .35);
            --r: 14px;
            --rl: 22px;
            --rp: 100px;
            --t: .26s cubic-bezier(.4, 0, .2, 1);
            --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeSpeed
        }

        body {
            font-family: var(--font);
            background: #fff;
            color: var(--text-dark);
            line-height: 1.7;
            font-size: 16px
        }

        body.font-loaded {
            font-family: 'Outfit', var(--font)
        }

        img {
            max-width: 100%;
            height: auto;
            display: block
        }

        a {
            text-decoration: none;
            color: inherit
        }

        ol,
        ul {
            padding-left: 1.4rem
        }

        /* ══ STICKY CTA — shimmer removed (was repainting every frame).
      Gradient stays vibrant, pulse rings animate transform+opacity only ══ */

        .sticky-cta {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 9999;
            animation: bouncein .9s cubic-bezier(.34, 1.56, .64, 1) .6s both
        }

        .sticky-cta-wrap {
            position: relative;
            display: inline-block
        }

        .sticky-cta a {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #FF5252, #D91A1A);
            color: #fff;
            font-weight: 800;
            font-size: 1rem;
            padding: .9rem 2.4rem;
            border-radius: var(--rp);
            box-shadow: 0 8px 32px rgba(217, 26, 26, .52), 0 2px 8px rgba(0, 0, 0, .2);
            white-space: nowrap;
            letter-spacing: .02em;
            transition: transform var(--t);
            border: 2.5px solid rgba(255, 255, 255, .36)
        }

        .sticky-cta a:hover {
            transform: scale(1.06);
            color: #fff
        }

        .pulse-ring {
            position: absolute;
            inset: -7px;
            border-radius: var(--rp);
            border: 2px solid rgba(255, 82, 82, .6);
            animation: ring 2s ease-in-out infinite;
            pointer-events: none
        }

        .pulse-ring2 {
            position: absolute;
            inset: -14px;
            border-radius: var(--rp);
            border: 1.5px solid rgba(255, 82, 82, .28);
            animation: ring 2s ease-in-out .5s infinite;
            pointer-events: none
        }

        /* ══ HEADER ══ */

        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, .96);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--red-light2);
            box-shadow: var(--s1);
            transition: box-shadow var(--t)
        }

        .header.scrolled {
            box-shadow: var(--s2)
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: .85rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .logo {
            display: flex;
            align-items: center;
            gap: .75rem;
            font-size: 1.55rem;
            font-weight: 900;
            color: var(--red);
            transition: transform var(--t)
        }

        .logo:hover {
            transform: scale(1.03)
        }

        .logo img {
            border-radius: 10px;
            width: 46px;
            height: 46px;
            object-fit: contain;
            background: var(--red-light);
            border: 2px solid var(--red-light2)
        }

        .nav-menu {
            display: flex;
            gap: 1.8rem;
            list-style: none;
            align-items: center
        }

        .nav-link {
            font-weight: 600;
            color: var(--text-mid);
            position: relative;
            transition: color var(--t);
            font-size: .93rem
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2.5px;
            background: linear-gradient(90deg, var(--red), var(--accent));
            border-radius: 2px;
            transition: width var(--t)
        }

        .nav-link:hover {
            color: var(--red)
        }

        .nav-link:hover::after {
            width: 100%
        }

        .cta-button {
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            color: #fff;
            padding: .7rem 1.7rem;
            border-radius: var(--rp);
            font-weight: 700;
            font-size: .88rem;
            box-shadow: var(--sr);
            transition: transform var(--t), box-shadow var(--t);
            letter-spacing: .02em
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 36px rgba(217, 26, 26, .44);
            color: #fff
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: 2px solid var(--red);
            color: var(--red);
            padding: .45rem .9rem;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            font-size: .88rem;
            font-family: inherit
        }

        /* ══ HERO — grid kept; orbs REMOVED (were massive compositing layers) ══ */

        .hero {
            background: linear-gradient(160deg, #0D0000 0%, #3A0000 30%, #7A0A0A 60%, #D91A1A 100%);
            padding: 0;
            position: relative;
            overflow: hidden;
            color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 82, 82, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 82, 82, .06) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none
        }

        .hero-cut {
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 80px;
            background: #fff;
            clip-path: polygon(0 100%, 100% 0, 100% 100%);
            pointer-events: none;
            z-index: 2
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 1.5rem 7rem;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .2);
            color: rgba(255, 255, 255, .92);
            padding: .4rem 1.1rem;
            border-radius: var(--rp);
            font-size: .8rem;
            font-weight: 700;
            letter-spacing: .07em;
            text-transform: uppercase;
            margin-bottom: 1.4rem;
            width: fit-content
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: #4ADE80;
            border-radius: 50%;
            animation: blink 1.5s ease infinite
        }

        /* LCP ELEMENT: H1 — system font, no delay, paints in first frame */

        .hero h1 {
            font-size: 3.6rem;
            font-weight: 900;
            line-height: 1.06;
            margin-bottom: 1.2rem;
            color: #fff
        }

        .hero h1 .line2 {
            display: block
        }

        .hero h1 .highlight {
            background: linear-gradient(90deg, #FFD700, #FFB3B3, #FF8A80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, .78);
            margin-bottom: 1.6rem;
            line-height: 1.72
        }

        .gift-box {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            background: rgba(255, 215, 0, .12);
            border: 1.5px solid rgba(255, 215, 0, .4);
            color: #FFD700;
            padding: .55rem 1.4rem;
            border-radius: 10px;
            font-weight: 700;
            font-size: .98rem;
            margin-bottom: 2rem;
            letter-spacing: .02em
        }

        .hero-cta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap
        }

        .btn-primary {
            background: linear-gradient(135deg, #FF5252, #D91A1A);
            color: #fff;
            padding: 1rem 2.2rem;
            border-radius: var(--rp);
            font-weight: 800;
            font-size: 1rem;
            box-shadow: 0 8px 28px rgba(217, 26, 26, .5);
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            transition: transform var(--t), box-shadow var(--t);
            border: none;
            cursor: pointer
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 44px rgba(217, 26, 26, .58);
            color: #fff
        }

        .btn-secondary {
            background: rgba(255, 255, 255, .1);
            color: #fff;
            padding: 1rem 2.2rem;
            border-radius: var(--rp);
            font-weight: 700;
            font-size: 1rem;
            border: 2px solid rgba(255, 255, 255, .32);
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            transition: background var(--t), border-color var(--t);
            cursor: pointer
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, .2);
            border-color: rgba(255, 255, 255, .55);
            color: #fff
        }

        .hero-trust-row {
            display: flex;
            flex-wrap: wrap;
            gap: .6rem;
            margin-top: 1.8rem
        }

        .trust-pill {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .15);
            color: rgba(255, 255, 255, .85);
            padding: .3rem .85rem;
            border-radius: var(--rp);
            font-size: .78rem;
            font-weight: 600
        }

        /* ══ HERO RIGHT — static panel, no float-card animations ══ */

        .hero-right {
            position: relative
        }

        .hero-visual-panel {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: var(--rl);
            overflow: hidden;
            box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .08);
            padding: 1.8rem;
            display: flex;
            flex-direction: column;
            gap: 1.2rem
        }

        .vp-bonus-bar {
            background: linear-gradient(135deg, rgba(255, 215, 0, .18), rgba(255, 215, 0, .06));
            border: 1px solid rgba(255, 215, 0, .35);
            border-radius: 10px;
            padding: 1rem;
            text-align: center
        }

        .vp-bonus-bar strong {
            color: #FFD700;
            font-size: 1.3rem;
            font-weight: 900;
            display: block
        }

        .vp-bonus-bar span {
            color: rgba(255, 255, 255, .8);
            font-size: .82rem
        }

        .vp-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: .85rem
        }

        .vp-tile {
            background: rgba(255, 255, 255, .1);
            border-radius: 10px;
            padding: 1.1rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, .12)
        }

        .vt-num {
            font-size: 1.7rem;
            font-weight: 900;
            color: #FFD700;
            display: block;
            line-height: 1
        }

        .vt-lbl {
            font-size: .73rem;
            color: rgba(255, 255, 255, .7);
            font-weight: 600;
            margin-top: .3rem;
            display: block
        }

        .vp-games {
            display: flex;
            flex-wrap: wrap;
            gap: .45rem;
            margin-top: .3rem
        }

        .vp-game-pill {
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 20px;
            padding: .3rem .8rem;
            font-size: .78rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .88)
        }

        /* ══ TRUST BAR ══ */

        .trust-bar {
            background: linear-gradient(135deg, var(--red-deeper), var(--red-dark));
            padding: 1.1rem 1.5rem;
            color: #fff
        }

        .trust-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: .75rem
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: .55rem;
            font-size: .88rem;
            font-weight: 600
        }

        .ti {
            font-size: 1.2rem
        }

        /* ══ LAYOUT ══ */

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem
        }

        .content-section {
            padding: 3rem 1.5rem;
            content-visibility: auto;
            contain-intrinsic-size: 0 400px
        }

        .section {
            padding: 3.5rem 1.5rem;
            content-visibility: auto;
            contain-intrinsic-size: 0 500px
        }

        .section-alt {
            background: var(--off-white)
        }

        .section-header {
            text-align: center;
            margin-bottom: 2.5rem
        }

        .section-tag {
            background: var(--red-light);
            color: var(--red);
            font-weight: 700;
            font-size: .78rem;
            padding: .35rem 1.1rem;
            border-radius: var(--rp);
            letter-spacing: .07em;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: .85rem;
            border: 1px solid var(--red-light2)
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: .9rem;
            line-height: 1.15
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-gray);
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.65
        }

        .content-section h2 {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1.1rem;
            line-height: 1.2;
            padding-bottom: .6rem;
            border-bottom: 2px solid var(--red-light2)
        }

        .content-section p {
            color: var(--text-gray);
            margin-bottom: .95rem;
            font-size: 1rem;
            line-height: 1.78
        }

        .content-section p:last-of-type {
            margin-bottom: 0
        }

        .card-subheading {
            font-size: 1.08rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 1.4rem 0 .65rem;
            padding-left: .85rem;
            border-left: 3px solid var(--red)
        }

        .red-link {
            color: var(--red);
            font-weight: 600;
            transition: color var(--t)
        }

        .red-link:hover {
            color: var(--accent)
        }

        .content-list {
            list-style: decimal;
            padding-left: 1.5rem;
            color: var(--text-gray);
            line-height: 1.85;
            margin-bottom: 1rem
        }

        .content-list li {
            margin-bottom: .35rem;
            font-size: .98rem
        }

        .content-list a {
            color: var(--red);
            font-weight: 600
        }

        .content-list-bullet {
            list-style: none;
            padding-left: 0;
            color: var(--text-gray);
            margin-bottom: 1rem
        }

        .content-list-bullet li {
            padding: .28rem 0 .28rem 1.4rem;
            position: relative;
            font-size: .98rem;
            line-height: 1.65
        }

        .content-list-bullet li::before {
            content: '';
            position: absolute;
            left: 0;
            top: .78rem;
            width: 7px;
            height: 7px;
            background: var(--red);
            border-radius: 50%
        }

        /* ══ GAMES ══ */

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.4rem;
            margin-top: 1rem
        }

        .game-card {
            background: #fff;
            border: 1px solid var(--red-light2);
            border-radius: var(--rl);
            padding: 1.8rem;
            box-shadow: var(--s1);
            transition: transform var(--t), box-shadow var(--t), border-color var(--t);
            position: relative;
            overflow: hidden
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--red), var(--accent))
        }

        .game-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--slg);
            border-color: var(--red)
        }

        .game-icon {
            font-size: 2.2rem;
            margin-bottom: .85rem
        }

        .game-title {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: .55rem
        }

        .game-desc {
            color: var(--text-gray);
            font-size: .93rem;
            line-height: 1.6
        }

        /* ══ STEPS ══ */

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.4rem
        }

        .step-card {
            background: #fff;
            border: 1px solid var(--red-light2);
            border-radius: var(--rl);
            padding: 1.6rem;
            box-shadow: var(--s1);
            transition: transform var(--t), box-shadow var(--t)
        }

        .step-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--s2)
        }

        .step-num {
            font-size: 2.6rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: .6rem;
            background: linear-gradient(135deg, var(--red), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .step-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: .5rem
        }

        .step-card p {
            color: var(--text-gray);
            font-size: .9rem;
            line-height: 1.55
        }

        .step-card a {
            color: var(--red);
            font-weight: 600
        }

        /* ══ FEATURES ══ */

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.4rem
        }

        .feature-card {
            background: #fff;
            border: 1px solid var(--red-light2);
            border-radius: var(--rl);
            padding: 1.6rem;
            box-shadow: var(--s1);
            transition: transform var(--t), box-shadow var(--t), border-color var(--t)
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--s2);
            border-color: var(--red-mid)
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: .8rem
        }

        .feature-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: .5rem
        }

        .feature-desc {
            color: var(--text-gray);
            font-size: .92rem;
            line-height: 1.6
        }

        .feature-desc a {
            color: var(--red);
            font-weight: 600
        }

        /* ══ STATS ══ */

        .stats-section {
            padding: 3rem 1.5rem;
            background: linear-gradient(135deg, var(--red-deeper), var(--red-dark), var(--red));
            content-visibility: auto;
            contain-intrinsic-size: 0 200px
        }

        .hero-card {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: var(--rl);
            padding: 2rem 1.8rem
        }

        .hero-card h3 {
            color: #fff;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 1rem
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
            margin-top: 1.2rem
        }

        .stat-item {
            text-align: center;
            color: #fff
        }

        .stat-number {
            font-size: 1.9rem;
            font-weight: 700;
            display: block;
            margin-bottom: .3rem;
            background: linear-gradient(90deg, #FFD700, #FFB3B3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .stat-label {
            font-size: .82rem;
            color: rgba(255, 255, 255, .7);
            font-weight: 500
        }

        /* ══ HIGHLIGHT BAND ══ */

        .highlight-band {
            background: linear-gradient(90deg, var(--red-dark), var(--accent));
            padding: 1.3rem 1.5rem;
            text-align: center
        }

        .highlight-band p {
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            margin: 0
        }

        .highlight-band a {
            color: #FFD700;
            text-decoration: underline;
            text-underline-offset: 3px
        }

        /* ══ FAQ ══ */

        .faq-container {
            max-width: 820px;
            margin: 0 auto
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--red-light2);
            border-radius: var(--r);
            margin-bottom: .75rem;
            overflow: hidden;
            transition: box-shadow var(--t)
        }

        .faq-item:hover {
            box-shadow: var(--s1)
        }

        .faq-question {
            padding: 1rem 1.3rem;
            font-weight: 700;
            font-size: .95rem;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background var(--t);
            user-select: none
        }

        .faq-question:hover {
            background: var(--off-white)
        }

        .faq-item.active .faq-question {
            background: var(--red-light);
            color: var(--red)
        }

        .faq-icon {
            font-size: .82rem;
            color: var(--red);
            transition: transform .3s ease;
            flex-shrink: 0;
            margin-left: 1rem
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg)
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease, padding .35s ease;
            color: var(--text-gray);
            font-size: .93rem;
            line-height: 1.7;
            padding: 0 1.3rem
        }

        .faq-item.active .faq-answer {
            max-height: 400px;
            padding: 0 1.3rem 1.1rem
        }

        /* ══ EEAT AUTHOR ══ */

        .author-card {
            background: linear-gradient(135deg, var(--off-white), #fff);
            border: 1px solid var(--red-light2);
            border-radius: var(--rl);
            padding: 2rem;
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            box-shadow: var(--s1)
        }

        .author-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex-shrink: 0;
            border: 3px solid var(--red-light2)
        }

        .author-info h3 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: .2rem
        }

        .author-title {
            font-size: .85rem;
            color: var(--red);
            font-weight: 600;
            margin-bottom: .6rem
        }

        .author-info p {
            font-size: .93rem;
            color: var(--text-gray);
            line-height: 1.65;
            margin: 0
        }

        .author-credentials {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
            margin-top: .85rem
        }

        .credential-badge {
            background: var(--red-light);
            color: var(--red-dark);
            font-size: .75rem;
            font-weight: 700;
            padding: .25rem .75rem;
            border-radius: var(--rp);
            border: 1px solid var(--red-light2)
        }

        /* ══ FOOTER ══ */

        .footer {
            background: linear-gradient(145deg, #0D0000, #3A0000);
            color: rgba(255, 255, 255, .8);
            padding: 3.5rem 1.5rem 0;
            content-visibility: auto;
            contain-intrinsic-size: 0 300px
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem
        }

        .footer-brand h3 {
            font-size: 1.4rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: .85rem
        }

        .footer-brand p {
            font-size: .88rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, .6)
        }

        .social-links {
            display: flex;
            gap: .65rem;
            margin-top: 1rem
        }

        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 9px;
            border: 1px solid rgba(255, 255, 255, .18);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .9rem;
            transition: background var(--t), border-color var(--t), transform var(--t);
            background: rgba(255, 255, 255, .06)
        }

        .social-link:hover {
            background: var(--red);
            border-color: var(--red);
            transform: translateY(-2px)
        }

        .footer-column h4 {
            font-size: .9rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: .85rem;
            text-transform: uppercase;
            letter-spacing: .05em
        }

        .footer-links {
            list-style: none;
            padding: 0
        }

        .footer-links li {
            margin-bottom: .5rem
        }

        .footer-links a {
            color: rgba(255, 255, 255, .6);
            font-size: .88rem;
            transition: color var(--t)
        }

        .footer-links a:hover {
            color: var(--accent)
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding: 1.5rem 0;
            text-align: center;
            font-size: .8rem;
            color: rgba(255, 255, 255, .45);
            line-height: 1.85
        }

        /* ══ CENTER IMAGE ══ */

        .center-image {
            width: 100%;
            margin-top: 2.5rem
        }

        .center-image img {
            width: 100%;
            max-width: 860px;
            margin: 0 auto;
            border-radius: var(--rl);
            box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
            min-height: 220px;
            background: rgba(217, 26, 26, .05)
        }

        /* ══ KEYFRAMES — only compositor-safe animations remain ══ */

        @keyframes blink {
            0%,
            100% {
                opacity: 1
            }
            50% {
                opacity: .35
            }
        }

        @keyframes ring {
            0% {
                opacity: 1;
                transform: scale(1)
            }
            100% {
                opacity: 0;
                transform: scale(1.2)
            }
        }

        @keyframes bouncein {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(50px)
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0)
            }
        }

        /* ══ RESPONSIVE ══ */

        @media(max-width:1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr)
            }
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 5rem 1.5rem 5.5rem
            }
            .hero-right {
                display: none
            }
            .hero h1 {
                font-size: 3rem
            }
        }

        @media(max-width:768px) {
            .nav-menu {
                display: none
            }
            .mobile-toggle {
                display: block
            }
            .hero {
                min-height: auto
            }
            .hero-inner {
                padding: 3rem 1rem 4.5rem;
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: center
            }
            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.1
            }
            .hero-subtitle {
                font-size: .97rem;
                line-height: 1.65
            }
            .hero-badge {
                font-size: .72rem;
                margin: 0 auto 1.2rem
            }
            .gift-box {
                font-size: .86rem;
                padding: .42rem .95rem;
                justify-content: center
            }
            .hero-cta {
                flex-direction: column;
                align-items: stretch
            }
            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
                font-size: .95rem;
                padding: .9rem 1.4rem
            }
            .hero-trust-row {
                justify-content: center
            }
            .hero-right {
                display: none
            }
            .trust-bar {
                padding: .85rem 1rem
            }
            .trust-bar-inner {
                gap: .45rem
            }
            .trust-item {
                font-size: .78rem;
                gap: .35rem
            }
            .container {
                padding: 0 1rem
            }
            .content-section {
                padding: 1.8rem 1rem
            }
            .section {
                padding: 2.2rem 1rem
            }
            .section-header {
                margin-bottom: 1.6rem
            }
            .section-title {
                font-size: 1.45rem
            }
            .section-subtitle {
                font-size: .9rem
            }
            .content-section h2 {
                font-size: 1.25rem;
                margin-bottom: .9rem
            }
            .content-section p {
                font-size: .93rem;
                line-height: 1.65;
                margin-bottom: .8rem
            }
            .card-subheading {
                font-size: .95rem;
                margin: 1rem 0 .5rem
            }
            .content-list li,
            .content-list-bullet li {
                font-size: .9rem;
                line-height: 1.55
            }
            .content-list-bullet li {
                padding: .2rem 0 .2rem 1.2rem
            }
            .games-grid,
            .steps-grid,
            .features-grid {
                gap: .9rem;
                grid-template-columns: 1fr
            }
            .game-card,
            .step-card,
            .feature-card {
                padding: 1.3rem 1rem
            }
            .stats-section {
                padding: 1.8rem 1rem
            }
            .hero-card {
                padding: 1.4rem .9rem
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: .8rem;
                margin-top: .9rem
            }
            .stat-number {
                font-size: 1.5rem
            }
            .faq-container {
                max-width: 100%
            }
            .faq-question {
                padding: .9rem 1rem;
                font-size: .9rem
            }
            .faq-answer {
                font-size: .87rem
            }
            .faq-item.active .faq-answer {
                padding: 0 1rem .95rem
            }
            .faq-item {
                margin-bottom: .6rem
            }
            .footer {
                padding: 2.2rem 1rem 0
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.4rem;
                margin-bottom: 1.6rem
            }
            .footer-brand h3 {
                font-size: 1.25rem
            }
            .footer-links a {
                font-size: .85rem
            }
            .footer-bottom {
                font-size: .76rem;
                padding: 1.2rem 0
            }
            .sticky-cta {
                bottom: 14px
            }
            .sticky-cta a {
                font-size: .86rem;
                padding: .75rem 1.5rem;
                gap: 7px
            }
            .pulse-ring {
                inset: -5px
            }
            .pulse-ring2 {
                inset: -10px
            }
            .author-card {
                flex-direction: column;
                gap: 1rem
            }
            .author-avatar {
                width: 56px;
                height: 56px;
                font-size: 1.5rem
            }
            .center-image {
                margin-top: 1.5rem
            }
        }

        @media(max-width:480px) {
            .hero h1 {
                font-size: 1.9rem
            }
            .content-section h2 {
                font-size: 1.15rem
            }
            .section-title {
                font-size: 1.32rem
            }
            .hero-badge {
                font-size: .68rem
            }
        }

        @media(prefers-reduced-motion:reduce) {
            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important
            }
            html {
                scroll-behavior: auto
            }
        }