        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        :root {
            /* Brand accents — CPL logo palette (dark mode) */
            --pitch: #0A0D1A;
            --grass1: #0D1020;
            --grass2: #0C0E1C;
            --lime: #ADFF2F;
            /* Laurel leaves */
            --yellow: #FF6A00;
            /* PREMIER LEAGUE orange-gold */
            --orange: #FF4500;
            /* Bat trail fire */
            --pink: #FF2D78;
            /* Bat glow hot pink */
            --cyan: #00D4FF;
            /* Shield teal border */
            --purple: #8B2FFF;
            /* CODE text violet */
            --white: #FFFFFF;
            --code-green: #39FF14;
            --gold: #FF9500;
            --red: #FF3B3B;

            /* Theme tokens — DARK by default (deep navy from CPL shield) */
            --bg: #0A0C1A;
            --bg-secondary: #0D0F22;
            --bg-card: #121428;
            --bg-rgb: 10, 12, 26;
            --fg: #F0F2FF;
            --fg-rgb: 240, 242, 255;
            --fg-muted: rgba(240, 242, 255, 0.65);
            --fg-subtle: rgba(240, 242, 255, 0.40);
            --fg-faint: rgba(240, 242, 255, 0.22);
            --border: rgba(139, 47, 255, 0.12);
            /* violet-tinted border */
            --border-strong: rgba(0, 212, 255, 0.18);
            /* cyan-tinted border */
            --card-bg: rgba(10, 12, 26, 0.7);
            --invert-pct: 0%;

            /* Arena card dark gradients */
            --arena-blitz-bg: linear-gradient(160deg, #1A0A00, #220E00);
            --arena-power-bg: linear-gradient(160deg, #060A1A, #0A1030);
            --arena-end-bg: linear-gradient(160deg, #1A0010, #220018);
            --gcard-bg: #080A18;
            --gcterm-bg: #050716;
            --hud-bg: #030414;
            --code-bg: #020409;
            --code-fg: #f8f8f2;
            --termbar-bg: rgba(255, 255, 255, .04);
            --termbar-border: rgba(255, 255, 255, .05);
            --term-border: rgba(255, 255, 255, .08);
            --termpath-color: rgba(255, 255, 255, .25);
        }

        body.light-mode {
            /* Brand accents — readable on light backgrounds */
            --lime: #3A7D00;
            --yellow: #C44800;
            /* darkened orange-gold */
            --orange: #B83000;
            --pink: #B5004A;
            --cyan: #0099BB;
            --purple: #6B1FDA;
            /* darkened violet */
            --red: #CC2200;
            --gold: #AA5500;

            /* Theme tokens — light (warm white base from shield highlight) */
            --bg: #F3F4FA;
            --bg-secondary: #E8EAF6;
            --bg-card: #FFFFFF;
            --bg-rgb: 243, 244, 250;
            --fg: #0D0F26;
            --fg-rgb: 13, 15, 38;
            --fg-muted: rgba(13, 15, 38, 0.65);
            --fg-subtle: rgba(13, 15, 38, 0.45);
            --fg-faint: rgba(13, 15, 38, 0.28);
            --border: rgba(13, 15, 38, 0.10);
            --border-strong: rgba(13, 15, 38, 0.18);
            --card-bg: rgba(255, 255, 255, 0.92);
            --invert-pct: 100%;
            --pitch: #D0D2E8;
            --grass1: #C0C4E0;
            --grass2: #E8EAF6;

            /* Light arena backgrounds */
            --arena-blitz-bg: linear-gradient(160deg, #FFF3E0, #FFE8C2);
            --arena-power-bg: linear-gradient(160deg, #EDE7FF, #E0D4FF);
            --arena-end-bg: linear-gradient(160deg, #FFE8F3, #FFD4E8);
            --gcard-bg: #FFFFFF;
            --gcterm-bg: #F5F6FA;
            --hud-bg: #F0F1F8;
            --code-bg: #F6F8FA;
            --code-fg: #24292F;
            --termbar-bg: rgba(0, 0, 0, .04);
            --termbar-border: rgba(0, 0, 0, .07);
            --term-border: rgba(0, 0, 0, .12);
            --termpath-color: rgba(0, 0, 0, .38);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden
        }

        section,
        [id] {
            scroll-margin-top: 110px;
        }

        body {
            background: var(--bg);
            color: var(--fg);
            font-family: 'Inter', 'Outfit', sans-serif;
            overflow-x: hidden;
            cursor: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
            font-size: 16px;
            transition: background 0.3s, color 0.3s;
        }

        /* ═══ CURSOR ═══ */
        #CUR {
            position: fixed;
            width: 16px;
            height: 16px;
            border: 2px solid var(--yellow);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: width .15s, height .15s, border-color .15s;
            transform: translate(-50%, -50%)
        }

        #CUR2 {
            position: fixed;
            width: 5px;
            height: 5px;
            background: var(--yellow);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%)
        }

        body:not(:hover) #CUR {
            opacity: 0
        }

        /* ═══ NAV ═══ */
        #NAV {
            position: fixed;
            top: 50px;
            left: 0;
            right: 0;
            z-index: 300;
            padding: 0 32px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background .3s, border-color .3s
        }

        #NAV.stuck {
            background: rgba(var(--bg-rgb), .95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-strong)
        }

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

        #themeToggle {
            background: var(--border);
            border: 1px solid var(--border-strong);
            color: var(--fg);
            cursor: pointer;
            font-size: 16px;
            width: 36px;
            height: 36px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s, border-color .2s;
            flex-shrink: 0;
        }

        #themeToggle:hover {
            background: var(--border-strong);
        }

        /* Mobile hamburger */
        #navHamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        #navHamburger span {
            width: 22px;
            height: 2px;
            background: var(--fg);
            border-radius: 2px;
            transition: .3s;
            display: block;
        }

        #navHamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        #navHamburger.open span:nth-child(2) {
            opacity: 0;
        }

        #navHamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile nav drawer */
        #mobileNav {
            display: none;
            position: fixed;
            top: 100px;
            left: 0;
            right: 0;
            background: rgba(var(--bg-rgb), .97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-strong);
            padding: 20px 24px 28px;
            flex-direction: column;
            gap: 4px;
            z-index: 299;
        }

        #mobileNav.open {
            display: flex;
        }

        .mnlink {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--fg-muted);
            text-decoration: none;
            text-transform: uppercase;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            transition: color .2s;
        }

        .mnlink:last-child {
            border-bottom: none;
        }

        .mnlink:hover {
            color: var(--fg);
        }

        .mnplay-mobile {
            display: inline-flex;
            background: var(--yellow);
            color: #000;
            padding: 12px 24px;
            border-radius: 4px;
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            margin-top: 12px;
            justify-content: center;
        }

        .nlogo {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 22px;
            letter-spacing: 3px;
            display: flex;
            align-items: center;
            gap: 10px
        }

        .nlogo-cr {
            color: var(--yellow)
        }

        .nlogo-sep {
            color: var(--fg-faint)
        }

        .nlogo-cpl {
            color: var(--lime);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 13px;
            font-weight: 900;
            letter-spacing: 4px
        }

        .nlinks {
            display: none;
        }

        .nlink {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--fg-muted);
            text-decoration: none;
            text-transform: uppercase;
            transition: .2s
        }

        .nlink:hover {
            color: var(--fg)
        }

        /* ═══ TOP ANNOUNCEMENT BAR ═══ */
        #topBar {
            position: fixed;
            inset: 0 0 auto;
            z-index: 400;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(90deg, #8B2FFF, #FF2D78 50%, #FF6A00);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;
            overflow: hidden;
        }

        #topBar::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .08) 50%, transparent 100%);
            animation: shimmerSlide 3s ease-in-out infinite;
        }

        .tbar-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 0 8px rgba(255, 255, 255, .8);
            animation: livePulse 1s infinite;
            flex-shrink: 0;
            margin-left: 12px;
        }

        @keyframes navPlayPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 200, 0, .6);
            }

            50% {
                box-shadow: 0 0 0 7px rgba(255, 200, 0, 0);
            }
        }

        .nplay {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--yellow), var(--purple));
            color: #fff;
            padding: 10px 22px;
            border-radius: 4px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: transform .2s, box-shadow .2s;
            white-space: nowrap;
            box-shadow: 0 0 18px rgba(139, 47, 255, .45), 0 0 6px rgba(255, 106, 0, .3);
            animation: navPlayPulse 2s ease-in-out infinite;
        }

        /* shimmer on the nav CTA */
        .nplay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
            animation: shimmerSlide 2s ease-in-out infinite;
        }

        .nplay:hover {
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 0 28px rgba(139, 47, 255, .7), 0 8px 24px rgba(255, 106, 0, .4);
        }

        /* ═══ HERO ═══ */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 660px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            /* Compensate for fixed 100px nav without breaking center alignment */
            padding-bottom: 0;
            padding-top: 0;
        }

        #bgCanvas {
            position: absolute;
            inset: 0;
            z-index: 0
        }

        /* Scanline overlay */
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(var(--fg-rgb), .03) 2px, rgba(var(--fg-rgb), .03) 4px);
        }

        .hero-inner {
            position: relative;
            z-index: 10;
            text-align: center;
            /* Only top padding needed to push content just below the fixed nav */
            padding: 20px 20px 20px;
            width: 100%;
        }

        /* LIVE BADGE */
        .hero-live {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 230, 0, .1);
            border: 1px solid rgba(255, 230, 0, .3);
            border-radius: 2px;
            padding: 7px 18px;
            margin-bottom: 24px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 4px;
            color: var(--yellow);
            animation: fadeUp .5s ease both
        }

        .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--red);
            box-shadow: 0 0 8px var(--red);
            animation: livePulse 1s infinite
        }

        @keyframes livePulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .4;
                transform: scale(.7)
            }
        }

        /* GIANT TITLE */
        .hero-h {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            line-height: .88;
            letter-spacing: 4px;
            animation: fadeUp .6s .1s ease both
        }

        .hh1 {
            display: block;
            font-size: clamp(20px, 4vw, 20px);
            color: var(--fg-subtle);
            letter-spacing: 4px;
            font-weight: 700;
            margin-bottom: 32px;
        }

        .hh2 {
            display: block;
            font-size: clamp(90px, 18vw, 220px);
            /* Orange-gold → pink → vivid violet — matches the logo energy */
            background: linear-gradient(160deg, #FF6A00 0%, #FF2D78 50%, #8B2FFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 80px rgba(139, 47, 255, .5));
            margin: 8px 0;
        }

        .hh3 {
            display: block;
            font-size: clamp(50px, 8vw, 110px);
            color: var(--fg);
            text-shadow: 0 0 60px rgba(173, 255, 47, .4);
            letter-spacing: 6px;
            margin-top: 12px;
        }

        /* TAG ROW */
        .hero-tags {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 20px 0;
            animation: fadeUp .6s .25s ease both
        }

        .htag {
            padding: 6px 14px;
            border-radius: 24px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: 1px solid rgba(var(--fg-rgb), 0.08);
            background: rgba(var(--fg-rgb), 0.03);
            color: var(--fg-muted);
            cursor: default;
        }

        .ht-green {
            color: var(--lime);
            border-color: rgba(173, 255, 47, .15);
        }

        .ht-yellow {
            color: var(--yellow);
            border-color: rgba(255, 230, 0, .15);
        }

        .ht-pink {
            color: var(--pink);
            border-color: rgba(255, 45, 120, .15);
        }

        .ht-cyan {
            color: var(--cyan);
            border-color: rgba(0, 229, 255, .15);
        }

        /* SCORECARD */
        .hero-scoreboard {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 16px 0;
            animation: fadeUp .6s .35s ease both;
            border: 1px solid var(--border-strong);
            border-radius: 4px;
            overflow: hidden;
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .hsb-cell {
            padding: 10px 16px;
            text-align: center;
            border-right: 1px solid var(--border);
            position: relative;
            min-width: 72px;
        }

        .hsb-cell:last-child {
            border-right: none
        }

        .hsb-num {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: clamp(22px, 5vw, 38px);
            line-height: 1;
            display: block
        }

        .hsb-lbl {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--fg-subtle);
            text-transform: uppercase
        }

        .hsb-cell:nth-child(1) .hsb-num {
            color: var(--yellow);
            text-shadow: 0 0 20px rgba(255, 230, 0, .5)
        }

        .hsb-cell:nth-child(2) .hsb-num {
            color: var(--lime);
            text-shadow: 0 0 20px rgba(173, 255, 47, .4)
        }

        .hsb-cell:nth-child(3) .hsb-num {
            color: var(--pink);
            text-shadow: 0 0 20px rgba(255, 45, 120, .4)
        }

        .hsb-cell:nth-child(4) .hsb-num {
            color: var(--cyan);
            text-shadow: 0 0 20px rgba(0, 229, 255, .4)
        }

        /* CTAS */
        .hero-ctas {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 32px;
            animation: fadeUp .6s .45s ease both
        }

        @keyframes btnGlow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(255, 160, 0, .4), 0 8px 30px rgba(255, 107, 53, .3);
            }

            50% {
                box-shadow: 0 0 40px rgba(255, 200, 0, .7), 0 12px 50px rgba(255, 107, 53, .6);
            }
        }

        @keyframes shimmerSlide {
            0% {
                transform: translateX(-120%) skewX(-20deg);
            }

            100% {
                transform: translateX(220%) skewX(-20deg);
            }
        }

        .btn-fire {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--yellow), var(--orange));
            color: #fff;
            padding: 22px 56px;
            border-radius: 6px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 15px;
            font-weight: 900;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: transform .2s, box-shadow .2s;
            animation: btnGlow 2.5s ease-in-out infinite;
        }

        /* Continuous shimmer sweep */
        .btn-fire::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 45%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
            animation: shimmerSlide 2.2s ease-in-out infinite;
        }

        .btn-fire:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 24px 60px rgba(255, 107, 53, .65);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(var(--fg-rgb), .05);
            color: var(--fg);
            padding: 15px 36px;
            border-radius: 3px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid var(--border-strong);
            transition: .2s
        }

        .btn-ghost:hover {
            background: rgba(var(--fg-rgb), .1);
            border-color: var(--fg-subtle);
            transform: translateY(-2px)
        }

        /* Scroll hint */
        .scroll-hint {
            position: absolute;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            opacity: .3;
            z-index: 10;
            animation: fadeUp 1s 1.2s ease both
        }

        .sh-arrow {
            width: 1px;
            height: 40px;
            background: linear-gradient(180deg, transparent, var(--lime));
            animation: arrowPulse 1.8s ease-in-out infinite
        }

        @keyframes arrowPulse {

            0%,
            100% {
                opacity: .3;
                transform: scaleY(.6)
            }

            50% {
                opacity: 1;
                transform: scaleY(1)
            }
        }

        .sh-txt {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            letter-spacing: 3px;
            color: var(--lime)
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* ═══ TICKER ═══ */
        .ticker {
            background: var(--yellow);
            overflow: hidden;
            padding: 11px 0;
            position: relative;
            z-index: 5;
            border-top: 2px solid var(--fg-faint);
            border-bottom: 2px solid var(--fg-faint)
        }

        .ticker-track {
            display: flex;
            white-space: nowrap;
            animation: tickRun 28s linear infinite
        }

        .ti {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 0 24px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #fff;
            text-transform: uppercase
        }

        .ti span {
            width: 4px;
            height: 4px;
            background: #fff;
            opacity: .35;
            border-radius: 50%;
            display: block
        }

        @keyframes tickRun {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        /* ═══ SHARED SECTION STYLES ═══ */
        .S {
            position: relative;
            overflow: hidden
        }

        .W {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px
        }

        .WW {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 28px
        }

        .eye {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 14px
        }

        .eye-bar {
            width: 28px;
            height: 2px
        }

        .BIG {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: .92
        }

        /* Reveal */
        .rv {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity .7s, transform .7s
        }

        .rv.on {
            opacity: 1;
            transform: none
        }

        .rl {
            opacity: 0;
            transform: translateX(-36px);
            transition: opacity .7s, transform .7s
        }

        .rl.on {
            opacity: 1;
            transform: none
        }

        .rr {
            opacity: 0;
            transform: translateX(36px);
            transition: opacity .7s, transform .7s
        }

        .rr.on {
            opacity: 1;
            transform: none
        }

        .rs {
            opacity: 0;
            transform: scale(.9);
            transition: opacity .6s, transform .6s
        }

        .rs.on {
            opacity: 1;
            transform: scale(1)
        }

        .d1 {
            transition-delay: .08s
        }

        .d2 {
            transition-delay: .16s
        }

        .d3 {
            transition-delay: .24s
        }

        .d4 {
            transition-delay: .32s
        }

        .d5 {
            transition-delay: .4s
        }

        .d6 {
            transition-delay: .5s
        }

        /* ═══ PITCH FUSION SECTION ═══ */
        .pitch-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 50%, var(--bg) 100%);
            position: relative
        }

        .pitch-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(173, 255, 47, .04) 0%, transparent 65%)
        }

        .vs-wrap {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 0;
            align-items: stretch;
            border: 1px solid var(--border-strong);
            border-radius: 8px;
            overflow: hidden;
            margin-top: 64px
        }

        .vs-head {
            padding: 20px 28px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 10px
        }

        .vs-mid {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 8px;
            background: rgba(var(--fg-rgb), .02);
            border-left: 1px solid var(--border);
            border-right: 1px solid var(--border);
            min-width: 50px
        }

        .vsr {
            display: flex;
            align-items: center;
            padding: 15px 28px;
            border-bottom: 1px solid var(--border);
            gap: 10px;
            transition: .2s;
            min-height: 85px
        }

        .vsr:last-child {
            border-bottom: none
        }

        .vsr:hover {
            background: rgba(var(--fg-rgb), .03)
        }

        .vsr-text {
            font-size: 15px;
            font-weight: 600;
            color: var(--fg-muted);
            line-height: 1.3
        }

        .vsr-badge {
            margin-left: auto;
            padding: 3px 10px;
            border-radius: 2px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 1px;
            white-space: nowrap
        }

        .b-lime {
            background: rgba(173, 255, 47, .12);
            color: var(--lime)
        }

        .b-yellow {
            background: rgba(255, 230, 0, .12);
            color: var(--yellow)
        }

        .b-pink {
            background: rgba(255, 45, 120, .12);
            color: var(--pink)
        }

        .b-cyan {
            background: rgba(0, 229, 255, .12);
            color: var(--cyan)
        }

        .b-purple {
            background: rgba(191, 95, 255, .12);
            color: var(--purple)
        }

        .vs-code .vsr {
            justify-content: flex-start
        }

        .vs-mid-arrow {
            font-size: 14px;
            color: var(--yellow);
            background: rgba(255, 230, 0, .08);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 3px 0;
            border: 1px solid rgba(255, 230, 0, .15)
        }

        /* ═══ ARENAS ═══ */
        .arenas-S {
            padding: 100px 0;
            background: var(--bg);
            position: relative;
            overflow: hidden
        }

        .arenas-S::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(173, 255, 47, .2), transparent)
        }

        /* Diagonal background */
        .arena-bg-diag {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(173, 255, 47, .02) 0%, transparent 40%, rgba(255, 45, 120, .02) 70%, transparent 100%)
        }

        .arenas-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            margin-top: 60px;
            border-radius: 8px;
            overflow: hidden
        }

        .ac {
            position: relative;
            overflow: hidden;
            padding: 48px 32px 36px;
            cursor: pointer;
            transition: transform .3s;
            border: 1px solid var(--border-strong);
            display: flex;
            flex-direction: column;
        }

        .ac:hover {
            transform: scale(1.02);
            z-index: 2
        }

        .ac-canvas {
            position: absolute;
            inset: 0;
            opacity: .35;
            transition: opacity .3s
        }

        .ac:hover .ac-canvas {
            opacity: .6
        }

        .ac-inner {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            flex: 1;
            height: 100%;
        }

        .ac-chip {
            display: inline-flex;
            padding: 5px 14px;
            border-radius: 2px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
            border: 1px solid
        }

        .ac-emoji {
            font-size: 64px;
            display: block;
            margin-bottom: 16px;
            filter: drop-shadow(0 0 30px currentColor);
            line-height: 1;
            transition: transform .3s
        }

        .ac:hover .ac-emoji {
            transform: scale(1.15) rotate(-5deg)
        }

        .ac-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 46px;
            letter-spacing: 2px;
            line-height: 1;
            margin-bottom: 6px
        }

        .ac-cricket {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--fg-subtle);
            text-transform: uppercase;
            margin-bottom: 16px
        }

        .ac-desc {
            font-size: 15px;
            color: var(--fg-muted);
            line-height: 1.65;
            margin-bottom: 24px;
            font-weight: 400
        }

        .ac-specs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap
        }

        .ac-spec {
            padding: 6px 12px;
            border-radius: 2px;
            font-family: 'JetBrains Mono';
            font-size: 11px;
            font-weight: 700;
            background: rgba(var(--fg-rgb), .07);
            border: 1px solid var(--border-strong);
            color: var(--fg-muted)
        }

        .ac-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-top: auto;
            padding: 12px 20px;
            border-radius: 6px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-decoration: none;
            transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
            gap: 8px;
        }

        .btn-blitz {
            background: rgba(0, 229, 255, 0.08);
            color: #00E5FF;
            border: 1px solid rgba(0, 229, 255, 0.25);
        }

        .btn-blitz:hover {
            background: rgba(0, 229, 255, 0.15);
            color: #fff;
            transform: translateY(-2px);
            border-color: rgba(0, 229, 255, 0.6);
            box-shadow: 0 8px 24px rgba(0, 229, 255, 0.2);
        }

        .btn-power {
            background: rgba(255, 230, 0, 0.08);
            color: #FFE600;
            border: 1px solid rgba(255, 230, 0, 0.25);
        }

        .btn-power:hover {
            background: rgba(255, 230, 0, 0.15);
            color: #fff;
            transform: translateY(-2px);
            border-color: rgba(255, 230, 0, 0.6);
            box-shadow: 0 8px 24px rgba(255, 230, 0, 0.2);
        }

        .btn-endurance {
            background: rgba(255, 45, 120, 0.08);
            color: #FF2D78;
            border: 1px solid rgba(255, 45, 120, 0.25);
        }

        .btn-endurance:hover {
            background: rgba(255, 45, 120, 0.15);
            color: #fff;
            transform: translateY(-2px);
            border-color: rgba(255, 45, 120, 0.6);
            box-shadow: 0 8px 24px rgba(255, 45, 120, 0.2);
        }

        /* Light Mode Specific Adjustments for Contrast */
        body.light-mode .btn-blitz {
            background: #ffedd5;
            color: #c2410c;
            border-color: #fdba74;
        }

        body.light-mode .btn-blitz:hover {
            background: #ea580c;
            color: #fff;
            border-color: #c2410c;
            box-shadow: 0 4px 16px rgba(194, 65, 12, 0.3);
        }

        body.light-mode .btn-power {
            background: #dcfce7;
            color: #16a34a;
            border-color: #86efac;
        }

        body.light-mode .btn-power:hover {
            background: #16a34a;
            color: #fff;
            border-color: #15803d;
            box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
        }

        body.light-mode .btn-endurance {
            background: #ffe4e6;
            color: #e11d48;
            border-color: #fda4af;
        }

        body.light-mode .btn-endurance:hover {
            background: #e11d48;
            color: #fff;
            border-color: #be123c;
            box-shadow: 0 4px 16px rgba(225, 29, 72, 0.3);
        }

        /* Blitz */
        .ac-blitz {
            background: var(--arena-blitz-bg)
        }

        .ac-blitz .ac-chip {
            background: rgba(255, 230, 0, .12);
            border-color: rgba(255, 230, 0, .3);
            color: var(--yellow)
        }

        .ac-blitz .ac-name {
            color: var(--yellow)
        }

        /* Powerplay - featured */
        .ac-power {
            background: var(--arena-power-bg);
            border: 1px solid rgba(173, 255, 47, .2) !important
        }

        .ac-power .ac-chip {
            background: rgba(173, 255, 47, .1);
            border-color: rgba(173, 255, 47, .3);
            color: var(--lime)
        }

        .ac-power .ac-name {
            color: var(--lime)
        }

        .ac-power-crown {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: var(--lime);
            color: #000;
            padding: 4px 20px;
            border-radius: 0 0 6px 6px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 900;
            letter-spacing: 3px;
            text-transform: uppercase;
            z-index: 3;
            white-space: nowrap
        }

        /* Endurance */
        .ac-end {
            background: var(--arena-end-bg)
        }

        .ac-end .ac-chip {
            background: rgba(255, 45, 120, .1);
            border-color: rgba(255, 45, 120, .3);
            color: var(--pink)
        }

        .ac-end .ac-name {
            color: var(--pink)
        }

        /* Light mode arena text override */
        body.light-mode .ac-desc {
            color: rgba(15, 31, 15, 0.7);
        }

        body.light-mode .ac-cricket {
            color: rgba(15, 31, 15, 0.5);
        }

        body.light-mode .ac-spec {
            color: rgba(15, 31, 15, 0.6);
        }

        /* ═══ GAME DEMO — CPL MATCH EXPERIENCE ═══ */
        .game-S {
            padding: 80px 0 100px;
            background: var(--bg);
            position: relative;
            overflow: hidden
        }

        .game-S::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 20% 60%, rgba(191, 95, 255, .07) 0%, transparent 55%),
                radial-gradient(ellipse 40% 40% at 85% 20%, rgba(173, 255, 47, .05) 0%, transparent 50%),
                radial-gradient(ellipse 50% 60% at 50% 100%, rgba(255, 230, 0, .03) 0%, transparent 50%)
        }

        /* Section header */
        .game-header {
            text-align: center;
            margin-bottom: 52px
        }

        .game-header .glabel {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 4px;
            color: var(--purple);
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px
        }

        .game-header .glabel::before,
        .game-header .glabel::after {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--purple)
        }

        .game-header h2 {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: clamp(36px, 5vw, 64px);
            line-height: .95;
            margin-bottom: 14px
        }

        .game-header p {
            font-size: 17px;
            color: var(--fg-muted);
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.65
        }

        /* Powerplay banner */
        .powerplay-banner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(90deg, rgba(255, 230, 0, .08), rgba(255, 230, 0, .14), rgba(255, 230, 0, .08));
            border: 1px solid rgba(255, 230, 0, .25);
            border-radius: 6px;
            padding: 10px 20px;
            margin-bottom: 28px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--yellow);
            text-transform: uppercase;
            animation: ppPulse 3s ease-in-out infinite
        }

        @keyframes ppPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 230, 0, 0)
            }

            50% {
                box-shadow: 0 0 20px rgba(255, 230, 0, .12)
            }
        }

        .pp-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--yellow);
            box-shadow: 0 0 8px var(--yellow);
            animation: livePulse 1.2s infinite
        }

        .pp-mult {
            background: var(--yellow);
            color: #000;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 1px
        }

        /* 3-column match layout */
        .match-layout {
            display: grid;
            grid-template-columns: 220px 1fr 220px;
            gap: 24px;
            align-items: start;
            min-width: 0;
        }

        .match-layout>* {
            min-width: 0
        }

        /* LEFT PANEL — Match context */
        .match-ctx {
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .ctx-card {
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 16px;
            position: relative;
            overflow: hidden
        }

        .ctx-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--fg-faint);
            text-transform: uppercase;
            margin-bottom: 8px
        }

        .ctx-val {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 26px;
            line-height: 1;
            letter-spacing: 1px
        }

        .ctx-sub {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            color: var(--fg-subtle);
            margin-top: 4px;
            letter-spacing: 1px
        }

        .ctx-run-rate {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-family: 'JetBrains Mono';
            font-size: 11px;
            font-weight: 700;
            margin-top: 6px
        }

        .crr-label {
            color: var(--fg-faint);
            letter-spacing: 1px
        }

        .crr-val {
            color: var(--lime)
        }

        /* Live commentary feed */
        .commentary-feed {
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 14px 16px;
            overflow: hidden
        }

        .cf-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--lime);
            text-transform: uppercase;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px
        }

        .cf-label::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--red);
            box-shadow: 0 0 6px var(--red);
            animation: livePulse 1s infinite
        }

        .cf-lines {
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .cf-line {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 12px;
            color: var(--fg-muted);
            line-height: 1.5;
            padding-left: 10px;
            border-left: 2px solid var(--border-strong);
            transition: opacity .3s
        }

        .cf-line.new {
            border-left-color: var(--lime);
            color: var(--fg)
        }

        .cf-line.fading {
            opacity: .4
        }

        /* RIGHT PANEL — Over summary */
        .over-panel {
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .over-summary-card {
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 16px
        }

        .over-balls-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 6px;
            margin-top: 8px
        }

        .ov-ball {
            aspect-ratio: 1;
            border-radius: 50%;
            border: 1px solid var(--border-strong);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 12px;
            color: var(--fg-faint);
            transition: all .35s cubic-bezier(.34, 1.56, .64, 1)
        }

        .ov-ball.b-dot {
            border-color: var(--border-strong);
            background: rgba(255, 255, 255, .04);
            color: var(--fg-faint)
        }

        .ov-ball.b-hit {
            border-color: var(--lime);
            background: rgba(173, 255, 47, .15);
            color: var(--lime)
        }

        .ov-ball.b-four {
            border-color: var(--cyan);
            background: rgba(0, 212, 255, .15);
            color: var(--cyan)
        }

        .ov-ball.b-six {
            border-color: var(--yellow);
            background: rgba(255, 230, 0, .15);
            color: var(--yellow);
            box-shadow: 0 0 10px rgba(255, 230, 0, .3);
            transform: scale(1.1)
        }

        .ov-ball.b-out {
            border-color: var(--pink);
            background: rgba(255, 45, 120, .15);
            color: var(--pink)
        }

        .ov-ball.b-current {
            border-color: var(--cyan);
            background: rgba(0, 229, 255, .08);
            animation: currentBall .8s ease-in-out infinite
        }

        /* Mini leaderboard */
        .mini-board {
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 14px 16px
        }

        .mb-row {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 0;
            border-bottom: 1px solid var(--border);
            font-size: 12px
        }

        .mb-row:last-child {
            border-bottom: none
        }

        .mb-rank {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 13px;
            color: var(--fg-faint);
            min-width: 18px
        }

        .mb-rank.top {
            color: var(--yellow)
        }

        .mb-name {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 11px;
            color: var(--fg-muted);
            flex: 1;
            letter-spacing: .5px
        }

        .mb-score {
            font-family: 'JetBrains Mono';
            font-size: 11px;
            font-weight: 700;
            color: var(--lime)
        }

        .mb-you {
            background: rgba(173, 255, 47, .1);
            border-color: rgba(173, 255, 47, .2)
        }

        .mb-you .mb-name {
            color: var(--lime)
        }

        /* CENTER — THE GAME CARD */
        .gcard {
            background: var(--gcard-bg);
            border: 1px solid var(--border-strong);
            border-radius: 16px;
            overflow: hidden;
            box-shadow:
                0 40px 100px rgba(0, 0, 0, .5),
                0 0 0 1px rgba(173, 255, 47, .06),
                inset 0 1px 0 rgba(255, 255, 255, .06);
            position: relative;
            -webkit-user-select: none;
            user-select: none;
            touch-action: pan-y;
            display: flex;
            flex-direction: column;
            max-height: calc(100svh - 60px);
        }

        /* Match HUD */
        .gc-hud {
            background: var(--hud-bg);
            padding: 12px 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            gap: 12px
        }

        .gc-team {
            display: flex;
            align-items: center;
            gap: 8px
        }

        .gc-teamname {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, .45);
            text-transform: uppercase
        }

        .gc-score-big {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 28px;
            line-height: 1;
            display: flex;
            gap: 3px;
            align-items: center
        }

        .gc-runs {
            color: var(--yellow);
            display: inline-block
        }

        .gc-sep {
            color: rgba(255, 255, 255, .2);
            font-size: 18px
        }

        .gc-wkts {
            color: var(--pink);
            display: inline-block
        }

        .gc-runs.pop {
            animation: scorePop .4s cubic-bezier(.34, 1.56, .64, 1) both
        }

        .gc-wkts.pop {
            animation: scorePop .4s cubic-bezier(.34, 1.56, .64, 1) both
        }

        @keyframes scorePop {
            0% {
                transform: scale(1)
            }

            45% {
                transform: scale(1.45)
            }

            100% {
                transform: scale(1)
            }
        }

        .gc-hud-mid {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px
        }

        .gc-over-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, .3);
            text-transform: uppercase
        }

        .gc-balls-row {
            display: flex;
            gap: 4px
        }

        .gc-ball-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 1.5px solid var(--border-strong);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 9px;
            color: transparent;
            transition: all .3s
        }

        /* run outcomes */
        .gc-ball-dot.r0 {
            border-color: var(--border-strong);
            background: rgba(255, 255, 255, .04);
            color: var(--fg-faint)
        }

        .gc-ball-dot.r1 {
            border-color: var(--lime);
            background: rgba(173, 255, 47, .15);
            color: var(--lime)
        }

        .gc-ball-dot.r2 {
            border-color: var(--lime);
            background: rgba(173, 255, 47, .25);
            color: var(--lime)
        }

        .gc-ball-dot.r4 {
            border-color: var(--cyan);
            background: rgba(0, 212, 255, .18);
            color: var(--cyan)
        }

        .gc-ball-dot.r6 {
            border-color: var(--yellow);
            background: rgba(255, 230, 0, .25);
            color: var(--yellow);
            box-shadow: 0 0 8px rgba(255, 230, 0, .5);
            transform: scale(1.15)
        }

        .gc-ball-dot.rW {
            border-color: var(--pink);
            background: rgba(255, 45, 120, .2);
            color: var(--pink)
        }

        .gc-ball-dot.current {
            border-color: var(--cyan);
            background: rgba(0, 229, 255, .1);
            animation: currentBall .8s ease-in-out infinite
        }

        @keyframes currentBall {

            0%,
            100% {
                box-shadow: 0 0 6px rgba(0, 229, 255, .4)
            }

            50% {
                box-shadow: 0 0 16px rgba(0, 229, 255, .9)
            }
        }

        .gc-timer {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 13px;
            font-weight: 700;
            padding: 6px 12px;
            border-radius: 4px;
            border: 1px solid;
            display: flex;
            align-items: center;
            gap: 6px;
            min-width: 70px;
            justify-content: center
        }

        .gc-timer.safe {
            border-color: rgba(0, 229, 255, .3);
            background: rgba(0, 229, 255, .06);
            color: var(--cyan)
        }

        .gc-timer.warn {
            border-color: rgba(255, 107, 53, .5);
            background: rgba(255, 107, 53, .1);
            color: var(--orange)
        }

        .gc-timer.danger {
            border-color: rgba(255, 45, 120, .6);
            background: rgba(255, 45, 120, .12);
            color: var(--pink);
            animation: dangerPulse .4s ease-in-out infinite
        }

        @keyframes dangerPulse {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .55
            }
        }

        .gc-tdot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            animation: livePulse 1s infinite
        }

        /* Challenge body */
        .gc-body {
            padding: 24px 24px 20px;
            flex: 1;
            min-height: 0;
            min-width: 0;
            overflow-y: auto;
            overflow-x: hidden
        }

        .gc-delivery-line {
            font-family: 'JetBrains Mono';
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--lime);
            text-transform: uppercase;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: .85;
            min-height: 18px
        }

        .gc-delivery-line::before {
            content: '>';
            color: var(--lime)
        }

        .gc-delivery-line.entering {
            animation: deliverySlideIn .45s cubic-bezier(.22, 1, .36, 1) both
        }

        @keyframes deliverySlideIn {
            from {
                opacity: 0;
                transform: translateX(-14px)
            }

            to {
                opacity: .85;
                transform: translateX(0)
            }
        }

        .gc-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 32px;
            color: var(--yellow);
            letter-spacing: .5px;
            line-height: 1.1;
            margin-bottom: 10px;
            text-align: center;
            padding: 8px 0 4px;
            overflow-wrap: break-word;
            word-break: break-word;
            text-shadow: 0 0 32px rgba(255, 200, 0, .25)
        }

        .gc-title.entering {
            animation: riseIn .4s cubic-bezier(.22, 1, .36, 1) both;
            animation-delay: .07s
        }

        .gc-subtitle {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .3px;
            color: var(--fg-muted);
            line-height: 1.55;
            margin-bottom: 20px;
            text-align: center;
            overflow-wrap: break-word;
            word-break: break-word
        }

        .gc-subtitle.entering {
            animation: riseIn .4s cubic-bezier(.22, 1, .36, 1) both;
            animation-delay: .13s
        }

        @keyframes riseIn {
            from {
                opacity: 0;
                transform: translateY(14px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* Terminal */
        .gc-term {
            background: var(--code-bg);
            border: 1px solid var(--term-border);
            border-radius: 8px;
            margin-bottom: 20px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            transition: border-color .3s, background .3s
        }

        .gc-term.entering {
            animation: riseIn .42s cubic-bezier(.22, 1, .36, 1) both;
            animation-delay: .19s
        }

        .gc-termbar {
            background: var(--termbar-bg);
            padding: 7px 14px;
            display: flex;
            gap: 6px;
            align-items: center;
            border-bottom: 1px solid var(--termbar-border);
            border-radius: 8px 8px 0 0;
            overflow: hidden;
        }

        .tb-d {
            width: 10px;
            height: 10px;
            border-radius: 50%
        }

        .tb-path {
            font-family: 'JetBrains Mono';
            font-size: 10px;
            color: var(--termpath-color);
            margin-left: 8px
        }

        .gc-code {
            padding: 14px 16px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12.5px;
            line-height: 1.75;
            min-height: 72px;
            max-height: 220px;
            width: 100%;
            box-sizing: border-box;
            overflow-y: auto;
            overflow-x: auto;
            border-radius: 0 0 7px 7px;
            transition: opacity .25s;
        }

        .gc-code code {
            display: block;
            white-space: pre;
            min-width: max-content;
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            background: transparent !important;
            padding: 0 !important;
            color: var(--code-fg);
        }

        /* Light-mode hljs syntax overrides — replaces Dracula (dark-only) with GitHub Light palette */
        body.light-mode .hljs {
            color: #24292F;
            background: transparent !important
        }

        body.light-mode .hljs-keyword,
        body.light-mode .hljs-operator {
            color: #CF222E
        }

        body.light-mode .hljs-string,
        body.light-mode .hljs-doctag {
            color: #0A3069
        }

        body.light-mode .hljs-comment {
            color: #6E7781;
            font-style: italic
        }

        body.light-mode .hljs-function,
        body.light-mode .hljs-title {
            color: #8250DF
        }

        body.light-mode .hljs-number,
        body.light-mode .hljs-literal {
            color: #0550AE
        }

        body.light-mode .hljs-variable,
        body.light-mode .hljs-params {
            color: #24292F
        }

        body.light-mode .hljs-built_in,
        body.light-mode .hljs-class {
            color: #953800
        }

        body.light-mode .hljs-attr,
        body.light-mode .hljs-type {
            color: #116329
        }

        body.light-mode .hljs-meta {
            color: #6E7781
        }

        /* Swipe hint */
        .swipe-hint {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--fg-subtle);
            text-transform: uppercase;
            margin-bottom: 14px;
            padding: 6px 0
        }

        .swipe-hint.entering {
            animation: riseIn .4s cubic-bezier(.22, 1, .36, 1) both;
            animation-delay: .24s
        }

        .sh-arrow {
            font-size: 14px;
            animation: arrowBounce 1.5s ease-in-out infinite
        }

        .sh-arrow.left {
            animation-delay: -.3s
        }

        @keyframes arrowBounce {

            0%,
            100% {
                transform: translateX(0);
                opacity: .3
            }

            50% {
                transform: translateX(4px);
                opacity: .8
            }
        }

        .sh-arrow.left {
            animation-name: arrowBounceL
        }

        @keyframes arrowBounceL {

            0%,
            100% {
                transform: translateX(0);
                opacity: .3
            }

            50% {
                transform: translateX(-4px);
                opacity: .8
            }
        }

        /* Answer buttons */
        .gc-choices {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 18px
        }

        .gc-choices.entering {
            animation: riseIn .4s cubic-bezier(.22, 1, .36, 1) both;
            animation-delay: .3s
        }

        .gc-choice {
            padding: 22px 12px;
            border-radius: 10px;
            border: 1px solid;
            cursor: pointer;
            transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
            text-align: center;
            -webkit-user-select: none;
            user-select: none;
            position: relative;
            overflow: hidden
        }

        .gc-choice::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, .05) 0%, transparent 100%);
            pointer-events: none
        }

        .gc-choice:hover {
            transform: translateY(-3px)
        }

        .gc-choice:active {
            transform: scale(.96)
        }

        .gcc-bug {
            background: rgba(255, 45, 120, .07);
            border-color: rgba(255, 45, 120, .3);
            animation: bugGlow 2.8s ease-in-out infinite
        }

        @keyframes bugGlow {

            0%,
            100% {
                box-shadow: 0 0 0 rgba(255, 45, 120, 0);
                border-color: rgba(255, 45, 120, .3)
            }

            50% {
                box-shadow: 0 0 18px rgba(255, 45, 120, .22);
                border-color: rgba(255, 45, 120, .55)
            }
        }

        .gcc-bug:hover {
            animation: none;
            background: rgba(255, 45, 120, .16);
            border-color: rgba(255, 45, 120, .7);
            box-shadow: 0 8px 30px rgba(255, 45, 120, .25)
        }

        .gcc-safe {
            background: rgba(173, 255, 47, .06);
            border-color: rgba(173, 255, 47, .25);
            animation: safeGlow 2.8s ease-in-out infinite;
            animation-delay: .9s
        }

        @keyframes safeGlow {

            0%,
            100% {
                box-shadow: 0 0 0 rgba(173, 255, 47, 0);
                border-color: rgba(173, 255, 47, .25)
            }

            50% {
                box-shadow: 0 0 18px rgba(173, 255, 47, .18);
                border-color: rgba(173, 255, 47, .5)
            }
        }

        .gcc-safe:hover {
            animation: none;
            background: rgba(173, 255, 47, .14);
            border-color: rgba(173, 255, 47, .65);
            box-shadow: 0 8px 30px rgba(173, 255, 47, .18)
        }

        .gcc-dir {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 8px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, .35);
            text-transform: uppercase;
            margin-bottom: 5px
        }

        .gcc-label {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 22px;
            letter-spacing: 2px
        }

        /* XP / CP bar */
        .gc-xpbar {
            margin-top: 6px
        }

        .gc-xp-label {
            display: flex;
            justify-content: space-between;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--fg-subtle);
            text-transform: uppercase;
            margin-bottom: 5px
        }

        .gc-xp-label span:last-child {
            color: var(--yellow)
        }

        .gc-xp-track {
            height: 5px;
            background: rgba(255, 255, 255, .07);
            border-radius: 10px;
            overflow: hidden
        }

        .gc-xp-fill {
            height: 100%;
            border-radius: 10px;
            background: linear-gradient(90deg, var(--lime), var(--yellow));
            width: 60%;
            box-shadow: 0 0 8px rgba(173, 255, 47, .4);
            transition: width .5s ease
        }

        /* FEEDBACK OVERLAY — answer result flash */
        .gc-feedback {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 16px;
            pointer-events: none;
            opacity: 0;
            z-index: 10;
        }

        .gc-feedback.show {
            pointer-events: auto;
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
            will-change: opacity;
            animation: fbOverlay 1.05s ease forwards;
        }

        @keyframes fbOverlay {
            0% {
                opacity: 0
            }

            14% {
                opacity: 1
            }

            72% {
                opacity: 1
            }

            100% {
                opacity: 0
            }
        }

        /* Soft radial wash — no hard border */
        .gc-feedback.correct {
            background: radial-gradient(ellipse at 50% 50%, rgba(173, 255, 47, .14) 0%, rgba(173, 255, 47, .04) 55%, transparent 75%)
        }

        .gc-feedback.wrong {
            background: radial-gradient(ellipse at 50% 50%, rgba(255, 45, 120, .16) 0%, rgba(255, 45, 120, .05) 55%, transparent 75%)
        }

        .gc-feedback.timeout {
            background: radial-gradient(ellipse at 50% 50%, rgba(255, 165, 0, .12) 0%, rgba(255, 165, 0, .03) 55%, transparent 75%)
        }

        /* Expanding ring — ::before first pulse, ::after second pulse for 4/6 */
        .gc-feedback.show::before {
            content: '';
            position: absolute;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            animation: fbRing .7s cubic-bezier(0, .5, .5, 1) forwards;
        }

        .gc-feedback.correct.show::before {
            border: 2px solid rgba(173, 255, 47, .65)
        }

        .gc-feedback.wrong.show::before {
            border: 2px solid rgba(255, 45, 120, .65)
        }

        .gc-feedback.timeout.show::before {
            border: 2px solid rgba(255, 165, 0, .55)
        }

        /* Second ring — only on big hits */
        .gc-feedback.r4.show::after,
        .gc-feedback.r6.show::after {
            content: '';
            position: absolute;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            border: 2px solid rgba(173, 255, 47, .4);
            animation: fbRing .7s .22s cubic-bezier(0, .5, .5, 1) forwards;
        }

        @keyframes fbRing {
            0% {
                transform: scale(.4);
                opacity: .8
            }

            100% {
                transform: scale(3.2);
                opacity: 0
            }
        }

        /* Big label */
        .gcf-big {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 58px;
            letter-spacing: 1px;
            line-height: 1;
        }

        .gc-feedback.show .gcf-big {
            animation: fbNumPop .44s cubic-bezier(.34, 1.56, .64, 1) both;
        }

        /* SIX — bigger + rotation twist */
        .gc-feedback.r6.show .gcf-big {
            font-size: 68px;
            animation: fbSixPop .5s cubic-bezier(.34, 1.7, .64, 1) both;
        }

        /* WICKET — slams in from above + shake */
        .gc-feedback.wrong.show .gcf-big {
            animation: fbWicket .52s cubic-bezier(.36, .07, .19, .97) both;
        }

        @keyframes fbNumPop {
            0% {
                transform: scale(.25) translateY(24px);
                opacity: 0
            }

            65% {
                transform: scale(1.12) translateY(-4px);
                opacity: 1
            }

            100% {
                transform: scale(1) translateY(0);
                opacity: 1
            }
        }

        @keyframes fbSixPop {
            0% {
                transform: scale(.2) rotate(-12deg);
                opacity: 0
            }

            60% {
                transform: scale(1.18) rotate(4deg);
                opacity: 1
            }

            80% {
                transform: scale(.97) rotate(-1deg)
            }

            100% {
                transform: scale(1) rotate(0);
                opacity: 1
            }
        }

        @keyframes fbWicket {
            0% {
                transform: scale(1.6) translateY(-20px);
                opacity: 0;
                filter: blur(6px)
            }

            35% {
                transform: scale(1.05) translateY(2px);
                opacity: 1;
                filter: blur(0)
            }

            50% {
                transform: translateX(-4px)
            }

            65% {
                transform: translateX(4px)
            }

            80% {
                transform: translateX(-2px)
            }

            100% {
                transform: translateX(0);
                opacity: 1
            }
        }

        /* Label colours */
        .gc-feedback.correct .gcf-big {
            color: var(--lime);
            text-shadow: 0 0 28px rgba(173, 255, 47, .55)
        }

        .gc-feedback.r6 .gcf-big {
            text-shadow: 0 0 40px rgba(173, 255, 47, .8), 0 0 80px rgba(173, 255, 47, .3)
        }

        .gc-feedback.wrong .gcf-big {
            color: var(--pink);
            text-shadow: 0 0 28px rgba(255, 45, 120, .55)
        }

        .gc-feedback.timeout .gcf-big {
            color: var(--orange)
        }

        /* Sub text — rises up with delay */
        .gcf-sub {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            opacity: 0;
        }

        .gc-feedback.show .gcf-sub {
            animation: fbSubRise .32s .18s ease both;
        }

        @keyframes fbSubRise {
            from {
                transform: translateY(8px);
                opacity: 0
            }

            to {
                transform: translateY(0);
                opacity: 1
            }
        }

        .gc-feedback.correct .gcf-sub {
            color: rgba(173, 255, 47, .75)
        }

        .gc-feedback.wrong .gcf-sub {
            color: rgba(255, 45, 120, .75)
        }

        .gc-feedback.timeout .gcf-sub {
            color: rgba(255, 165, 0, .75)
        }

        /* ═══ MATCH OVER — shareable scorecard ═══ */
        .gc-match-over {
            position: absolute;
            inset: 0;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            opacity: 0;
            pointer-events: none;
            transition: opacity .45s ease;
            background: var(--gmo-overlay-bg, radial-gradient(ellipse at 50% 30%, #1f0a2e 0%, #07020f 100%));
            z-index: 25;
            overflow: hidden;
        }

        .gc-match-over.show {
            opacity: 1;
            pointer-events: auto
        }

        /* Confetti layer */
        .gmo-confetti {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .gmo-cp {
            position: absolute;
            top: -8%;
            -webkit-user-select: none;
            user-select: none;
            animation: gmoFall linear forwards;
        }

        @keyframes gmoFall {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1
            }

            85% {
                opacity: 1
            }

            100% {
                transform: translateY(115%) rotate(720deg);
                opacity: 0
            }
        }

        /* Scroll container */
        .gmo-scroll {
            position: relative;
            z-index: 2;
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            padding: 0;
            gap: 0;
        }

        /* Shareable card — full bleed, glass panel */
        .gmo-card {
            width: 100%;
            background: rgba(255, 255, 255, .07);
            border-bottom: 1px solid rgba(255, 255, 255, .1);
            border-radius: 0;
            padding: 22px 20px 18px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        /* Brand */
        .gmo-brand {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .gmo-logo {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            object-fit: contain;
            flex-shrink: 0;
            box-shadow: 0 0 16px rgba(212, 175, 55, .3);
        }

        .gmo-logo-fallback {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 15px;
            color: #000;
            flex-shrink: 0;
            box-shadow: 0 0 16px rgba(212, 175, 55, .45);
        }

        .gmo-brand-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 20px;
            color: var(--gmo-brand-color, #fcd34d);
            line-height: 1.1;
        }

        .gmo-brand-sub {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--gmo-brand-sub-color, rgba(252, 211, 77, .6));
            text-transform: uppercase;
            white-space: nowrap;
            margin-top: 2px;
        }

        .gmo-divider {
            height: 1px;
            background: rgba(255, 255, 255, .1)
        }

        /* Player */
        .gmo-player {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 4px 0
        }

        .gmo-player-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 24px;
            color: var(--fg);
            letter-spacing: 1px;
            text-transform: uppercase;
            text-align: center;
        }

        .gmo-player-rank {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 3px;
            color: #f59e0b;
            text-transform: uppercase;
        }

        /* Score */
        .gmo-score-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px
        }

        .gmo-score-lbl {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--fg-faint);
            text-transform: uppercase;
        }

        .gmo-score-row {
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: 1
        }

        .gmo-runs {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 64px;
            color: #fbbf24;
            text-shadow: 0 0 32px rgba(251, 191, 36, .45);
        }

        .gmo-slash {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 36px;
            color: rgba(255, 255, 255, .2);
        }

        .gmo-wkts {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 64px;
            color: #f43f5e;
            text-shadow: 0 0 32px rgba(244, 63, 94, .4);
        }

        /* Over tracker */
        .gmo-tracker {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px
        }

        .gmo-tracker-lbl {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--fg-faint);
            text-transform: uppercase;
        }

        .gmo-tracker-overs {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            width: 100%
        }

        .gmo-over-row {
            display: flex;
            align-items: center;
            gap: 6px;
            justify-content: center
        }

        .gmo-over-lbl {
            font-family: 'JetBrains Mono', monospace;
            font-size: 9px;
            color: var(--fg-faint);
            width: 22px;
            text-align: right;
            flex-shrink: 0;
        }

        .gmo-bdot {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 900;
            font-size: 11px;
        }

        .gmo-bdot.bd-six {
            background: #f59e0b;
            color: #000
        }

        .gmo-bdot.bd-four {
            background: #10b981;
            color: #fff
        }

        .gmo-bdot.bd-out {
            background: #e11d48;
            color: #fff
        }

        .gmo-bdot.bd-hit {
            background: var(--gmo-hit-bg, #334155);
            color: #fff
        }

        .gmo-bdot.bd-dot {
            background: rgba(255, 255, 255, .07);
            color: rgba(255, 255, 255, .35);
            border: 1px solid rgba(255, 255, 255, .12)
        }

        /* Stats */
        .gmo-stats {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            background: rgba(0, 0, 0, .25);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 12px;
            padding: 13px 14px;
        }

        .gmo-stat {
            display: flex;
            flex-direction: column;
            gap: 4px;
            overflow: hidden
        }

        .gmo-stat--mid {
            align-items: center
        }

        .gmo-stat--right {
            align-items: flex-end
        }

        .gmo-stat-lbl {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 7.5px;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: var(--fg-faint);
            text-transform: uppercase;
            white-space: nowrap;
        }

        .gmo-stat-lbl--cp {
            color: var(--lime)
        }

        .gmo-stat-val {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 20px;
            color: #fff;
            white-space: nowrap;
        }

        .gmo-stat-val--cp {
            color: #4ade80
        }

        .gmo-stat-val--sr {
            color: #22d3ee
        }

        /* Bottom section — ego + actions (result title is inside gmo-card) */
        .gmo-bottom {
            padding: 16px 20px 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        /* Result title — lives inside gmo-card as the closing statement */
        .gmo-result-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 40px;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-align: center;
            background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 50%, #d97706 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            padding-top: 4px;
            border-top: 1px solid rgba(255, 255, 255, .1);
            margin-top: 2px;
            animation: feedbackPop .6s cubic-bezier(.34, 1.56, .64, 1) both;
        }

        .gmo-result-title.gmo-rt--out {
            background: linear-gradient(135deg, #fca5a5, #f43f5e, #be123c);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .gmo-result-title.gmo-rt--perfect {
            background: linear-gradient(135deg, #d9f99d, #4ade80, #22d3ee);
            -webkit-background-clip: text;
            background-clip: text;
        }

        /* Ego quote */
        .gmo-ego {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: rgba(251, 191, 36, .75);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-style: italic;
            text-align: center;
            padding: 0 8px;
        }

        /* Actions */
        .gmo-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%
        }

        .gmo-btn {
            width: 100%;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 15px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: transform .12s, opacity .12s;
        }

        .gmo-btn:active {
            transform: scale(.97)
        }

        .gmo-btn--share {
            background: linear-gradient(135deg, #2563eb, #4f46e5);
            color: #fff;
            box-shadow: 0 0 24px rgba(79, 70, 229, .4);
            border-bottom: 3px solid #1d4ed8;
        }

        .gmo-btn--share:disabled {
            opacity: .5;
            cursor: not-allowed
        }

        .gmo-btn--play {
            background: rgba(255, 255, 255, .08);
            color: #fbbf24;
            border: 1px solid rgba(251, 191, 36, .3);
        }

        .gmo-btn--change {
            background: transparent;
            color: rgba(255, 255, 255, .38);
            font-size: 10px;
            padding: 6px;
            border: none;
        }

        /* Always-visible match controls */
        .gc-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px;
            background: rgba(255, 255, 255, .025);
            border-bottom: 1px solid var(--border);
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s;
        }

        .gc-controls.active {
            opacity: 1;
            pointer-events: auto
        }

        .gc-ctrl-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 2.5px;
            color: var(--lime);
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .gc-ctrl-label::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--lime);
            box-shadow: 0 0 5px var(--lime);
            animation: livePulse 1.2s ease-in-out infinite;
        }

        .gc-ctrl-btns {
            display: flex;
            gap: 6px
        }

        .gc-ctrl-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 4px 10px;
            border-radius: 6px;
            border: 1px solid var(--border-strong);
            background: transparent;
            color: var(--fg-subtle);
            cursor: pointer;
            transition: background .18s, color .18s, border-color .18s;
        }

        .gc-ctrl-btn:hover {
            color: var(--fg);
            border-color: rgba(255, 255, 255, .25);
            background: rgba(255, 255, 255, .06)
        }

        .gc-ctrl-btn--restart:hover {
            color: var(--lime);
            border-color: rgba(173, 255, 47, .35);
            background: rgba(173, 255, 47, .06)
        }

        .gc-ctrl-btn--change:hover {
            color: var(--cyan);
            border-color: rgba(0, 212, 255, .35);
            background: rgba(0, 212, 255, .06)
        }

        /* Mobile live commentary bar — hidden on desktop, shown ≤1100px */
        .gc-mobile-commentary {
            display: none;
            flex-direction: column;
            gap: 3px;
            padding: 12px;
            background: rgba(255, 255, 255, .025);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .gmc-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 7.5px;
            font-weight: 700;
            letter-spacing: 2.5px;
            color: var(--fg-faint);
            text-transform: uppercase;
        }

        .gmc-row {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .gmc-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--lime);
            flex-shrink: 0;
            animation: gmcPulse 1.5s ease-in-out infinite;
        }

        .gmc-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            color: var(--fg-subtle);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .gmc-text.flash {
            animation: gmcFlash .38s cubic-bezier(.22, 1, .36, 1) both
        }

        @keyframes gmcFlash {
            from {
                opacity: 0;
                transform: translateY(5px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes gmcPulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .35;
                transform: scale(.75)
            }
        }

        @media(max-width:1100px) {
            .gc-mobile-commentary {
                display: flex
            }
        }

        /* Over complete overlay */
        .gc-over-complete {
            position: absolute;
            inset: 0;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity .35s;
            z-index: 11;
            overflow: hidden;
            background: rgba(6, 13, 6, .94);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px)
        }

        .gc-over-complete.show {
            opacity: 1;
            pointer-events: auto
        }

        /* Tier backgrounds */
        .gc-over-complete.goc-tier--fire {
            background: radial-gradient(ellipse at 50% 0%, rgba(251, 100, 0, .35) 0%, rgba(6, 13, 6, .96) 70%)
        }

        .gc-over-complete.goc-tier--solid {
            background: radial-gradient(ellipse at 50% 0%, rgba(100, 220, 60, .2) 0%, rgba(6, 13, 6, .96) 70%)
        }

        .gc-over-complete.goc-tier--danger {
            background: radial-gradient(ellipse at 50% 0%, rgba(255, 45, 120, .25) 0%, rgba(6, 13, 6, .96) 70%)
        }

        /* Light mode tier backgrounds */
        body.light-mode .gc-over-complete {
            background: rgba(255, 255, 255, .96)
        }

        body.light-mode .gc-over-complete.goc-tier--fire {
            background: radial-gradient(ellipse at 50% 0%, rgba(251, 100, 0, .15) 0%, rgba(245, 240, 230, .98) 70%)
        }

        body.light-mode .gc-over-complete.goc-tier--solid {
            background: radial-gradient(ellipse at 50% 0%, rgba(34, 197, 94, .12) 0%, rgba(240, 248, 240, .98) 70%)
        }

        body.light-mode .gc-over-complete.goc-tier--danger {
            background: radial-gradient(ellipse at 50% 0%, rgba(255, 45, 120, .12) 0%, rgba(255, 245, 248, .98) 70%)
        }

        .goc-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 24px 20px;
            width: 100%
        }

        .goc-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 4px;
            color: var(--fg-muted);
            animation: fadeInDown .4s ease both
        }

        .goc-perfect .goc-title {
            color: var(--lime)
        }

        /* Big run number */
        .goc-run-display {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            animation: feedbackPop .5s cubic-bezier(.34, 1.56, .64, 1) both;
            animation-delay: .05s
        }

        .goc-run-num {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 72px;
            line-height: 1;
            color: var(--yellow)
        }

        .goc-tier--fire .goc-run-num {
            color: #fb6400
        }

        .goc-tier--solid .goc-run-num {
            color: var(--lime)
        }

        .goc-tier--danger .goc-run-num {
            color: var(--pink)
        }

        body.light-mode .goc-tier--fire .goc-run-num {
            color: #c2410c
        }

        body.light-mode .goc-run-num {
            color: #92400e
        }

        .goc-run-lbl {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--fg-faint);
            text-transform: uppercase
        }

        /* Fun message */
        .goc-fun-msg {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: var(--fg-muted);
            text-align: center;
            min-height: 22px;
            animation: fadeInDown .4s ease both;
            animation-delay: .1s
        }

        .goc-over-dots {
            display: flex;
            gap: 6px;
            margin: 4px 0;
            flex-wrap: wrap;
            justify-content: center
        }

        .goc-dot {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid var(--border-strong);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 13px;
            opacity: 0;
            transform: scale(.4);
            animation: dotPop .35s cubic-bezier(.34, 1.56, .64, 1) forwards
        }

        @keyframes dotPop {
            to {
                opacity: 1;
                transform: scale(1)
            }
        }

        .goc-dot.d-hit {
            border-color: var(--lime);
            background: rgba(173, 255, 47, .15);
            color: var(--lime)
        }

        .goc-dot.d-six {
            border-color: var(--yellow);
            background: rgba(255, 230, 0, .18);
            color: var(--yellow);
            box-shadow: 0 0 14px rgba(255, 200, 0, .5)
        }

        .goc-dot.d-out {
            border-color: var(--pink);
            background: rgba(255, 45, 120, .15);
            color: var(--pink)
        }

        .goc-dot.d-zero {
            border-color: var(--border-strong);
            background: transparent;
            color: var(--fg-faint)
        }

        .goc-score {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: var(--fg-faint);
            letter-spacing: 2px;
            text-transform: uppercase
        }

        .goc-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 6px
        }

        .goc-next {
            background: var(--yellow);
            color: #000;
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 2px;
            cursor: pointer;
            transition: .2s
        }

        .goc-next:hover {
            background: var(--lime);
            transform: translateY(-2px)
        }

        .goc-tier--fire .goc-next {
            background: #fb6400;
            color: #fff
        }

        .goc-tier--fire .goc-next:hover {
            background: #ff8c00
        }

        .goc-tier--solid .goc-next {
            background: var(--lime);
            color: #000
        }

        .goc-tier--solid .goc-next:hover {
            background: #9fff50
        }

        .goc-tier--danger .goc-next {
            background: var(--pink);
            color: #fff
        }

        .goc-tier--danger .goc-next:hover {
            background: #ff6090
        }

        .goc-next--ghost {
            background: transparent !important;
            color: var(--fg-muted) !important;
            border: 1px solid var(--border-strong) !important
        }

        .goc-next--ghost:hover {
            background: rgba(255, 255, 255, .08) !important;
            transform: translateY(-2px)
        }

        /* Floating particles */
        .goc-particles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden
        }

        .goc-particle {
            position: absolute;
            font-size: 22px;
            animation: gocFloat linear forwards
        }

        @keyframes gocFloat {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1
            }

            100% {
                transform: translateY(-120px) rotate(360deg);
                opacity: 0
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-8px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* Language pills */
        .game-langs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 24px
        }

        .gl-pill {
            padding: 8px 14px;
            border-radius: 4px;
            font-family: 'JetBrains Mono';
            font-size: 12px;
            font-weight: 700;
            background: rgba(var(--fg-rgb), .05);
            border: 1px solid var(--border-strong);
            color: var(--fg-muted);
            transition: .2s;
            cursor: default
        }

        .gl-pill:hover {
            border-color: var(--lime);
            color: var(--lime);
            background: rgba(173, 255, 47, .06)
        }

        /* Responsive — game section */
        @media(max-width:1100px) {
            .match-layout {
                grid-template-columns: 1fr 1fr
            }

            .match-ctx {
                display: none
            }
        }

        @media(max-width:768px) {
            .match-layout {
                grid-template-columns: 1fr
            }

            .over-panel {
                display: none
            }

            .game-header p {
                font-size: 16px
            }

            .powerplay-banner {
                font-size: 10px;
                gap: 8px
            }

            /* Constrain card to viewport */
            .gcard {
                max-height: calc(100svh - 90px)
            }

            .gc-body {
                padding: 14px 16px 12px
            }

            .gc-title {
                font-size: 22px;
                padding: 4px 0 2px
            }

            .gc-delivery-line {
                margin-bottom: 8px;
                font-size: 9px
            }

            .gc-subtitle {
                margin-bottom: 10px;
                font-size: 12px
            }

            .gc-term {
                margin-bottom: 10px
            }

            .gc-code {
                font-size: 11.5px;
                line-height: 1.6;
                max-height: 130px
            }

            .gc-choices {
                gap: 8px;
                margin-bottom: 10px
            }

            .gc-choice {
                padding: 14px 8px
            }

            .gcc-label {
                font-size: 18px
            }

            .swipe-hint {
                margin-bottom: 8px;
                font-size: 9px;
                padding: 2px 0
            }

            .gc-score-big {
                font-size: 22px
            }

            .gc-xpbar {
                margin-top: 0
            }
        }

        /* ═══ PRE-GAME OVERLAY — play now + team select ═══ */

        /* Blurs the match behind while overlay is active */
        .match-layout.pregame-blur {
            filter: blur(4px);
            pointer-events: none;
            -webkit-user-select: none;
            user-select: none;
            opacity: .3;
            transition: filter .5s, opacity .5s
        }

        .powerplay-banner.pregame-blur {
            filter: blur(3px);
            opacity: .2;
            pointer-events: none;
            transition: all .5s
        }

        /* Wrapper for the arena zone — overlay sits inside this */
        .match-arena-wrap {
            position: relative;
            min-height: max(640px, 70vh)
        }

        /* Overlay is now ABSOLUTE on top of arena, not above it */
        .pregame-overlay {
            position: absolute;
            inset: -20px -8px;
            z-index: 20;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* justify-content: center; */
            background: rgba(var(--bg-rgb), .88);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
            border-radius: 20px;
            padding: 32px 32px;
            overflow-y: auto;
            transition: opacity .4s ease, transform .4s ease;
            transform-origin: center center;
        }

        /* ── Team select ── */
        .team-select-wrap {
            display: none;
            width: 100%;
            max-width: 1080px;
            margin: 0 auto
        }

        .team-select-wrap.show {
            display: block;
            animation: tsSlideIn .35s ease forwards
        }

        @keyframes tsSlideIn {
            from {
                opacity: 0;
                transform: translateY(16px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .ts-header {
            text-align: center;
            margin-bottom: 28px
        }

        .ts-header h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: clamp(24px, 4vw, 40px);
            letter-spacing: 2px;
            margin-bottom: 8px
        }

        .ts-header p {
            font-size: 14px;
            color: var(--fg-muted);
            letter-spacing: .5px
        }

        .ts-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
            margin-bottom: 16px
        }

        .ts-card {
            border-radius: 16px;
            padding: 28px 18px 22px;
            border: 1.5px solid rgba(255, 255, 255, .08);
            cursor: pointer;
            transition: transform .22s, box-shadow .28s, border-color .22s;
            text-align: center;
            position: relative;
            overflow: hidden
        }

        /* Left vertical accent bar — always visible, stretches full height on hover */
        .ts-card::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 0;
            bottom: 20%;
            width: 3px;
            right: auto;
            height: auto;
            border-radius: 0 3px 3px 0;
            transition: top .25s ease, bottom .25s ease
        }

        .ts-card:hover {
            transform: translateY(-4px) scale(1.03);
            cursor: pointer
        }

        .ts-card:hover::before {
            top: 0;
            bottom: 0
        }

        .ts-card:active {
            transform: scale(.97)
        }

        .ts-card.selected {
            border-width: 2px;
            transform: translateY(-3px) scale(1.03)
        }

        .ts-card.selected::after {
            content: '✓';
            position: absolute;
            top: 8px;
            right: 10px;
            font-size: 12px;
            font-weight: 700;
            color: currentColor
        }

        /* Emoji badge */
        .ts-em {
            font-size: 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            margin-bottom: 16px;
            line-height: 1
        }

        .ts-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: .3px;
            margin-bottom: 4px;
            line-height: 1.25
        }

        .ts-city {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--fg-faint);
            text-transform: uppercase;
            margin-bottom: 12px
        }

        .ts-tag {
            font-family: 'JetBrains Mono';
            font-size: 8.5px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 4px 11px;
            border-radius: 20px;
            border: 1px solid;
            background: rgba(255, 255, 255, .05);
            display: inline-block
        }

        /* Radial "spotlight from top" gradients — color erupts from emoji, fades to dark base */

        /* H1: Mumbai AI Machines */
        .ts-h1 {
            background: radial-gradient(ellipse at 50% 0%, rgba(0, 140, 255, .52) 0%, transparent 65%), linear-gradient(180deg, #001840 0%, #000C20 100%);
            border-color: rgba(0, 107, 200, .4)
        }

        .ts-h1::before {
            background: linear-gradient(180deg, #0077CC, #00C6FF)
        }

        .ts-h1 .ts-name {
            color: #5BB8FF
        }

        .ts-h1 .ts-city {
            color: rgba(91, 184, 255, .7)
        }

        .ts-h1 .ts-tag {
            color: #5BB8FF;
            border-color: rgba(91, 184, 255, .35);
            background: rgba(0, 119, 204, .15)
        }

        .ts-h1 .ts-em {
            background: rgba(0, 100, 200, .22);
            border-color: rgba(91, 184, 255, .3)
        }

        .ts-h1:hover {
            border-color: rgba(0, 150, 255, .5);
            box-shadow: 0 16px 48px rgba(0, 60, 160, .55), 0 0 0 1px rgba(91, 184, 255, .3)
        }

        .ts-h1.selected {
            border-color: #00C6FF;
            box-shadow: 0 0 32px rgba(0, 198, 255, .35)
        }

        .ts-h1.selected::after {
            color: #5BB8FF
        }

        /* H2: Bangalore Byte Blazers */
        .ts-h2 {
            background: radial-gradient(ellipse at 50% 0%, rgba(220, 0, 0, .55) 0%, transparent 65%), linear-gradient(180deg, #1C0000 0%, #0A0000 100%);
            border-color: rgba(204, 0, 0, .4)
        }

        .ts-h2::before {
            background: linear-gradient(180deg, #CC0000, #FFD700)
        }

        .ts-h2 .ts-name {
            color: #FFB830
        }

        .ts-h2 .ts-city {
            color: rgba(255, 184, 48, .7)
        }

        .ts-h2 .ts-tag {
            color: #FFB830;
            border-color: rgba(255, 184, 48, .35);
            background: rgba(204, 0, 0, .18)
        }

        .ts-h2 .ts-em {
            background: rgba(160, 0, 0, .25);
            border-color: rgba(255, 184, 48, .28)
        }

        .ts-h2:hover {
            border-color: rgba(220, 0, 0, .6);
            box-shadow: 0 16px 48px rgba(160, 0, 0, .55), 0 0 0 1px rgba(255, 184, 48, .28)
        }

        .ts-h2.selected {
            border-color: #FFD700;
            box-shadow: 0 0 32px rgba(255, 215, 0, .3)
        }

        .ts-h2.selected::after {
            color: #FFB830
        }

        /* H3: Delhi Debug Dynasty */
        .ts-h3 {
            background: radial-gradient(ellipse at 50% 0%, rgba(30, 80, 180, .55) 0%, transparent 65%), linear-gradient(180deg, #060E30 0%, #020818 100%);
            border-color: rgba(23, 68, 155, .45)
        }

        .ts-h3::before {
            background: linear-gradient(180deg, #1754B8, #EF1B23)
        }

        .ts-h3 .ts-name {
            color: #6B9FFF
        }

        .ts-h3 .ts-city {
            color: rgba(107, 159, 255, .7)
        }

        .ts-h3 .ts-tag {
            color: #6B9FFF;
            border-color: rgba(107, 159, 255, .35);
            background: rgba(23, 68, 155, .2)
        }

        .ts-h3 .ts-em {
            background: rgba(20, 60, 150, .25);
            border-color: rgba(107, 159, 255, .28)
        }

        .ts-h3:hover {
            border-color: rgba(50, 100, 220, .5);
            box-shadow: 0 16px 48px rgba(10, 50, 150, .55), 0 0 0 1px rgba(107, 159, 255, .3)
        }

        .ts-h3.selected {
            border-color: #6B9FFF;
            box-shadow: 0 0 32px rgba(107, 159, 255, .3)
        }

        .ts-h3.selected::after {
            color: #6B9FFF
        }

        /* H4: Chennai Cloud Coders */
        .ts-h4 {
            background: radial-gradient(ellipse at 50% 0%, rgba(220, 150, 0, .52) 0%, transparent 65%), linear-gradient(180deg, #1A1000 0%, #0A0800 100%);
            border-color: rgba(245, 168, 0, .4)
        }

        .ts-h4::before {
            background: linear-gradient(180deg, #F5A800, #FFD700)
        }

        .ts-h4 .ts-name {
            color: #FFD060
        }

        .ts-h4 .ts-city {
            color: rgba(255, 208, 96, .7)
        }

        .ts-h4 .ts-tag {
            color: #FFD060;
            border-color: rgba(255, 208, 96, .35);
            background: rgba(200, 130, 0, .18)
        }

        .ts-h4 .ts-em {
            background: rgba(180, 110, 0, .22);
            border-color: rgba(255, 208, 96, .28)
        }

        .ts-h4:hover {
            border-color: rgba(240, 160, 0, .5);
            box-shadow: 0 16px 48px rgba(160, 100, 0, .5), 0 0 0 1px rgba(255, 208, 96, .3)
        }

        .ts-h4.selected {
            border-color: #FFD700;
            box-shadow: 0 0 32px rgba(255, 215, 0, .35)
        }

        .ts-h4.selected::after {
            color: #FFD060
        }

        /* H5: Hyderabad Hot Reload */
        .ts-h5 {
            background: radial-gradient(ellipse at 50% 0%, rgba(240, 70, 0, .55) 0%, transparent 65%), linear-gradient(180deg, #1C0800 0%, #0A0400 100%);
            border-color: rgba(252, 76, 2, .4)
        }

        .ts-h5::before {
            background: linear-gradient(180deg, #FC4C02, #FF8C00)
        }

        .ts-h5 .ts-name {
            color: #FF8C42
        }

        .ts-h5 .ts-city {
            color: rgba(255, 140, 66, .7)
        }

        .ts-h5 .ts-tag {
            color: #FF8C42;
            border-color: rgba(255, 140, 66, .35);
            background: rgba(220, 60, 0, .18)
        }

        .ts-h5 .ts-em {
            background: rgba(180, 50, 0, .22);
            border-color: rgba(255, 140, 66, .28)
        }

        .ts-h5:hover {
            border-color: rgba(255, 80, 0, .5);
            box-shadow: 0 16px 48px rgba(180, 50, 0, .55), 0 0 0 1px rgba(255, 140, 66, .3)
        }

        .ts-h5.selected {
            border-color: #FF8C42;
            box-shadow: 0 0 32px rgba(255, 140, 66, .35)
        }

        .ts-h5.selected::after {
            color: #FF8C42
        }

        /* H6: Kolkata Kernel Kings */
        .ts-h6 {
            background: radial-gradient(ellipse at 50% 0%, rgba(110, 50, 200, .55) 0%, transparent 65%), linear-gradient(180deg, #0E0620 0%, #060310 100%);
            border-color: rgba(100, 60, 160, .4)
        }

        .ts-h6::before {
            background: linear-gradient(180deg, #6B35C8, #FFD700)
        }

        .ts-h6 .ts-name {
            color: #C8A0FF
        }

        .ts-h6 .ts-city {
            color: rgba(200, 160, 255, .7)
        }

        .ts-h6 .ts-tag {
            color: #C8A0FF;
            border-color: rgba(200, 160, 255, .35);
            background: rgba(90, 40, 160, .2)
        }

        .ts-h6 .ts-em {
            background: rgba(80, 30, 150, .25);
            border-color: rgba(200, 160, 255, .28)
        }

        .ts-h6:hover {
            border-color: rgba(130, 70, 220, .5);
            box-shadow: 0 16px 48px rgba(50, 20, 100, .6), 0 0 0 1px rgba(200, 160, 255, .3)
        }

        .ts-h6.selected {
            border-color: #C8A0FF;
            box-shadow: 0 0 32px rgba(200, 160, 255, .3)
        }

        .ts-h6.selected::after {
            color: #C8A0FF
        }

        /* H7: Gujarat Git Guardians */
        .ts-h7 {
            background: radial-gradient(ellipse at 50% 0%, rgba(60, 160, 220, .52) 0%, transparent 65%), linear-gradient(180deg, #061220 0%, #020A14 100%);
            border-color: rgba(135, 206, 235, .38)
        }

        .ts-h7::before {
            background: linear-gradient(180deg, #87CEEB, #5BAADD)
        }

        .ts-h7 .ts-name {
            color: #9DD8F5
        }

        .ts-h7 .ts-city {
            color: rgba(157, 216, 245, .7)
        }

        .ts-h7 .ts-tag {
            color: #9DD8F5;
            border-color: rgba(157, 216, 245, .35);
            background: rgba(40, 120, 180, .15)
        }

        .ts-h7 .ts-em {
            background: rgba(40, 110, 170, .22);
            border-color: rgba(157, 216, 245, .28)
        }

        .ts-h7:hover {
            border-color: rgba(100, 190, 235, .5);
            box-shadow: 0 16px 48px rgba(40, 110, 180, .5), 0 0 0 1px rgba(157, 216, 245, .3)
        }

        .ts-h7.selected {
            border-color: #9DD8F5;
            box-shadow: 0 0 32px rgba(157, 216, 245, .3)
        }

        .ts-h7.selected::after {
            color: #9DD8F5
        }

        /* H8: Rajasthan Runtime Rebels */
        .ts-h8 {
            background: radial-gradient(ellipse at 50% 0%, rgba(220, 20, 120, .55) 0%, transparent 65%), linear-gradient(180deg, #160424 0%, #080212 100%);
            border-color: rgba(233, 30, 140, .4)
        }

        .ts-h8::before {
            background: linear-gradient(180deg, #E91E8C, #BD93F9)
        }

        .ts-h8 .ts-name {
            color: #FF70C0
        }

        .ts-h8 .ts-city {
            color: rgba(255, 112, 192, .7)
        }

        .ts-h8 .ts-tag {
            color: #FF70C0;
            border-color: rgba(255, 112, 192, .35);
            background: rgba(200, 10, 100, .18)
        }

        .ts-h8 .ts-em {
            background: rgba(180, 0, 90, .25);
            border-color: rgba(255, 112, 192, .28)
        }

        .ts-h8:hover {
            border-color: rgba(240, 30, 140, .5);
            box-shadow: 0 16px 48px rgba(160, 0, 90, .55), 0 0 0 1px rgba(255, 112, 192, .3)
        }

        .ts-h8.selected {
            border-color: #FF70C0;
            box-shadow: 0 0 32px rgba(255, 112, 192, .3)
        }

        .ts-h8.selected::after {
            color: #FF70C0
        }

        /* H9: Lucknow Logic Lords */
        .ts-h9 {
            background: radial-gradient(ellipse at 50% 0%, rgba(190, 0, 40, .55) 0%, transparent 65%), linear-gradient(180deg, #0C0418 0%, #060210 100%);
            border-color: rgba(180, 0, 40, .4)
        }

        .ts-h9::before {
            background: linear-gradient(180deg, #C8002E, #FFD700)
        }

        .ts-h9 .ts-name {
            color: #FFB3BE
        }

        .ts-h9 .ts-city {
            color: rgba(255, 179, 190, .7)
        }

        .ts-h9 .ts-tag {
            color: #FFB3BE;
            border-color: rgba(255, 179, 190, .35);
            background: rgba(160, 0, 30, .2)
        }

        .ts-h9 .ts-em {
            background: rgba(140, 0, 30, .25);
            border-color: rgba(255, 179, 190, .28)
        }

        .ts-h9:hover {
            border-color: rgba(200, 0, 50, .5);
            box-shadow: 0 16px 48px rgba(130, 0, 30, .55), 0 0 0 1px rgba(255, 179, 190, .3)
        }

        .ts-h9.selected {
            border-color: #FFB3BE;
            box-shadow: 0 0 32px rgba(255, 179, 190, .3)
        }

        .ts-h9.selected::after {
            color: #FFB3BE
        }

        /* H10: Punjab Pixel Pioneers */
        .ts-h10 {
            background: radial-gradient(ellipse at 50% 0%, rgba(200, 16, 46, .55) 0%, transparent 65%), linear-gradient(180deg, #180408 0%, #0A0204 100%);
            border-color: rgba(200, 16, 46, .4)
        }

        .ts-h10::before {
            background: linear-gradient(180deg, #C8102E, #FF6B6B)
        }

        .ts-h10 .ts-name {
            color: #FF6070
        }

        .ts-h10 .ts-city {
            color: rgba(255, 96, 112, .7)
        }

        .ts-h10 .ts-tag {
            color: #FF6070;
            border-color: rgba(255, 96, 112, .35);
            background: rgba(180, 10, 30, .18)
        }

        .ts-h10 .ts-em {
            background: rgba(160, 0, 25, .25);
            border-color: rgba(255, 96, 112, .28)
        }

        .ts-h10:hover {
            border-color: rgba(220, 20, 50, .5);
            box-shadow: 0 16px 48px rgba(150, 0, 20, .55), 0 0 0 1px rgba(255, 96, 112, .3)
        }

        .ts-h10.selected {
            border-color: #FF6070;
            box-shadow: 0 0 32px rgba(255, 96, 112, .3)
        }

        .ts-h10.selected::after {
            color: #FF6070
        }

        /* Back link row (replaces ts-footer after removing launch button) */
        .ts-back-row {
            display: flex;
            justify-content: flex-start;
            padding-top: 4px;
        }

        .ts-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap
        }

        .ts-selected-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--fg-subtle);
            display: flex;
            align-items: center;
            gap: 8px
        }

        .ts-selected-name {
            color: var(--fg);
            transition: color .2s
        }

        .btn-launch {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--lime), #39FF14);
            color: #000;
            padding: 14px 40px;
            border-radius: 6px;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 15px;
            letter-spacing: 3px;
            border: none;
            cursor: pointer;
            transition: all .2s;
            opacity: .4;
            pointer-events: none
        }

        .btn-launch.ready {
            opacity: 1;
            pointer-events: auto;
            box-shadow: 0 8px 32px rgba(173, 255, 47, .3);
            animation: launchPulse 2s ease-in-out infinite
        }

        @keyframes launchPulse {

            0%,
            100% {
                box-shadow: 0 8px 32px rgba(173, 255, 47, .3)
            }

            50% {
                box-shadow: 0 12px 48px rgba(173, 255, 47, .5)
            }
        }

        .btn-launch.ready:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #C8FF00, var(--lime))
        }

        .btn-back {
            background: none;
            border: 1px solid var(--border-strong);
            color: var(--fg-subtle);
            padding: 14px 24px;
            border-radius: 6px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: .2s
        }

        .btn-back:hover {
            border-color: var(--fg-muted);
            color: var(--fg)
        }

        /* Countdown before launch */
        .launch-countdown {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 28px;
            text-align: center
        }

        .launch-countdown.show {
            display: flex
        }

        .lc-num {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 80px;
            line-height: 1;
            color: var(--yellow);
            text-shadow: 0 0 40px rgba(255, 230, 0, .5);
            animation: countdownPop .5s cubic-bezier(.34, 1.56, .64, 1) both
        }

        @keyframes countdownPop {
            0% {
                transform: scale(2.5);
                opacity: 0
            }

            100% {
                transform: scale(1);
                opacity: 1
            }
        }

        .lc-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 4px;
            color: var(--fg-subtle);
            text-transform: uppercase
        }

        @media(max-width:900px) {
            .ts-grid {
                grid-template-columns: repeat(4, 1fr)
            }
        }

        @media(max-width:768px) {
            .ts-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:480px) {
            .ts-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px
            }

            .ts-card {
                padding: 12px 8px
            }

            .ts-em {
                font-size: 22px
            }

            .ts-name {
                font-size: 10px
            }

            .ts-city {
                display: none
            }
        }

        .houses-S {
            padding: 100px 0;
        }

        .houses-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 64px;
        }

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



        .hc:hover::before {
            height: 3px
        }

        .hc-glow {
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            filter: blur(40px);
            bottom: -40px;
            right: -20px;
            opacity: 0;
            transition: .3s;
            pointer-events: none
        }

        .hc:hover .hc-glow {
            opacity: .2
        }

        .hc-em {
            font-size: 30px;
            margin-bottom: 8px;
            display: block
        }

        .hc-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 17px;
            letter-spacing: 1px;
            margin-bottom: 2px
        }

        .hc-city {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 8px;
            letter-spacing: 3px;
            color: var(--fg-faint);
            text-transform: uppercase;
            margin-bottom: 8px;
            font-weight: 700
        }

        .hc-desc {
            font-size: 12px;
            color: var(--fg-muted);
            line-height: 1.5;
            margin-bottom: 10px;
            font-weight: 400
        }

        .hc-city {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--fg-faint);
            text-transform: uppercase;
            margin-bottom: 8px
        }

        .hc {
            border-radius: 16px;
            padding: 26px 22px 22px;
            border: 1.5px solid var(--border-strong);
            background: var(--card-bg);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform .25s, box-shadow .3s, border-color .25s;
        }

        /* Colored top stripe — always visible, grows on hover */
        .hc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            transition: height .25s ease;
            border-radius: 16px 16px 0 0;
        }

        .hc:hover::before {
            height: 4px;
        }

        .hc:hover {
            transform: translateY(-7px) scale(1.01);
            border-color: rgba(255, 255, 255, .18);
        }

        .hc-glow {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            filter: blur(60px);
            bottom: -70px;
            right: -50px;
            opacity: 0.06;
            transition: opacity .4s;
            pointer-events: none;
        }

        .hc:hover .hc-glow {
            opacity: .26;
        }

        .hc-em {
            font-size: 30px;
            margin-bottom: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .1);
            line-height: 1;
        }

        .hc-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 16px;
            letter-spacing: 0.3px;
            line-height: 1.2;
            margin-bottom: 4px;
            color: var(--fg);
        }

        .hc-city {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .hc-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, .72);
            line-height: 1.65;
            margin-bottom: 18px;
            font-weight: 400;
        }

        .hc-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 1.5px;
            padding: 5px 12px;
            border-radius: 20px;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .12);
            display: inline-block;
            color: var(--fg-muted);
        }

        /* H1: Mumbai Indians — Deep Blue */
        .H1 {
            background: linear-gradient(145deg, #003875 0%, #001F4D 60%, rgba(0, 75, 160, .15) 100%);
            border-color: rgba(0, 107, 200, .5);
        }

        .H1::before {
            background: linear-gradient(90deg, #0077CC, #00C6FF);
        }

        .H1 .hc-name {
            color: #5BB8FF;
        }

        .H1 .hc-city {
            color: rgba(91, 184, 255, .75);
        }

        .H1 .hc-tag {
            background: rgba(0, 119, 204, .2);
            color: #5BB8FF;
            border-color: rgba(0, 119, 204, .35);
        }

        .H1:hover {
            border-color: rgba(0, 119, 204, .7);
            box-shadow: 0 16px 48px rgba(0, 75, 160, .45);
        }

        .H1 .hc-glow {
            background: #0077CC;
        }

        /* H2: Royal Challengers Bangalore — Blood Red + Gold */
        .H2 {
            background: linear-gradient(145deg, #8B0000 0%, #5A0000 60%, rgba(204, 0, 0, .12) 100%);
            border-color: rgba(204, 0, 0, .5);
        }

        .H2::before {
            background: linear-gradient(90deg, #CC0000, #FFD700);
        }

        .H2 .hc-name {
            color: #FFB830;
        }

        .H2 .hc-city {
            color: rgba(255, 184, 48, .75);
        }

        .H2 .hc-tag {
            background: rgba(204, 0, 0, .25);
            color: #FFB830;
            border-color: rgba(255, 184, 48, .3);
        }

        .H2:hover {
            border-color: rgba(204, 0, 0, .7);
            box-shadow: 0 16px 48px rgba(140, 0, 0, .45);
        }

        .H2 .hc-glow {
            background: #CC0000;
        }

        /* H3: Delhi Capitals — Royal Blue + Red */
        .H3 {
            background: linear-gradient(145deg, #0D2F7A 0%, #071A50 60%, rgba(23, 68, 155, .15) 100%);
            border-color: rgba(23, 68, 155, .55);
        }

        .H3::before {
            background: linear-gradient(90deg, #1754B8, #EF1B23);
        }

        .H3 .hc-name {
            color: #6B9FFF;
        }

        .H3 .hc-city {
            color: rgba(107, 159, 255, .75);
        }

        .H3 .hc-tag {
            background: rgba(23, 68, 155, .25);
            color: #6B9FFF;
            border-color: rgba(107, 159, 255, .3);
        }

        .H3:hover {
            border-color: rgba(23, 68, 155, .7);
            box-shadow: 0 16px 48px rgba(23, 68, 155, .45);
        }

        .H3 .hc-glow {
            background: #1754B8;
        }

        .H4::before {
            background: linear-gradient(90deg, #ADFF2F, #39FF14)
        }

        /* H4: Chennai Super Kings — Gold Yellow */
        .H4 {
            background: linear-gradient(145deg, #8A6000 0%, #5A3D00 60%, rgba(245, 168, 0, .12) 100%);
            border-color: rgba(245, 168, 0, .5);
        }

        .H4::before {
            background: linear-gradient(90deg, #F5A800, #FFD700);
        }

        .H4 .hc-name {
            color: #FFD060;
        }

        .H4 .hc-city {
            color: rgba(255, 208, 96, .75);
        }

        .H4 .hc-tag {
            background: rgba(245, 168, 0, .2);
            color: #FFD060;
            border-color: rgba(255, 208, 96, .3);
        }

        .H4:hover {
            border-color: rgba(245, 168, 0, .7);
            box-shadow: 0 16px 48px rgba(180, 120, 0, .45);
        }

        .H4 .hc-glow {
            background: #F5A800;
        }

        /* H5: Sunrisers Hyderabad — Vivid Orange */
        .H5 {
            background: linear-gradient(145deg, #8B3300 0%, #5C2000 60%, rgba(252, 76, 2, .12) 100%);
            border-color: rgba(252, 76, 2, .5);
        }

        .H5::before {
            background: linear-gradient(90deg, #FC4C02, #FF8C00);
        }

        .H5 .hc-name {
            color: #FF8C42;
        }

        .H5 .hc-city {
            color: rgba(255, 140, 66, .75);
        }

        .H5 .hc-tag {
            background: rgba(252, 76, 2, .2);
            color: #FF8C42;
            border-color: rgba(255, 140, 66, .3);
        }

        .H5:hover {
            border-color: rgba(252, 76, 2, .7);
            box-shadow: 0 16px 48px rgba(180, 50, 0, .45);
        }

        .H5 .hc-glow {
            background: #FC4C02;
        }

        /* H6: Kolkata Knight Riders — Deep Purple + Gold */
        .H6 {
            background: linear-gradient(145deg, #2A1545 0%, #160B2A 60%, rgba(58, 34, 93, .2) 100%);
            border-color: rgba(100, 60, 160, .5);
        }

        .H6::before {
            background: linear-gradient(90deg, #6B35C8, #FFD700);
        }

        .H6 .hc-name {
            color: #C8A0FF;
        }

        .H6 .hc-city {
            color: rgba(200, 160, 255, .75);
        }

        .H6 .hc-tag {
            background: rgba(107, 53, 200, .25);
            color: #C8A0FF;
            border-color: rgba(200, 160, 255, .3);
        }

        .H6:hover {
            border-color: rgba(107, 53, 200, .7);
            box-shadow: 0 16px 48px rgba(58, 34, 93, .55);
        }

        .H6 .hc-glow {
            background: #6B35C8;
        }

        /* H7: Gujarat Titans — Powder Blue (#87CEEB) + Dark Navy */
        .H7 {
            background: linear-gradient(145deg, #3B8CC4 0%, #0D2347 55%, #091830 100%);
            border-color: rgba(135, 206, 235, .45);
        }

        .H7::before {
            background: linear-gradient(90deg, #87CEEB, #5BAADD);
        }

        .H7 .hc-name {
            color: #9DD8F5;
        }

        .H7 .hc-city {
            color: rgba(157, 216, 245, .75);
        }

        .H7 .hc-tag {
            background: rgba(135, 206, 235, .15);
            color: #9DD8F5;
            border-color: rgba(135, 206, 235, .3);
        }

        .H7:hover {
            border-color: rgba(135, 206, 235, .65);
            box-shadow: 0 16px 48px rgba(59, 140, 196, .4);
        }

        .H7 .hc-glow {
            background: #5BAADD;
        }

        /* H8: Rajasthan Royals — Hot Pink + Blue */
        .H8 {
            background: linear-gradient(145deg, #7A0F4E 0%, #4A0830 60%, rgba(233, 30, 140, .12) 100%);
            border-color: rgba(233, 30, 140, .5);
        }

        .H8::before {
            background: linear-gradient(90deg, #E91E8C, #BD93F9);
        }

        .H8 .hc-name {
            color: #FF70C0;
        }

        .H8 .hc-city {
            color: rgba(255, 112, 192, .75);
        }

        .H8 .hc-tag {
            background: rgba(233, 30, 140, .2);
            color: #FF70C0;
            border-color: rgba(255, 112, 192, .3);
        }

        .H8:hover {
            border-color: rgba(233, 30, 140, .7);
            box-shadow: 0 16px 48px rgba(160, 0, 90, .45);
        }

        .H8 .hc-glow {
            background: #E91E8C;
        }

        /* H9: Lucknow Super Giants — Crimson + Dark Navy (LSG brand) */
        .H9 {
            background: linear-gradient(145deg, #8B0026 0%, #0C1F4A 50%, #091530 100%);
            border-color: rgba(180, 0, 40, .5);
        }

        .H9::before {
            background: linear-gradient(90deg, #C8002E, #FFD700);
        }

        .H9 .hc-name {
            color: #FFB3BE;
        }

        .H9 .hc-city {
            color: rgba(255, 179, 190, .75);
        }

        .H9 .hc-tag {
            background: rgba(180, 0, 40, .25);
            color: #FFB3BE;
            border-color: rgba(255, 179, 190, .3);
        }

        .H9:hover {
            border-color: rgba(180, 0, 40, .7);
            box-shadow: 0 16px 48px rgba(139, 0, 38, .5);
        }

        .H9 .hc-glow {
            background: #C8002E;
        }

        /* H10: Punjab Kings — Crimson Red */
        .H10 {
            background: linear-gradient(145deg, #7A0A1A 0%, #4D0510 60%, rgba(200, 16, 46, .12) 100%);
            border-color: rgba(200, 16, 46, .5);
        }

        .H10::before {
            background: linear-gradient(90deg, #C8102E, #FF4560);
        }

        .H10 .hc-name {
            color: #FF6070;
        }

        .H10 .hc-city {
            color: rgba(255, 96, 112, .75);
        }

        .H10 .hc-tag {
            background: rgba(200, 16, 46, .2);
            color: #FF6070;
            border-color: rgba(255, 96, 112, .3);
        }

        .H10:hover {
            border-color: rgba(200, 16, 46, .7);
            box-shadow: 0 16px 48px rgba(140, 0, 20, .45);
        }

        .H10 .hc-glow {
            background: #C8102E;
        }

        /* Per-house emoji badge tint + colored hover shadow */
        .H1 .hc-em {
            background: rgba(0, 75, 160, .22);
            border-color: rgba(91, 184, 255, .25);
        }

        .H2 .hc-em {
            background: rgba(140, 0, 0, .25);
            border-color: rgba(255, 184, 48, .2);
        }

        .H3 .hc-em {
            background: rgba(23, 68, 155, .25);
            border-color: rgba(107, 159, 255, .2);
        }

        .H4 .hc-em {
            background: rgba(180, 120, 0, .22);
            border-color: rgba(255, 208, 96, .2);
        }

        .H5 .hc-em {
            background: rgba(180, 50, 0, .22);
            border-color: rgba(255, 140, 66, .2);
        }

        .H6 .hc-em {
            background: rgba(70, 30, 110, .28);
            border-color: rgba(200, 160, 255, .2);
        }

        .H7 .hc-em {
            background: rgba(59, 140, 196, .22);
            border-color: rgba(157, 216, 245, .2);
        }

        .H8 .hc-em {
            background: rgba(160, 0, 90, .25);
            border-color: rgba(255, 112, 192, .2);
        }

        .H9 .hc-em {
            background: rgba(139, 0, 38, .25);
            border-color: rgba(255, 179, 190, .2);
        }

        .H10 .hc-em {
            background: rgba(160, 0, 30, .25);
            border-color: rgba(255, 96, 112, .2);
        }

        .H1:hover {
            box-shadow: 0 24px 60px rgba(0, 50, 150, .5), 0 0 0 1px rgba(91, 184, 255, .28);
        }

        .H2:hover {
            box-shadow: 0 24px 60px rgba(140, 0, 0, .55), 0 0 0 1px rgba(255, 184, 48, .25);
        }

        .H3:hover {
            box-shadow: 0 24px 60px rgba(10, 50, 140, .5), 0 0 0 1px rgba(107, 159, 255, .28);
        }

        .H4:hover {
            box-shadow: 0 24px 60px rgba(160, 100, 0, .5), 0 0 0 1px rgba(255, 208, 96, .28);
        }

        .H5:hover {
            box-shadow: 0 24px 60px rgba(180, 50, 0, .5), 0 0 0 1px rgba(255, 140, 66, .28);
        }

        .H6:hover {
            box-shadow: 0 24px 60px rgba(50, 20, 90, .6), 0 0 0 1px rgba(200, 160, 255, .28);
        }

        .H7:hover {
            box-shadow: 0 24px 60px rgba(40, 110, 170, .5), 0 0 0 1px rgba(157, 216, 245, .28);
        }

        .H8:hover {
            box-shadow: 0 24px 60px rgba(160, 0, 90, .5), 0 0 0 1px rgba(255, 112, 192, .28);
        }

        .H9:hover {
            box-shadow: 0 24px 60px rgba(120, 0, 30, .55), 0 0 0 1px rgba(255, 179, 190, .28);
        }

        .H10:hover {
            box-shadow: 0 24px 60px rgba(140, 0, 20, .5), 0 0 0 1px rgba(255, 96, 112, .28);
        }

        .H1 .hc-tag {
            border-color: rgba(91, 184, 255, .3);
            color: #5BB8FF;
        }

        .H2 .hc-tag {
            border-color: rgba(255, 184, 48, .3);
            color: #FFB830;
        }

        .H3 .hc-tag {
            border-color: rgba(107, 159, 255, .3);
            color: #6B9FFF;
        }

        .H4 .hc-tag {
            border-color: rgba(255, 208, 96, .3);
            color: #FFD060;
        }

        .H5 .hc-tag {
            border-color: rgba(255, 140, 66, .3);
            color: #FF8C42;
        }

        .H6 .hc-tag {
            border-color: rgba(200, 160, 255, .3);
            color: #C8A0FF;
        }

        .H7 .hc-tag {
            border-color: rgba(157, 216, 245, .3);
            color: #9DD8F5;
        }

        .H8 .hc-tag {
            border-color: rgba(255, 112, 192, .3);
            color: #FF70C0;
        }

        .H9 .hc-tag {
            border-color: rgba(255, 179, 190, .3);
            color: #FFB3BE;
        }

        .H10 .hc-tag {
            border-color: rgba(255, 96, 112, .3);
            color: #FF6070;
        }

        /* ═══ AWARDS ═══ */
        .awards-S {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg), var(--bg));
            position: relative
        }

        .awards-S::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 230, 0, .03) 0%, transparent 60%)
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 56px
        }

        .aw {
            border-radius: 8px;
            padding: 26px;
            border: 1px solid var(--border);
            background: rgba(var(--fg-rgb), .025);
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: flex-start;
            transition: .2s;
            cursor: default
        }

        .aw:hover {
            transform: translateY(-4px);
            background: rgba(var(--fg-rgb), .045)
        }

        .aw-ipl {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            letter-spacing: 1.5px;
            color: rgba(0, 0, 0, 1);
            text-transform: uppercase;
            margin-bottom: 8px;
            font-weight: 700
        }

        .aw-desc {
            font-size: 13px;
            color: var(--fg-muted);
            line-height: 1.6;
            font-weight: 400
        }

        .aw-crown-svg {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-origin: bottom left;
        }

        .aw:hover .aw-crown-svg {
            transform: scale(1.15) rotate(6deg);
        }

        .aw:nth-child(1) .aw-crown-svg {
            color: var(--yellow);
            filter: drop-shadow(0 0 16px rgba(255, 106, 0, 0.5));
        }

        .aw:nth-child(2) .aw-crown-svg {
            color: var(--purple);
            filter: drop-shadow(0 0 16px rgba(139, 47, 255, 0.5));
        }

        .aw:nth-child(3) .aw-crown-svg {
            color: var(--cyan);
            filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.5));
        }

        .aw:nth-child(4) .aw-crown-svg {
            color: var(--pink);
            filter: drop-shadow(0 0 16px rgba(255, 107, 157, 0.5));
        }

        .aw:nth-child(5) .aw-crown-svg {
            color: var(--lime);
            filter: drop-shadow(0 0 16px rgba(173, 255, 47, 0.5));
        }

        .aw:nth-child(6) .aw-crown-svg {
            color: var(--gold);
            filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.5));
        }

        .aw:nth-child(1) {
            border-color: rgba(255, 106, 0, .25);
            background: linear-gradient(145deg, rgba(255, 106, 0, .08) 0%, rgba(var(--fg-rgb), .02) 100%);
        }

        .aw:nth-child(1):hover {
            border-color: rgba(255, 106, 0, .5);
            background: linear-gradient(145deg, rgba(255, 106, 0, .15) 0%, rgba(var(--fg-rgb), .05) 100%);
        }

        .aw:nth-child(1) .aw-name {
            color: var(--yellow)
        }

        .aw:nth-child(2) {
            border-color: rgba(139, 47, 255, .25);
            background: linear-gradient(145deg, rgba(139, 47, 255, .1) 0%, rgba(var(--fg-rgb), .02) 100%);
        }

        .aw:nth-child(2):hover {
            border-color: rgba(139, 47, 255, .5);
            background: linear-gradient(145deg, rgba(139, 47, 255, .15) 0%, rgba(var(--fg-rgb), .05) 100%);
        }

        .aw:nth-child(2) .aw-name {
            color: var(--purple)
        }

        .aw:nth-child(3) {
            border-color: rgba(0, 212, 255, .25);
            background: linear-gradient(145deg, rgba(0, 212, 255, .08) 0%, rgba(var(--fg-rgb), .02) 100%);
        }

        .aw:nth-child(3):hover {
            border-color: rgba(0, 212, 255, .5);
            background: linear-gradient(145deg, rgba(0, 212, 255, .15) 0%, rgba(var(--fg-rgb), .05) 100%);
        }

        .aw:nth-child(3) .aw-name {
            color: var(--cyan)
        }

        .aw:nth-child(4) {
            border-color: rgba(255, 107, 157, .25);
            background: linear-gradient(145deg, rgba(255, 107, 157, .08) 0%, rgba(var(--fg-rgb), .02) 100%);
        }

        .aw:nth-child(4):hover {
            border-color: rgba(255, 107, 157, .5);
            background: linear-gradient(145deg, rgba(255, 107, 157, .15) 0%, rgba(var(--fg-rgb), .05) 100%);
        }

        .aw:nth-child(4) .aw-name {
            color: var(--pink)
        }

        .aw:nth-child(5) {
            border-color: rgba(173, 255, 47, .25);
            background: linear-gradient(145deg, rgba(173, 255, 47, .08) 0%, rgba(var(--fg-rgb), .02) 100%);
        }

        .aw:nth-child(5):hover {
            border-color: rgba(173, 255, 47, .5);
            background: linear-gradient(145deg, rgba(173, 255, 47, .15) 0%, rgba(var(--fg-rgb), .05) 100%);
        }

        .aw:nth-child(5) .aw-name {
            color: var(--lime)
        }

        .aw:nth-child(6) {
            border-color: rgba(255, 215, 0, .25);
            background: linear-gradient(145deg, rgba(255, 215, 0, .08) 0%, rgba(var(--fg-rgb), .02) 100%);
        }

        .aw:nth-child(6):hover {
            border-color: rgba(255, 215, 0, .5);
            background: linear-gradient(145deg, rgba(255, 215, 0, .15) 0%, rgba(var(--fg-rgb), .05) 100%);
        }

        .aw:nth-child(6) .aw-name {
            color: var(--gold)
        }

        /* ═══ SEASON ═══ */
        .season-S {
            padding: 100px 0;
            background: var(--bg);
            position: relative;
            overflow: hidden
        }

        .season-S::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(173, 255, 47, .015) 0%, transparent 30%, rgba(255, 45, 120, .015) 70%, transparent 100%)
        }

        .season-track {
            display: flex;
            gap: 0;
            margin-top: 64px;
            position: relative
        }

        .season-track::before {
            content: '';
            position: absolute;
            top: 36px;
            left: 36px;
            right: 36px;
            height: 2px;
            background: linear-gradient(90deg, var(--lime), var(--cyan), var(--yellow), var(--pink), var(--yellow));
            opacity: .2
        }

        .snode {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            padding: 0 8px;
            position: relative
        }

        .sn-circle {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            border: 2px solid;
            background: var(--bg);
            position: relative;
            z-index: 1;
            transition: .2s
        }

        .sn-circle:hover {
            transform: scale(1.1)
        }

        .snode:nth-child(1) .sn-circle {
            border-color: var(--lime);
            box-shadow: 0 0 20px rgba(173, 255, 47, .2)
        }

        .snode:nth-child(2) .sn-circle {
            border-color: var(--cyan)
        }

        .snode:nth-child(3) .sn-circle {
            border-color: var(--purple)
        }

        .snode:nth-child(4) .sn-circle {
            border-color: var(--yellow);
            box-shadow: 0 0 20px rgba(255, 230, 0, .2)
        }

        .snode:nth-child(5) .sn-circle {
            border-color: var(--pink)
        }

        .snode:nth-child(6) .sn-circle {
            border-color: var(--yellow);
            box-shadow: 0 0 40px rgba(255, 230, 0, .4);
            animation: snGlow 2s ease-in-out infinite
        }

        @keyframes snGlow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(255, 230, 0, .3)
            }

            50% {
                box-shadow: 0 0 50px rgba(255, 230, 0, .6)
            }
        }

        .sn-week {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--fg-subtle);
            text-align: center;
            text-transform: uppercase
        }

        .sn-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 17px;
            letter-spacing: 1px;
            text-align: center
        }

        .sn-desc {
            font-size: 12px;
            color: var(--fg-muted);
            text-align: center;
            line-height: 1.55;
            font-weight: 400
        }

        /* ═══ STATS ═══ */
        .stats-S {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg), var(--bg));
            position: relative
        }

        .stats-nums {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-strong);
            margin-bottom: 56px
        }

        .snum {
            background: rgba(var(--bg-rgb), .97);
            padding: 44px 24px;
            text-align: center
        }

        .snum-n {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 68px;
            line-height: 1;
            display: block;
            margin-bottom: 4px
        }

        .snum-l {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            letter-spacing: 3px;
            color: var(--fg-subtle);
            text-transform: uppercase;
            font-weight: 700
        }

        .snum:nth-child(1) .snum-n {
            color: var(--yellow);
            text-shadow: 0 0 30px rgba(255, 230, 0, .3)
        }

        .snum:nth-child(2) .snum-n {
            color: var(--lime);
            text-shadow: 0 0 30px rgba(173, 255, 47, .3)
        }

        .snum:nth-child(3) .snum-n {
            color: var(--purple);
            text-shadow: 0 0 30px rgba(191, 95, 255, .3)
        }

        .snum:nth-child(4) .snum-n {
            color: var(--cyan);
            text-shadow: 0 0 30px rgba(0, 229, 255, .3)
        }

        .quotes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px
        }

        .qt {
            background: rgba(var(--fg-rgb), .025);
            border: 1px solid rgba(var(--fg-rgb), .07);
            border-radius: 8px;
            padding: 26px
        }

        .qt-text {
            font-size: 15px;
            color: var(--fg-muted);
            line-height: 1.75;
            margin-bottom: 18px;
            font-style: italic;
            font-weight: 400
        }

        .qt-author {
            display: flex;
            align-items: center;
            gap: 10px
        }

        .qt-av {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(var(--fg-rgb), .06);
            border: 1px solid rgba(var(--fg-rgb), .08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px
        }

        .qt-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .5px;
            display: block
        }

        .qt-role {
            font-size: 11.5px;
            color: var(--fg-subtle)
        }

        /* ═══ DEVLETTER SIGNUP ═══ */
        .devletter-S {
            padding: 80px 0;
        }

        .devletter-card {
            margin: 0 auto;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 64px 48px;
            background: var(--bg-card);
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            text-align: left;
        }

        @media (max-width: 900px) {
            .devletter-card {
                grid-template-columns: 1fr;
                padding: 40px 24px;
                gap: 40px;
            }
        }

        /* Glow behind card mailbox */
        .devletter-card::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 20%;
            width: 400px;
            height: 300px;
            background: radial-gradient(ellipse, rgba(139, 47, 255, .15), transparent 70%);
            pointer-events: none;
        }

        .devletter-icon {
            font-size: 56px;
            margin-bottom: 24px;
            display: inline-block;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
        }

        .devletter-heading {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: clamp(32px, 5vw, 42px);
            margin-bottom: 16px;
            line-height: 1.25;
            color: var(--fg);
        }

        .devletter-sub {
            font-size: 18px;
            color: var(--fg-muted);
            max-width: 440px;
            margin: 0 0 24px 0;
            line-height: 1.6;
            font-weight: 500;
        }

        .devletter-form {
            display: flex;
            gap: 12px;
            width: 100%;
        }

        @media (max-width: 600px) {
            .devletter-form {
                flex-direction: column;
            }

            .devletter-btn {
                width: 100%;
            }
        }

        .devletter-input {
            flex: 1;
            background: var(--bg);
            border: 1px solid var(--border-strong);
            border-radius: 12px;
            padding: 16px 20px;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            color: var(--fg);
            outline: none;
            transition: border-color .2s, box-shadow .2s, background .2s;
        }

        .devletter-input::placeholder {
            color: var(--fg-subtle);
        }

        .devletter-input:focus {
            background: var(--bg);
            border-color: var(--purple);
            box-shadow: 0 0 0 3px rgba(139, 47, 255, .15);
        }

        .devletter-btn {
            background: linear-gradient(135deg, #3b82f6, var(--purple));
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 16px 32px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            white-space: nowrap;
            transition: transform .2s, box-shadow .2s;
        }

        .devletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(139, 47, 255, .3);
        }

        .devletter-note {
            margin-top: 24px;
            font-size: 13px;
            color: var(--fg-subtle);
            font-weight: 500;
        }

        .devletter-note a {
            color: var(--fg-muted);
            text-decoration: underline;
        }

        .devletter-badges {
            display: flex;
            gap: 20px;
            justify-content: flex-start;
            flex-wrap: wrap;
        }

        .dl-badge {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--fg-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ═══ SOCIAL FOLLOW SECTION ═══ */
        .social-S {
            padding: 100px 0 80px;
            text-align: center;
        }

        .social-eyebrow {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--cyan);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .social-eyebrow::before,
        .social-eyebrow::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--cyan);
            opacity: 0.5;
        }

        .social-heading {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: clamp(36px, 5vw, 64px);
            line-height: 1.1;
            margin-bottom: 12px;
        }

        .social-sub {
            font-size: 17px;
            color: var(--fg-muted);
            max-width: 480px;
            margin: 0 auto 56px;
            line-height: 1.6;
        }

        .social-grid {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .social-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 32px 28px 28px;
            border-radius: 12px;
            border: 1px solid var(--border-strong);
            background: var(--card-bg);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            text-decoration: none;
            color: var(--fg);
            min-width: 140px;
            transition: transform .25s, box-shadow .25s, border-color .25s;
            position: relative;
            overflow: hidden;
        }

        .social-card::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity .3s;
        }

        .social-card:hover {
            transform: translateY(-6px);
        }

        /* Per-platform brand hover colors */
        .sc-reddit:hover {
            border-color: #FF4500;
            box-shadow: 0 8px 32px rgba(255, 69, 0, .35);
        }

        .sc-reddit:hover .social-icon {
            color: #FF4500;
        }

        .sc-twitter:hover {
            border-color: #000000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
            background: rgba(255, 255, 255, 0.02);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .sc-twitter:hover .social-icon {
            color: #FFFFFF;
        }

        .sc-linkedin:hover {
            border-color: #0077B5;
            box-shadow: 0 8px 32px rgba(0, 119, 181, .35);
        }

        .sc-linkedin:hover .social-icon {
            color: #0077B5;
        }

        .sc-instagram:hover {
            border-color: #E1306C;
            box-shadow: 0 8px 32px rgba(225, 48, 108, .35);
        }

        .sc-instagram:hover .social-icon {
            color: #E1306C;
        }

        .sc-facebook:hover {
            border-color: #1877F2;
            box-shadow: 0 8px 32px rgba(24, 119, 242, .35);
        }

        .sc-facebook:hover .social-icon {
            color: #1877F2;
        }

        .sc-youtube:hover {
            border-color: #FF0000;
            box-shadow: 0 8px 32px rgba(255, 0, 0, .35);
        }

        .sc-youtube:hover .social-icon {
            color: #FF0000;
        }

        .social-icon {
            font-size: 36px;
            transition: color .25s, transform .25s;
            line-height: 1;
        }

        .social-card:hover .social-icon {
            transform: scale(1.15);
        }

        .social-platform {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--fg-muted);
        }

        .social-action {
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--fg-subtle);
        }

        .season-social-pills {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 50;
            /* Ensure links are always clickable above other absolute decor */
        }

        .spill {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: 100px;
            text-decoration: none;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            position: relative;
            z-index: 50;
            cursor: pointer;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, filter 0.3s ease;
        }

        .spill:hover {
            transform: translateY(-4px) scale(1.08);
            filter: brightness(1.15);
        }

        .sp-reddit {
            background: #FF4500;
            box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
        }

        .sp-twitter {
            background: #000000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .sp-linkedin {
            background: #0077B5;
            box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
        }

        .sp-instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
        }

        .sp-facebook {
            background: #1877F2;
            box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
        }

        .sp-youtube {
            background: #FF0000;
            box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
        }

        .social-tagline {
            margin-top: 48px;
            font-size: 14px;
            color: var(--fg-subtle);
            letter-spacing: 1px;
        }

        .social-tagline strong {
            color: var(--yellow);
        }

        /* ═══ PARTNER SECTION ═══ */
        .partner-S {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg), var(--bg))
        }

        .partner-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 56px
        }

        .pcard {
            border-radius: 10px;
            padding: 44px 36px;
            border: 1px solid;
            position: relative;
            overflow: hidden;
            transition: .3s
        }

        .pcard:hover {
            transform: translateY(-4px)
        }

        .pcard::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: .3s
        }

        .pcard:hover::before {
            opacity: 1
        }

        .pdev {
            background: linear-gradient(145deg, rgba(173, 255, 47, .06), rgba(0, 229, 255, .03));
            border-color: rgba(173, 255, 47, .18)
        }

        .pdev:hover {
            box-shadow: 0 30px 80px rgba(173, 255, 47, .07)
        }

        .pdev::before {
            background: linear-gradient(145deg, rgba(173, 255, 47, .03), transparent)
        }

        .pbuild {
            background: linear-gradient(145deg, rgba(191, 95, 255, .07), rgba(255, 45, 120, .03));
            border-color: rgba(191, 95, 255, .18)
        }

        .pbuild:hover {
            box-shadow: 0 30px 80px rgba(191, 95, 255, .08)
        }

        .pbuild::before {
            background: linear-gradient(145deg, rgba(191, 95, 255, .03), transparent)
        }

        .pc-tag {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px
        }

        .pc-tag::before {
            content: '';
            width: 22px;
            height: 2px;
            display: block
        }

        .pdev .pc-tag {
            color: var(--lime)
        }

        .pdev .pc-tag::before {
            background: var(--lime)
        }

        .pbuild .pc-tag {
            color: var(--purple)
        }

        .pbuild .pc-tag::before {
            background: var(--purple)
        }

        .pc-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: clamp(34px, 4vw, 52px);
            line-height: .92;
            margin-bottom: 14px
        }

        .pc-sub {
            font-size: 16px;
            color: var(--fg-muted);
            line-height: 1.75;
            margin-bottom: 26px;
            font-weight: 400
        }

        .pc-feats {
            display: flex;
            flex-direction: column;
            gap: 9px;
            margin-bottom: 28px
        }

        .pc-feat {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 14px;
            color: var(--fg-muted)
        }

        .pf-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            min-width: 5px
        }

        .pdev .pf-dot {
            background: var(--lime)
        }

        .pbuild .pf-dot {
            background: var(--purple)
        }

        /* ═══ FINAL CTA ═══ */
        .fcta-S {
            padding: 140px 0;
            text-align: center;
            position: relative;
            overflow: hidden
        }

        #ctaC {
            position: absolute;
            inset: 0
        }

        .fcta-inner {
            position: relative;
            z-index: 5
        }

        .fcta-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 5px;
            color: var(--lime);
            text-transform: uppercase;
            margin-bottom: 20px;
            animation: none
        }

        .fcta-h {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: clamp(64px, 13vw, 160px);
            line-height: .9;
            letter-spacing: 4px;
            margin-bottom: 18px
        }

        .fh1 {
            display: block;
            color: var(--fg-faint)
        }

        .fh2 {
            display: block;
            background: linear-gradient(135deg, var(--yellow), var(--orange), var(--pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 60px rgba(255, 107, 53, .5))
        }

        .fh3 {
            display: block;
            color: var(--fg);
            text-shadow: 0 0 60px rgba(173, 255, 47, .3)
        }

        .fcta-sub {
            font-size: 20px;
            font-weight: 400;
            color: var(--fg-muted);
            max-width: 460px;
            margin: 0 auto 40px;
            line-height: 1.6
        }

        .fcta-btns {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 48px
        }

        /* Over anim */
        .over-row {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-bottom: 14px
        }

        .orb {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid rgba(255, 230, 0, .15);
            background: rgba(255, 230, 0, .04);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 22px;
            color: rgba(255, 230, 0, .25);
            transition: .4s
        }

        .orb.on {
            border-color: var(--yellow);
            background: rgba(255, 230, 0, .1);
            color: var(--yellow);
            box-shadow: 0 0 20px rgba(255, 230, 0, .3), inset 0 0 15px rgba(255, 230, 0, .05)
        }

        .perfect-txt {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            letter-spacing: 4px;
            color: var(--fg-faint);
            text-transform: uppercase
        }

        /* ═══ FOOTER ═══ */
        footer {
            background: var(--bg);
            border-top: 1px solid rgba(var(--fg-rgb), .05);
            padding: 56px 0 28px
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px
        }

        .fb-logo {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 24px;
            letter-spacing: 2px;
            margin-bottom: 10px
        }

        .fb-logo span {
            color: var(--lime)
        }

        .fb-p {
            font-size: 13px;
            color: var(--fg-muted);
            line-height: 1.65;
            max-width: 250px;
            margin-bottom: 14px;
            font-weight: 400
        }

        .fb-tags {
            display: flex;
            gap: 7px;
            flex-wrap: wrap
        }

        .fbtag {
            padding: 5px 12px;
            border-radius: 4px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.5px;
            border: 1px solid;
            transition: transform .2s, box-shadow .2s;
            cursor: pointer;
        }

        .fbtag:hover {
            transform: translateY(-2px);
        }

        .fc-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--fg-faint);
            text-transform: uppercase;
            margin-bottom: 12px
        }

        .fc-links {
            display: flex;
            flex-direction: column;
            gap: 8px
        }

        .fc-link {
            font-size: 13px;
            color: var(--fg-subtle);
            text-decoration: none;
            transition: .2s;
            font-weight: 400
        }

        .fc-link:hover {
            color: var(--fg)
        }

        .footer-seo {
            margin-top: 64px;
            padding-top: 40px;
            border-top: 1px solid rgba(var(--fg-rgb), .05);
            color: var(--fg-subtle);
            font-size: 11px;
            line-height: 1.6;
            text-align: left;
            margin-bottom: 24px;
        }

        .footer-seo strong {
            display: block;
            margin-bottom: 8px;
            color: var(--fg-muted);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(var(--fg-rgb), .05);
            padding-top: 22px;
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--fg-subtle);
            flex-wrap: wrap;
            gap: 8px
        }

        .f-legal {
            display: flex;
            gap: 18px
        }

        .f-legal a {
            color: var(--fg-subtle);
            text-decoration: none;
            transition: .2s
        }

        .f-legal a:hover {
            color: var(--fg)
        }

        /* ═══ RESPONSIVE ═══ */
        /* ═══ RESPONSIVE — 1024px ═══ */
        @media(max-width:1024px) {
            .houses-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .arenas-row {
                grid-template-columns: 1fr
            }

            .game-layout {
                grid-template-columns: 1fr;
                gap: 40px
            }

            .awards-grid {
                grid-template-columns: 1fr 1fr
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr
            }

            .season-track {
                flex-direction: column;
                gap: 16px
            }

            .season-track::before {
                display: none
            }

            .snode {
                flex-direction: row;
                align-items: flex-start;
                text-align: left;
                gap: 14px
            }

            .sn-week,
            .sn-name,
            .sn-desc {
                text-align: left
            }

            .vs-wrap {
                grid-template-columns: 1fr
            }

            .vs-mid {
                flex-direction: row;
                justify-content: flex-start;
                padding: 10px 16px;
                border: none;
                border-top: 1px solid var(--border);
                border-bottom: 1px solid var(--border);
                min-width: auto
            }

            .vs-mid-arrow {
                margin: 0 4px
            }

            .vs-code .vs-head,
            .vs-code .vsr {
                border-left: none
            }

            .vs-dividers {
                flex-direction: row
            }

            .partner-grid {
                grid-template-columns: 1fr
            }

            .houses-intro {
                grid-template-columns: 1fr
            }

            .quotes {
                grid-template-columns: 1fr
            }

            .stats-nums {
                grid-template-columns: 1fr 1fr
            }

            .awards-intro-grid {
                grid-template-columns: 1fr !important
            }

            .awards-intro-grid .rv {
                padding-top: 0 !important
            }
        }

        /* ═══ RESPONSIVE — 768px ═══ */
        @media(max-width:768px) {
            body {
                cursor: auto
            }

            #CUR,
            #CUR2 {
                display: none
            }

            #NAV {
                padding: 0 16px;
                height: 85px
            }

            .nlinks {
                display: none;
            }

            #navHamburger {
                display: flex
            }

            .nav-right {
                gap: 8px
            }

            .hero {
                min-height: 100svh;
                padding-top: 100px
            }

            .W,
            .WW {
                padding: 0 16px
            }

            .hero-inner {
                padding: 16px 16px;
            }

            /* Hero title responsive scaling */
            .hh1 {
                font-size: clamp(14px, 3.5vw, 18px);
                letter-spacing: 2px
            }

            .hh3 {
                font-size: clamp(32px, 7vw, 60px);
                letter-spacing: 3px
            }

            .hero-scoreboard {
                flex-wrap: wrap;
                justify-content: center;
                max-width: 100%
            }

            .hsb-cell {
                min-width: 90px;
                flex: 1
            }

            .hero-ctas {
                flex-direction: column;
                align-items: center;
                gap: 10px
            }

            .btn-fire,
            .btn-ghost {
                width: 100%;
                max-width: 320px;
                justify-content: center
            }

            /* Section padding reduction */
            .pitch-section,
            .arenas-S,
            .game-S,
            .houses-S,
            .awards-S,
            .season-S,
            .stats-S,
            .partner-S,
            .fcta-S {
                padding: 64px 0
            }

            .houses-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px
            }

            .awards-grid {
                grid-template-columns: 1fr
            }

            .stats-nums {
                grid-template-columns: 1fr 1fr
            }

            .footer-grid {
                grid-template-columns: 1fr
            }

            .arenas-row {
                grid-template-columns: 1fr;
                gap: 10px
            }

            .ac {
                padding: 28px 20px
            }

            .ac-name {
                font-size: 36px
            }

            .ac-emoji {
                font-size: 48px
            }

            /* Awards intro stacked */
            [style*="grid-template-columns:1fr 1fr"][style*="gap:56px"] {
                display: block !important
            }

            .over-row {
                gap: 6px
            }

            .orb {
                width: 40px;
                height: 40px;
                font-size: 18px
            }

            .fcta-btns {
                flex-direction: column;
                align-items: center
            }

            .fcta-btns a {
                width: 100%;
                max-width: 320px;
                justify-content: center
            }

            .snum-n {
                font-size: 48px
            }

            .snum {
                padding: 28px 16px
            }

            .game-langs {
                gap: 6px
            }

            .gc-hud {
                flex-wrap: wrap;
                gap: 8px
            }

            .game-layout {
                gap: 32px
            }

            /* Season nodes compact */
            .sn-circle {
                min-width: 52px;
                width: 52px;
                height: 52px;
                font-size: 20px
            }

            /* Partner cards */
            .pcard {
                padding: 32px 24px
            }

            /* Vs table: hide mid column arrows on mobile — use row label instead */
            .vs-mid {
                display: none
            }

            .vs-wrap {
                grid-template-columns: 1fr
            }

            .vs-code .vs-head {
                border-top: 2px solid var(--border-strong)
            }

            /* Footer */
            .footer-grid {
                gap: 32px
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        /* ═══ RESPONSIVE — 480px ═══ */
        @media(max-width:480px) {
            .houses-grid {
                grid-template-columns: 1fr
            }

            .hero-live {
                font-size: 9px;
                padding: 6px 14px
            }

            .stats-nums {
                grid-template-columns: 1fr 1fr
            }

            .hsb-num {
                font-size: 28px
            }

            .hsb-cell {
                padding: 12px 14px
            }

            .over-row {
                gap: 4px
            }

            .orb {
                width: 34px;
                height: 34px;
                font-size: 14px
            }

            .gc-choices {
                gap: 8px
            }

            .hero-tags {
                gap: 8px
            }

            .htag {
                font-size: 9px;
                padding: 6px 12px
            }
        }

        /* ═══ VERY SMALL SCREENS — gcard squeeze ═══ */
        @media(max-width:400px) {
            .gcard {
                max-height: calc(100svh - 70px)
            }

            .gc-hud {
                padding: 8px 12px
            }

            .gc-score-big {
                font-size: 18px
            }

            .gc-body {
                padding: 10px 12px
            }

            .gc-title {
                font-size: 17px;
                padding: 2px 0
            }

            .gc-subtitle {
                font-size: 11px;
                margin-bottom: 8px
            }

            .gc-term {
                margin-bottom: 8px
            }

            .gc-code {
                font-size: 11px;
                max-height: 110px
            }

            .gc-choices {
                margin-bottom: 8px
            }

            .gc-choice {
                padding: 10px 6px
            }

            .gcc-label {
                font-size: 15px
            }

            .gc-controls {
                padding: 4px 10px
            }

            .gc-ctrl-btn {
                font-size: 9px;
                padding: 3px 7px;
                gap: 4px
            }

            .gc-ctrl-btn svg {
                width: 11px;
                height: 11px
            }
        }

        /* ═══ OS-LEVEL DARK MODE FALLBACK ═══ */
        @media(prefers-color-scheme: dark) {
            :root:not(body.light-mode) {
                color-scheme: dark;
            }
        }

        /* ═══ REDUCED MOTION ═══ */
        @media(prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important
            }

            .rv,
            .rl,
            .rr,
            .rs {
                opacity: 1;
                transform: none
            }
        }

        /* ═══ PRINT ═══ */
        @media print {

            #NAV,
            #CUR,
            #CUR2,
            #bgCanvas,
            #ctaC,
            .ticker {
                display: none
            }

            body {
                background: #fff;
                color: #000
            }
        }

        @media(min-width:769px) {
            .nav-live-badge {
                display: flex !important;
            }
        }

        @keyframes pulseRed {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(204, 34, 0, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 6px rgba(204, 34, 0, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(204, 34, 0, 0);
            }
        }

        /* hljs: transparent bg so .gc-term controls the container look */
        .hljs {
            background: transparent !important;
            padding: 0 !important;
        }

        /* ── Game card light-mode overrides ── */
        body.light-mode .gc-hud {
            border-bottom-color: rgba(0, 0, 0, .08);
        }

        body.light-mode .gc-teamname {
            color: rgba(0, 0, 0, .45);
        }

        body.light-mode .gc-sep {
            color: rgba(0, 0, 0, .2);
        }

        body.light-mode .gc-over-label {
            color: rgba(0, 0, 0, .35);
        }

        body.light-mode .gcard {
            box-shadow: 0 20px 60px rgba(0, 0, 0, .10), 0 0 0 1px rgba(0, 0, 0, .06);
        }

        body.light-mode .gc-title {
            text-shadow: 0 2px 12px rgba(180, 100, 0, .15);
        }

        /* ── Match-over scorecard — light mode ── */
        body.light-mode {
            --gmo-overlay-bg: radial-gradient(ellipse at 50% 20%, #1a0533 0%, #0d0118 100%);
            --gmo-hit-bg: #475569;
            --gmo-brand-color: #fcd34d;
            --gmo-brand-sub-color: rgba(252, 211, 77, .6);
        }

        body.light-mode .gmo-result-title {
            background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 50%, #d97706 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.light-mode .gmo-result-title.gmo-rt--out {
            background: linear-gradient(135deg, #fca5a5, #f43f5e, #be123c);
            -webkit-background-clip: text;
            background-clip: text;
        }

        body.light-mode .gmo-result-title.gmo-rt--perfect {
            background: linear-gradient(135deg, #d9f99d, #4ade80, #22d3ee);
            -webkit-background-clip: text;
            background-clip: text;
        }

        body.light-mode .gmo-player-name {
            color: #fff
        }

        body.light-mode .gmo-stat-val {
            color: #fff
        }

        body.light-mode .gmo-ego {
            color: rgba(251, 191, 36, .75)
        }

        body.light-mode .gmo-btn--play {
            color: #fbbf24;
            border-color: rgba(251, 191, 36, .3);
            background: rgba(255, 255, 255, .08);
        }

        body.light-mode .gmo-btn--change {
            color: rgba(255, 255, 255, .45)
        }

        body.light-mode .gmo-card {
            background: rgba(255, 255, 255, .07);
            border-bottom-color: rgba(255, 255, 255, .1)
        }

        body.light-mode .gmo-stats {
            background: rgba(0, 0, 0, .3);
            border-color: rgba(255, 255, 255, .1)
        }

        body.light-mode .gmo-divider {
            background: rgba(255, 255, 255, .1)
        }

        body.light-mode .gmo-score-lbl,
        body.light-mode .gmo-tracker-lbl,
        body.light-mode .gmo-stat-lbl,
        body.light-mode .gmo-over-lbl {
            color: rgba(255, 255, 255, .4)
        }

        body.light-mode .gmo-slash {
            color: rgba(255, 255, 255, .2)
        }