﻿
    /* â”€â”€â”€ Tokens (mirrors app DARK_THEME) â”€â”€â”€ */
    :root {
      --bg: #0A0C0F;
      --surface: #1A1F27;
      --surface-2: #131820;
      --cell-bg: #2C343F;
      --border: #252D38;
      --accent: #00E676;
      --accent-dim: #00b85f;
      --gold: #F5A623;
      --near: #FACC15;
      --red: #DA2020;
      --text: #F0F2F5;
      --text-sec: #9BA4B5;
      --text-dim: #6B7585;

      --radius-sm: 8px;
      --radius: 14px;
      --radius-lg: 22px;

      --max-w: 1180px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: var(--bg);
      background-image:
        radial-gradient(circle at 1.2px 1.2px, rgba(180, 195, 215, 0.18) 1.2px, transparent 0),
        linear-gradient(180deg, rgba(0, 230, 118, 0.02) 0%, transparent 30%, transparent 70%, rgba(245, 166, 35, 0.015) 100%);
      background-size: 26px 26px, 100% 100%;
      background-attachment: fixed;
      color: var(--text);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      position: relative;
    }
    /* Slow-drifting aurora glow behind everything */
    body::before {
      content: "";
      position: fixed; inset: -10%;
      z-index: -1;
      background:
        radial-gradient(ellipse 780px 540px at 12% 18%, rgba(0, 230, 118, 0.06), transparent 65%),
        radial-gradient(ellipse 640px 480px at 88% 35%, rgba(245, 166, 35, 0.035), transparent 65%),
        radial-gradient(ellipse 600px 460px at 50% 90%, rgba(0, 230, 118, 0.045), transparent 65%);
      filter: blur(30px);
      pointer-events: none;
      animation: bgDrift 28s ease-in-out infinite;
    }
    @keyframes bgDrift {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33%      { transform: translate(40px, -30px) scale(1.05); }
      66%      { transform: translate(-30px, 35px) scale(0.97); }
    }
    /* Faint diagonal stripe pattern overlay â€” very subtle pitch-like texture */
    body::after {
      content: "";
      position: fixed; inset: 0;
      z-index: -1;
      background-image: repeating-linear-gradient(
        135deg,
        transparent 0,
        transparent 80px,
        rgba(255, 255, 255, 0.008) 80px,
        rgba(255, 255, 255, 0.008) 81px
      );
      pointer-events: none;
    }

    /* All titles force font-weight 700 */
    h1, h2, h3, h4, h5, h6 { font-weight: 700; }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* â”€â”€â”€ Layout â”€â”€â”€ */
    .wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

    /* â”€â”€â”€ Header â”€â”€â”€ */
    header {
      position: sticky; top: 0; z-index: 50;
      background: transparent;
      backdrop-filter: blur(0);
      -webkit-backdrop-filter: blur(0);
      border-bottom: 1px solid transparent;
      transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
    }
    header.scrolled {
      background: rgba(10, 12, 15, 0.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom-color: var(--border);
    }
    .nav {
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
      gap: 20px;
    }
    .nav-left { display: flex; align-items: center; gap: 16px; min-width: 0; }
    .logo {
      display: inline-flex; align-items: center;
      flex-shrink: 0;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    }
    .logo-img {
      height: 35px; width: auto;
      display: block;
      filter: drop-shadow(0 0 18px rgba(0, 230, 118, 0.18));
    }
    .logo:hover {
      transform: scale(1.04);
      filter: drop-shadow(0 0 24px rgba(0, 230, 118, 0.4));
    }
    /* Larger logo in the footer hero */
    .footer-hero-left .logo-img { height: 45px; }

    /* Live match pill next to logo */
    .header-live {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(218, 32, 32, 0.08);
      border: 1px solid rgba(218, 32, 32, 0.32);
      color: var(--text);
      padding: 5px 12px 5px 10px;
      border-radius: 999px;
      font-size: 12px; font-weight: 700;
      cursor: default;
      transition: border-color 0.2s, transform 0.2s, background 0.2s;
      letter-spacing: -0.005em;
    }
    .header-live:hover {
      background: rgba(218, 32, 32, 0.12);
      border-color: rgba(218, 32, 32, 0.55);
      transform: translateY(-1px);
    }
    .header-live::before {
      content: ""; width: 6px; height: 6px;
      border-radius: 50%; background: var(--red);
      box-shadow: 0 0 0 0 rgba(218,32,32,0.6);
      animation: hlPulse 1.5s ease-in-out infinite;
      display: inline-block; flex-shrink: 0;
    }
    @keyframes hlPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(218,32,32,0.55); }
      50%      { box-shadow: 0 0 0 5px rgba(218,32,32,0); }
    }
    .hl-text { color: var(--text-sec); }
    .hl-text b { color: var(--text); font-weight: 800; font-variant-numeric: tabular-nums; }
    .hl-min {
      color: var(--red); font-weight: 800;
      font-variant-numeric: tabular-nums;
      letter-spacing: 0;
    }
    @media (max-width: 1080px) { .header-live { display: none; } }

    .nav-links {
      display: flex; gap: 28px; font-size: 14px; color: var(--text-sec);
      flex-shrink: 0;
    }
    .nav-links a {
      position: relative;
      padding: 6px 0;
      transition: color 0.18s;
    }
    .nav-links a::after {
      content: ""; position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), #6effb0);
      transform: scaleX(0); transform-origin: left center;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      border-radius: 2px;
      box-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-cta {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--accent); color: #001b0c;
      padding: 9px 18px; border-radius: 999px;
      font-weight: 700; font-size: 13.5px;
      transition: transform .15s ease, box-shadow .15s ease;
      position: relative; overflow: hidden;
      flex-shrink: 0;
      isolation: isolate;
    }
    .nav-cta::before {
      content: ""; position: absolute;
      top: 0; left: -120%;
      width: 80%; height: 100%;
      background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
      animation: ctaShine 5s ease-in-out infinite;
      pointer-events: none;
      z-index: -1;
    }
    @keyframes ctaShine {
      0%, 50%   { left: -120%; }
      80%, 100% { left: 130%; }
    }
    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(0, 230, 118, 0.35);
    }
    .menu-toggle {
      display: none;
      flex-direction: column; justify-content: center; gap: 4px;
      width: 42px; height: 42px; padding: 0 11px;
      border: 1px solid var(--border); border-radius: 10px;
      background: rgba(255, 255, 255, 0.03);
      cursor: pointer; flex-shrink: 0;
    }
    .menu-toggle span {
      display: block; height: 2px; width: 100%;
      background: var(--text); border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.2s ease;
    }
    header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
    header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    @media (max-width: 760px) {
      .nav { gap: 12px; }
      .nav-left { margin-right: auto; }
      .logo-img { height: 30px; }
      .nav-cta { padding: 8px 14px; font-size: 12.5px; }
      .menu-toggle { display: flex; }
      .nav-links {
        display: flex; flex-direction: column; gap: 0;
        position: fixed; top: 64px; left: 0; right: 0;
        background: rgba(10, 12, 15, 0.97);
        backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        padding: 6px 24px 18px;
        max-height: calc(100vh - 64px); overflow-y: auto;
        transform: translateY(-10px); opacity: 0; pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
        z-index: 49;
      }
      header.menu-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
      .nav-links a { padding: 15px 2px; font-size: 16px; border-bottom: 1px solid var(--border); }
      .nav-links a:last-child { border-bottom: none; }
      .nav-links a::after { display: none; }
    }

    /* â”€â”€â”€ Hero â”€â”€â”€ */
    .hero {
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute; inset: -200px -200px auto -200px; height: 700px;
      background:
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(0, 230, 118, 0.18), transparent 70%),
        radial-gradient(ellipse 500px 350px at 85% 10%, rgba(245, 166, 35, 0.10), transparent 70%);
      filter: blur(40px);
      pointer-events: none; z-index: 0;
    }
    .hero-grid {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1.05fr 1fr;
      gap: 56px; align-items: center;
    }
    @media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0, 230, 118, 0.10);
      border: 1px solid rgba(0, 230, 118, 0.25);
      color: var(--accent);
      padding: 6px 12px; border-radius: 999px;
      font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
      margin-bottom: 22px;
    }
    .eyebrow .dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
      box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.2);
      animation: pulseDot 3s infinite;
    }
    @keyframes pulseDot {
      0%, 100% { box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.2); }
      50% { box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
    }

    h1 {
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1.05; letter-spacing: -0.025em;
      margin-bottom: 22px;
    }
    h1 .accent {
      background: linear-gradient(135deg, var(--accent) 0%, #6effb0 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .lede {
      font-size: 18.5px; color: var(--text); max-width: 540px;
      margin-bottom: 28px;
    }

    .compliance-strip {
      display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px 14px;
      font-size: 13px; color: var(--text);
      margin-bottom: 32px;
    }
    .compliance-strip span { display: inline-flex; align-items: center; gap: 6px; }
    .check {
      width: 14px; height: 14px; border-radius: 50%;
      background: rgba(0, 230, 118, 0.15);
      color: var(--accent);
      display: grid; place-items: center; font-size: 9px; font-weight: 900;
    }

    .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 24px; border-radius: 999px;
      font-weight: 700; font-size: 15px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      cursor: pointer; border: 0;
      position: relative; overflow: hidden;
      isolation: isolate;
    }
    .btn-primary { background: var(--accent); color: #001b0c; }
    .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(0, 230, 118, 0.32); }
    .btn-ghost {
      background: var(--surface); color: var(--text);
      border: 1px solid var(--border);
    }
    .btn-ghost:hover { background: var(--surface-2); border-color: #38424f; }

    /* Shine animation shared across all green/accent buttons */
    .btn-primary::before,
    .nm-cta::before {
      content: ""; position: absolute;
      top: 0; left: -120%;
      width: 80%; height: 100%;
      background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
      animation: ctaShine 5s ease-in-out infinite;
      z-index: -1;
      pointer-events: none;
    }
    .nm-cta { position: relative; overflow: hidden; isolation: isolate; }

    /* â”€â”€â”€ Hero showcase (replaces phone mockup) â”€â”€â”€ */
    .hero-stage {
      position: relative;
      display: grid; place-items: center;
      min-height: 520px;
    }
    .hero-showcase {
      width: 100%; max-width: 420px;
      background: radial-gradient(ellipse 380px 240px at 50% 0%, rgba(0,230,118,0.14), transparent 70%), var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 24px 24px 20px;
      position: relative; z-index: 2;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
      animation: nmFloat 8s ease-in-out infinite;
    }
    .hero-showcase::before {
      content: ""; position: absolute; inset: -2px;
      background: linear-gradient(135deg, rgba(0,230,118,0.22), transparent 50%, rgba(245,166,35,0.14));
      border-radius: 26px; z-index: -1;
      filter: blur(22px); opacity: 0.3;
    }
    .hs-head {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 11.5px; font-weight: 800;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--text); margin-bottom: 20px;
    }
    .hs-live {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(218, 32, 32, 0.18);
      color: var(--red);
      padding: 4px 10px; border-radius: 999px;
      font-size: 10.5px; letter-spacing: 0.10em;
    }
    .hs-live::before {
      content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--red);
      animation: livePulse 2.4s ease-in-out infinite;
    }
    .hs-live b { font-weight: 800; font-variant-numeric: tabular-nums; }
    .hs-teams {
      display: grid; grid-template-columns: 1fr auto 1fr;
      align-items: center; gap: 14px;
      margin-bottom: 20px;
    }
    .hs-team { display: flex; flex-direction: column; align-items: center; gap: 9px; }
    .hs-team img {
      width: 56px; height: 56px; object-fit: contain;
      filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
      animation: crestPulse 5s ease-in-out infinite;
    }
    .hs-team.away img { animation-delay: 2.5s; }
    .hs-team .hs-tname {
      font-size: 13px; font-weight: 800; color: var(--text);
      letter-spacing: -0.005em;
    }
    .hs-score {
      font-size: 32px; font-weight: 900;
      color: var(--text);
      letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums;
      line-height: 1;
    }
    .hs-score .hs-dash { color: var(--text-dim); margin: 0 8px; font-weight: 600; }
    .hs-divider { height: 1px; background: var(--border); margin: 0 0 14px; }
    .hs-board-head {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 10px;
      font-size: 10.5px; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text);
    }
    .hs-board-stats b {
      color: var(--accent); font-size: 13px; font-weight: 900;
      font-variant-numeric: tabular-nums;
    }
    .hs-board {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 5px; margin-bottom: 16px;
    }
    .hs-cell {
      background: var(--cell-bg);
      border-radius: 6px;
      aspect-ratio: 1;
      border: 1.5px solid transparent;
      transition: background 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s;
      display: grid; place-items: center;
      padding: 4px; text-align: center;
      font-size: 10.5px; font-weight: 600; line-height: 1.18;
      color: var(--text-sec);
      overflow: hidden;
    }
    .hs-cell .hs-q { display: block; }
    .hs-cell.hit {
      background: rgba(0, 230, 118, 0.30);
      border-color: var(--accent);
      box-shadow: 0 0 10px rgba(0, 230, 118, 0.45);
      color: var(--accent);
    }
    .hs-cell.miss {
      background: rgba(218, 32, 32, 0.18);
      border-color: rgba(218, 32, 32, 0.5);
      color: #ff6b6b;
    }
    .hs-cell.win {
      background: rgba(0, 230, 118, 0.40);
      border-color: var(--accent);
      color: var(--accent);
      box-shadow: 0 0 16px rgba(0, 230, 118, 0.5);
      animation: rowGlow 1.5s ease-in-out infinite;
    }
    .hs-cell.justHit {
      animation: bingoSlotIn 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }
    .hs-cell.justMiss {
      animation: cellMiss 0.5s ease both;
    }
    @keyframes cellMiss {
      0% { transform: scale(1); }
      30% { transform: scale(0.92); }
      100% { transform: scale(1); }
    }
    .hs-footer {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 13px; font-weight: 700;
      padding-top: 2px;
    }
    .hs-rank { display: inline-flex; align-items: center; gap: 8px; }
    .hs-rank-num {
      color: var(--text); font-size: 18px; font-weight: 900;
      font-variant-numeric: tabular-nums;
    }
    .hs-rank-delta {
      background: rgba(0, 230, 118, 0.18);
      color: var(--accent);
      padding: 3px 8px; border-radius: 6px;
      font-size: 11.5px; font-weight: 800;
    }
    .hs-xp {
      display: inline-flex; align-items: center; gap: 7px;
      color: var(--text); font-size: 13px;
    }
    .hs-xp .xp-icon { color: var(--gold); font-size: 14px; }
    .hs-xp b {
      color: var(--accent); font-weight: 900; font-size: 14px;
      font-variant-numeric: tabular-nums;
    }
    .hs-bingo-banner {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%) scale(0.5);
      background: #181c22;
      color: var(--accent);
      padding: 20px 32px;
      border-radius: 18px;
      font-weight: 900; text-align: center;
      border: 1.5px solid rgba(0, 230, 118, 0.5);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 34px rgba(0, 230, 118, 0.32);
      opacity: 0; pointer-events: none;
      transition: opacity .3s, transform .5s cubic-bezier(0.34, 1.56, 0.64, 1);
      z-index: 6;
    }
    .hs-bingo-banner.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    .hs-bingo-banner .hb-title { font-size: 30px; letter-spacing: 0.04em; color: var(--accent); text-shadow: 0 0 22px rgba(0, 230, 118, 0.6); }
    .hs-bingo-banner .hb-sub { font-size: 12px; margin-top: 6px; font-weight: 700; color: var(--text-sec); }

    /* Confetti burst */
    .confetti-burst { position: absolute; inset: 0; pointer-events: none; overflow: visible; z-index: 7; }
    .confetti-burst i {
      position: absolute; left: 50%; top: 48%;
      width: 9px; height: 14px;
      background: var(--c, var(--accent));
      border-radius: 2px; opacity: 0;
      animation: confettiFly 1.1s ease-out forwards;
      animation-delay: var(--delay, 0s);
    }
    @keyframes confettiFly {
      0%   { opacity: 1; transform: translate(-50%, -50%) rotate(0deg) scale(1); }
      100% { opacity: 0; transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, 0px))) rotate(var(--r, 360deg)) scale(0.5); }
    }

    /* Floating orbiting decorative cells around the hero card */
    .hero-orbit {
      position: absolute;
      background: rgba(0, 230, 118, 0.10);
      border: 1.5px solid rgba(0, 230, 118, 0.4);
      border-radius: 14px;
      display: grid; place-items: center;
      z-index: 1;
      box-shadow: 0 0 26px rgba(0, 230, 118, 0.2);
      backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
      animation: orbitFloat 7s ease-in-out infinite;
    }
    .hero-orbit.oc1 { top: 2%; right: -8px; width: 64px; height: 64px; font-size: 26px; animation-delay: 0s; }
    .hero-orbit.oc2 { bottom: 4%; left: -16px; width: 60px; height: 60px; font-size: 22px; animation-delay: 1.8s; }
    .hero-orbit.oc3 {
      top: 36%; right: -32px; width: 46px; height: 46px;
      font-size: 18px; animation-delay: 3.2s;
      color: var(--accent); font-weight: 800;
    }
    .hero-orbit.oc4 {
      bottom: 30%; left: -28px; width: 46px; height: 46px;
      font-size: 18px; animation-delay: 5s;
      color: var(--gold); font-weight: 800;
      background: rgba(245, 166, 35, 0.10);
      border-color: rgba(245, 166, 35, 0.4);
      box-shadow: 0 0 26px rgba(245, 166, 35, 0.22);
    }

    /* â”€â”€â”€ Old phone mockup (unused, retained for compatibility) â”€â”€â”€ */
    .phone-stage { position: relative; display: grid; place-items: center; }
    .phone {
      width: 320px; height: 620px;
      background: #000;
      border-radius: 42px;
      padding: 9px;
      box-shadow:
        0 0 0 1.5px #2a3340,
        0 40px 90px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(0, 230, 118, 0.10);
      position: relative;
    }
    .phone::before {
      content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
      width: 100px; height: 22px; background: #000; border-radius: 999px;
      z-index: 3;
    }
    .phone-screen {
      width: 100%; height: 100%;
      background: var(--bg);
      border-radius: 36px; overflow: hidden;
      display: flex; flex-direction: column;
      position: relative;
    }

    /* Status bar */
    .bingo-statusbar {
      height: 36px; padding: 12px 22px 0;
      display: flex; align-items: flex-end; justify-content: space-between;
      font-size: 11px; color: var(--text); font-weight: 600;
      flex-shrink: 0;
    }

    /* Top header: back arrow + title */
    .bingo-tophdr {
      padding: 8px 16px 10px;
      display: flex; align-items: center; gap: 12px;
      flex-shrink: 0;
    }
    .back-arrow {
      color: var(--accent); font-size: 22px; font-weight: 700; line-height: 1;
    }
    .tophdr-text { line-height: 1.15; }
    .tophdr-text .title { font-size: 16px; font-weight: 700; color: var(--text); }
    .tophdr-text .subtitle { font-size: 11px; color: var(--accent); font-weight: 600; }

    /* Match card */
    .bingo-matchcard {
      margin: 0 14px; padding: 12px 14px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      flex-shrink: 0;
    }
    .matchcard-head {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em;
      color: var(--text-dim);
      margin-bottom: 10px;
    }
    .matchcard-head .legends { color: #A78BFA; }
    .live-pill {
      background: transparent; color: var(--red);
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 10px; font-weight: 800; letter-spacing: 0.04em;
    }
    .live-pill::before {
      content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red);
      animation: livePulse 2.4s ease-in-out infinite;
    }
    @keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

    .matchcard-teams {
      display: grid; grid-template-columns: 1fr auto 1fr;
      align-items: center; gap: 8px;
    }
    .team {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 700;
    }
    .team.away { justify-content: flex-end; }
    .team img { width: 28px; height: 28px; object-fit: contain; }
    .match-score-block { text-align: center; }
    .match-score {
      font-size: 22px; font-weight: 800; letter-spacing: -0.01em;
      line-height: 1; white-space: nowrap;
    }
    .match-score .dash { color: var(--text-dim); margin: 0 4px; font-weight: 600; }
    .match-min {
      font-size: 10px; color: var(--text-sec); margin-top: 4px; font-weight: 600;
    }

    /* Tabs */
    .bingo-tabs-top {
      padding: 12px 14px 0;
      display: flex; gap: 18px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }
    .ttab {
      padding: 0 0 10px; position: relative;
      font-size: 12px; font-weight: 700; color: var(--text-dim);
      display: inline-flex; align-items: center; gap: 6px;
      cursor: default;
    }
    .ttab.active { color: var(--accent); }
    .ttab.active::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
      height: 2px; background: var(--accent); border-radius: 2px;
    }
    .ttab .badge {
      background: var(--red); color: #fff;
      min-width: 16px; height: 16px; padding: 0 4px;
      border-radius: 999px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 9.5px; font-weight: 800;
    }

    /* Match XP card */
    .matchxp {
      margin: 12px 14px 0;
      padding: 11px 14px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      display: flex; align-items: center; gap: 10px;
      flex-shrink: 0;
    }
    .matchxp .xp-ico {
      width: 22px; height: 22px; border-radius: 50%;
      background: rgba(245, 166, 35, 0.16);
      color: var(--gold);
      display: grid; place-items: center; font-size: 13px;
    }
    .matchxp .xp-label { flex: 1; font-size: 13px; font-weight: 700; }
    .matchxp .xp-value {
      color: var(--accent); font-weight: 800; font-size: 16px;
    }
    .matchxp .xp-value .xp-unit { font-size: 10px; color: var(--text-sec); margin-left: 2px; font-weight: 700; }

    /* The 4Ã—4 board */
    .bingo-board {
      padding: 12px 14px 14px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 6px;
      flex-shrink: 0;
    }
    .bingo-cell {
      background: var(--cell-bg);
      border: 1.5px solid transparent;
      border-radius: 10px;
      padding: 4px 3px;
      display: flex; align-items: center; justify-content: center;
      font-size: 9.5px; color: #fff; text-align: center;
      line-height: 1.18;
      position: relative;
      transition: background .25s ease, color .25s ease;
      will-change: transform, box-shadow;
      font-weight: 600;
      aspect-ratio: 1 / 1;
      overflow: hidden;
    }
    .bingo-cell .q { display: block; }

    /* States â€” match app's tileStyle */
    .bingo-cell.hit {
      background: rgba(0, 230, 118, 0.25);
      border-color: var(--accent);
      color: var(--accent);
      box-shadow: 0 4px 12px rgba(22, 199, 132, 0.15);
    }
    .bingo-cell.justHit {
      animation: bingoSlotIn 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }
    .bingo-cell.near {
      border-color: var(--near);
      animation: nearMissPulse 3.5s ease-in-out infinite;
    }
    .bingo-cell.win {
      background: rgba(0, 230, 118, 0.35);
      border-color: var(--accent);
      color: var(--accent);
      animation: rowGlow 3s ease-in-out infinite;
    }
    .bingo-cell.idle::after {
      content: ""; position: absolute; inset: 0; border-radius: 10px;
      pointer-events: none; opacity: 0;
    }

    @keyframes bingoSlotIn {
      0%   { transform: scale(0.85) rotateY(-20deg); opacity:0; box-shadow: 0 0 0 rgba(34,197,94,0); }
      40%  { transform: scale(1.12) rotateY(0deg);  opacity:1; box-shadow: 0 0 40px rgba(34,197,94,0.8); }
      70%  { transform: scale(0.96); box-shadow: 0 0 20px rgba(34,197,94,0.4); }
      100% { transform: scale(1);   box-shadow: 0 0 12px rgba(34,197,94,0.25); }
    }
    @keyframes nearMissPulse {
      0%,100% { box-shadow: 0 0 6px rgba(250,204,21,0.15); border-color: rgba(250,204,21,0.6); }
      50%     { box-shadow: 0 0 18px rgba(250,204,21,0.35); border-color: rgba(250,204,21,0.9); }
    }
    @keyframes rowGlow {
      0%,100% { box-shadow: 0 0 0 rgba(22,199,132,0); }
      50%     { box-shadow: 0 0 24px rgba(22,199,132,0.6); }
    }

    /* Hit popup overlay */
    .hit-popup {
      position: absolute; left: 50%; top: 55%;
      transform: translate(-50%, -50%) scale(0.85);
      background: rgba(0, 230, 118, 0.96);
      color: #001b0c;
      padding: 14px 18px;
      border-radius: 14px;
      font-weight: 800;
      text-align: center;
      box-shadow: 0 12px 40px rgba(0, 230, 118, 0.45), 0 0 0 2px rgba(255,255,255,0.15) inset;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease, transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
      z-index: 5;
      min-width: 180px;
    }
    .hit-popup.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    .hit-popup .pop-ico { font-size: 28px; line-height: 1; margin-bottom: 6px; }
    .hit-popup .pop-title { font-size: 14px; }
    .hit-popup .pop-sub { font-size: 11px; opacity: 0.75; margin-top: 3px; font-weight: 600; }

    /* BINGO banner */
    .bingo-banner {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%) scale(0.5);
      background: linear-gradient(135deg, #00E676, #00b85f);
      color: #001b0c;
      padding: 18px 26px;
      border-radius: 16px;
      font-weight: 900;
      text-align: center;
      box-shadow: 0 16px 50px rgba(0, 230, 118, 0.55), 0 0 0 3px rgba(255,255,255,0.2) inset;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease, transform .5s cubic-bezier(0.34, 1.56, 0.64, 1);
      z-index: 6;
    }
    .bingo-banner.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    .bingo-banner .b-title { font-size: 22px; letter-spacing: 0.02em; }
    .bingo-banner .b-sub { font-size: 11.5px; opacity: 0.8; margin-top: 4px; font-weight: 700; }

    /* Floating result card next to phone */
    .float-card {
      position: absolute; right: -18px; bottom: 80px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 14px 16px;
      width: 200px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
      font-size: 13px;
      animation: floatY 7s ease-in-out infinite;
    }
    .float-card .label { color: var(--text-dim); font-size: 11px; margin-bottom: 6px; font-weight: 600; letter-spacing: 0.04em; }
    .float-card .big { font-size: 22px; font-weight: 800; margin-bottom: 2px; }
    .float-card .sub { color: var(--text-sec); font-size: 12px; }
    @media (max-width: 920px) { .float-card { right: -4px; bottom: 30px; } }

    @keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

    /* â”€â”€â”€ Sections â”€â”€â”€ */
    section { padding: 100px 0; position: relative; }
    .section-title {
      font-size: clamp(32px, 4.4vw, 48px);
      line-height: 1.05; letter-spacing: -0.025em;
      margin-bottom: 14px;
    }
    .section-sub {
      color: var(--text-sec); font-size: 17px; max-width: 620px;
      margin-bottom: 56px;
    }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 12px;
      font-size: 12px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .section-eyebrow::before {
      content: ""; width: 24px; height: 1px;
      background: var(--accent);
    }

    /* â”€â”€ Scroll reveal â”€â”€ */
    .reveal {
      opacity: 0; transform: translateY(36px);
      transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal[data-delay="1"] { transition-delay: 0.08s; }
    .reveal[data-delay="2"] { transition-delay: 0.16s; }
    .reveal[data-delay="3"] { transition-delay: 0.24s; }
    .reveal[data-delay="4"] { transition-delay: 0.32s; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* â”€â”€ How it works â”€â”€ */
    .how-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    }
    @media (max-width: 980px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .how-grid { grid-template-columns: 1fr; } }

    .how-card {
      background: linear-gradient(180deg, var(--surface) 0%, rgba(26,31,39,0.55) 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 22px;
      position: relative; overflow: visible;
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                  border-color 0.4s ease, box-shadow 0.4s ease;
    }
    .how-step-num {
      position: absolute;
      top: 0; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 5;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--accent);
      color: #001b0c;
      display: grid; place-items: center;
      font-weight: 900; font-size: 16px;
      box-shadow: 0 10px 24px rgba(0, 230, 118, 0.45);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .how-card:hover .how-step-num {
      transform: translate(-50%, -50%) scale(1.08) rotate(-6deg);
      box-shadow: 0 14px 30px rgba(0, 230, 118, 0.55);
    }
    .how-card::before {
      content: ""; position: absolute; inset: -2px;
      background: radial-gradient(ellipse 280px 220px at 50% 0%, rgba(0,230,118,0.18), transparent 70%);
      opacity: 0; transition: opacity 0.5s ease; pointer-events: none;
    }
    .how-card:hover {
      transform: translateY(-10px);
      border-color: rgba(0, 230, 118, 0.45);
      box-shadow: 0 28px 60px rgba(0, 230, 118, 0.10);
    }
    .how-card:hover::before { opacity: 1; }
    .how-card > * { position: relative; z-index: 1; }
    .how-card > .how-step-num { position: absolute; }

    .how-visual {
      aspect-ratio: 1.05 / 1;
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: 22px;
      position: relative; overflow: hidden;
      padding: 14px;
      display: flex; align-items: center; justify-content: center;
    }
    .visual-num { display: none; }
    .how-card h3 { font-size: 17px; letter-spacing: -0.01em; margin-bottom: 6px; }
    .how-card p { color: var(--text-sec); font-size: 14px; line-height: 1.5; }

    /* Visual 1 â€” match list */
    .visual-matches {
      flex-direction: column; gap: 4px; justify-content: flex-start; padding: 12px;
    }
    .match-row {
      width: 100%; display: flex; align-items: center; gap: 8px;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 7px; padding: 4px 8px;
      font-size: 9.5px; font-weight: 600; color: var(--text);
      opacity: 0.55; transform: translateX(0);
      transition: opacity 0.4s, transform 0.4s, border-color 0.4s;
    }
    .match-row .ml-stack { display: flex; align-items: center; }
    .match-row .ml-logo {
      width: 16px; height: 16px;
      object-fit: contain;
      flex-shrink: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      padding: 1px;
    }
    .match-row .ml-logo + .ml-logo { margin-left: -5px; }
    .match-row .match-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .match-row .match-time { color: var(--text-dim); font-size: 8.5px; font-weight: 700; }
    .match-row .match-time.live { color: var(--red); display: inline-flex; align-items: center; gap: 4px; }
    .match-row .match-time.live::before {
      content: ""; width: 5px; height: 5px; border-radius: 50%;
      background: var(--red); animation: livePulse 2.4s ease-in-out infinite;
    }
    .match-row.highlight {
      opacity: 1; transform: translateX(2px);
      border-color: var(--accent);
      background: rgba(0, 230, 118, 0.08);
      animation: matchSelect 4s ease-in-out infinite;
    }
    @keyframes matchSelect {
      0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
      50%      { box-shadow: 0 0 0 5px rgba(0, 230, 118, 0); }
    }

    /* Visual 3 â€” mini board lighting up */
    .mb-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
      width: 100%; height: 100%;
    }
    .mb-cell {
      background: var(--cell-bg); border-radius: 4px;
      aspect-ratio: 1;
      border: 1.5px solid transparent;
      transition: background 0.5s, border-color 0.5s, box-shadow 0.5s;
    }
    .mb-cell.filled {
      background: rgba(0, 230, 118, 0.10);
      border-color: rgba(0, 230, 118, 0.35);
    }
    .mb-cell.hit {
      background: rgba(0, 230, 118, 0.35);
      border-color: var(--accent);
      box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
    }
    .mb-cell.popping {
      animation: mbPop 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }
    @keyframes mbPop {
      0%   { transform: scale(0.7); }
      40%  { transform: scale(1.18); box-shadow: 0 0 22px rgba(0,230,118,0.6); }
      100% { transform: scale(1); }
    }

    /* Visual 2 â€” board builder (question card + 4Ã—4 progress) */
    .visual-build-card {
      flex-direction: column;
      padding: 12px;
      gap: 10px;
      justify-content: center;
    }
    .bb-card {
      width: 100%;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 12px 11px;
      display: flex; flex-direction: column; gap: 10px;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .bb-card.swapping {
      opacity: 0;
      transform: translateX(-14px);
    }
    .bb-q {
      font-size: 11px; font-weight: 700;
      color: var(--text); line-height: 1.25;
      text-align: center;
      min-height: 28px;
      display: flex; align-items: center; justify-content: center;
    }
    .bb-answers {
      display: grid;
      grid-template-columns: 1fr 1fr 0.55fr;
      gap: 5px;
    }
    .bb-ans {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 6px 0;
      font-size: 10.5px; font-weight: 700;
      color: var(--text-sec);
      text-align: center;
      transition: background 0.3s, border-color 0.3s, color 0.3s;
    }
    .bb-ans.sel {
      background: rgba(0, 230, 118, 0.16);
      border-color: var(--accent);
      color: var(--accent);
      animation: bbAnswerPop 0.5s ease;
    }
    @keyframes bbAnswerPop {
      0%   { transform: scale(0.88); }
      55%  { transform: scale(1.12); }
      100% { transform: scale(1); }
    }
    .bb-progress {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3px;
      width: 58px;
      align-self: center;
    }
    .bb-dot {
      aspect-ratio: 1;
      background: var(--cell-bg);
      border-radius: 2px;
      transition: background 0.4s, transform 0.3s;
    }
    .bb-dot.filled {
      background: var(--accent);
      box-shadow: 0 0 5px rgba(0, 230, 118, 0.5);
      animation: bbDotPop 0.45s ease;
    }
    @keyframes bbDotPop {
      0%   { transform: scale(0.6); }
      55%  { transform: scale(1.35); }
      100% { transform: scale(1); }
    }

    /* Mobile: enlarge the board-builder illustration so it fills the wider card */
    @media (max-width: 540px) {
      .how-visual.visual-build-card { padding: 26px 22px; aspect-ratio: auto; }
      .visual-build-card .bb-card { max-width: 330px; margin: 0 auto; padding: 22px 20px; gap: 18px; border-radius: 14px; }
      .visual-build-card .bb-q { font-size: 18px; min-height: 50px; line-height: 1.3; }
      .visual-build-card .bb-answers { gap: 9px; }
      .visual-build-card .bb-ans { font-size: 17px; padding: 15px 0; border-radius: 10px; }
      .visual-build-card .bb-progress { width: 132px; gap: 6px; margin-top: 4px; }

      /* Step 4 â€” share/leaderboard illustration: bigger + hug content */
      .how-visual.visual-share { padding: 24px 20px; aspect-ratio: auto; }
      .visual-share { gap: 10px; }
      .visual-share .vs-bingo { font-size: 22px; }
      .visual-share .vs-tag { font-size: 11px; }
      .visual-share .vs-rows { gap: 8px; }
      .visual-share .vs-row { grid-template-columns: 22px 30px 1fr auto; gap: 11px; padding: 11px 13px; font-size: 14px; border-radius: 10px; }
      .visual-share .vs-row .vs-av { width: 30px; height: 30px; }
      .visual-share .vs-row .vs-av svg { width: 16px; height: 16px; }
      .visual-share .vs-medal { font-size: 16px; }

      /* Scrollytelling leaderboard pane (#5): wider rows on mobile */
      .scrolly-stacked .scrolly-step .pane.pane-leaderboard { padding-left: 8px; padding-right: 8px; grid-template-columns: 1fr; }
    }

    /* Visual 4 â€” mini leaderboard */
    .visual-share {
      flex-direction: column;
      padding: 11px 12px;
      gap: 5px;
      justify-content: center;
    }
    .vs-header {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 4px;
    }
    .vs-bingo {
      font-size: 16px; font-weight: 900;
      background: linear-gradient(135deg, var(--accent), #6effb0);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: 0.04em;
      animation: bingoBounce 2.6s ease-in-out infinite;
    }
    @keyframes bingoBounce {
      0%, 100% { transform: scale(1); }
      50%      { transform: scale(1.08); }
    }
    .vs-tag {
      font-size: 9px; font-weight: 800;
      color: var(--text-dim); letter-spacing: 0.10em;
    }
    .vs-rows {
      width: 100%; display: flex; flex-direction: column; gap: 3px;
    }
    .vs-row {
      display: grid;
      grid-template-columns: 14px 18px 1fr auto;
      gap: 7px;
      align-items: center;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 5px;
      padding: 4px 7px;
      font-size: 9.5px; font-weight: 700;
      animation: vsRowSlide 0.5s ease both;
    }
    .vs-row:nth-child(1) { animation-delay: 0.0s; }
    .vs-row:nth-child(2) { animation-delay: 0.08s; }
    .vs-row:nth-child(3) { animation-delay: 0.16s; }
    .vs-row:nth-child(4) { animation-delay: 0.24s; }
    @keyframes vsRowSlide {
      0%   { opacity: 0; transform: translateX(-8px); }
      100% { opacity: 1; transform: translateX(0); }
    }
    .vs-row .vs-rank { color: var(--text-dim); text-align: center; font-variant-numeric: tabular-nums; }
    .vs-row .vs-av {
      width: 18px; height: 18px; border-radius: 50%;
      display: grid; place-items: center;
      background: color-mix(in srgb, var(--accent) 22%, transparent);
      border: 1.5px solid color-mix(in srgb, var(--accent) 45%, transparent);
      color: var(--accent);
    }
    .vs-row .vs-av svg { width: 11px; height: 11px; }
    .vs-row .vs-name { color: var(--text); }
    .vs-row .vs-pts {
      color: var(--accent); font-variant-numeric: tabular-nums;
      font-weight: 800;
    }
    .vs-row.you {
      background: rgba(0, 230, 118, 0.16);
      border-color: var(--accent);
      animation: vsRowSlide 0.5s ease both, vsYouGlow 2.5s ease-in-out infinite 0.5s;
    }
    @keyframes vsYouGlow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
      50%      { box-shadow: 0 0 0 4px rgba(0, 230, 118, 0); }
    }
    .vs-row.you .vs-rank,
    .vs-row.you .vs-name { color: var(--accent); }
    .vs-medal { font-size: 11px; line-height: 1; }

    /* â”€â”€ What makes it different (scrollytelling 2-column) â”€â”€ */
    .scrolly {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: flex-start;
      position: relative;
    }
    .scrolly-text { display: flex; flex-direction: column; }
    .scrolly-step {
      min-height: 78vh;
      display: flex; flex-direction: column;
      justify-content: center;
      padding: 30px 0;
    }
    .scrolly-step h3 {
      font-size: clamp(28px, 3.4vw, 38px);
      letter-spacing: -0.022em;
      margin-bottom: 14px;
    }
    .scrolly-step p {
      color: var(--text-sec); font-size: 17px;
      line-height: 1.6; max-width: 440px;
    }
    .scrolly-step-num {
      display: inline-flex; align-items: center; gap: 12px;
      font-size: 12px; font-weight: 800;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 18px;
    }
    .scrolly-step-num::before {
      content: ""; width: 20px; height: 1px; background: var(--accent);
    }
    .scrolly-illo {
      position: sticky;
      top: 18vh;
      height: 64vh;
      max-height: 560px;
    }
    .scrolly-sticky {
      position: relative;
      width: 100%; height: 100%;
      background: linear-gradient(180deg, var(--surface) 0%, rgba(26,31,39,0.7) 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    }
    .scrolly-sticky::before {
      content: ""; position: absolute; inset: -1px;
      background: radial-gradient(ellipse 500px 320px at 50% 0%, rgba(0,230,118,0.12), transparent 70%);
      pointer-events: none;
    }
    .pane {
      position: absolute; inset: 0;
      display: grid; place-items: stretch;
      opacity: 0; visibility: hidden;
      transform: scale(0.96);
      transition: opacity 0.55s ease, visibility 0.55s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 32px;
    }
    .pane.active {
      opacity: 1; visibility: visible;
      transform: scale(1);
    }

    /* Pane 1 â€” Live football moments (fills full height) */
    .pane-events {
      flex-direction: column; display: flex; gap: 14px;
      width: 100%; height: 100%; justify-self: center;
      justify-content: center;
    }
    .pe-row {
      display: flex; align-items: center; gap: 14px;
      background: var(--cell-bg); border: 1px solid var(--border);
      border-radius: 16px; padding: 16px 20px;
      font-size: 16px; font-weight: 700;
      color: var(--text);
      animation: peCycle 8s ease-in-out infinite;
    }
    .pe-row .pe-ico {
      width: 44px; height: 44px; border-radius: 12px;
      display: grid; place-items: center;
      background: rgba(0,230,118,0.10);
      font-size: 22px; flex-shrink: 0;
    }
    .pe-row.goal .pe-ico { background: rgba(0,230,118,0.18); }
    .pe-row.card .pe-ico { background: rgba(245,166,35,0.18); }
    .pe-row.corner .pe-ico { background: rgba(56,189,248,0.18); }
    .pe-row.save .pe-ico { background: rgba(167,139,250,0.18); }
    .pe-row .pe-text { flex: 1; }
    .pe-row .pe-sub { font-size: 13px; color: var(--text-dim); font-weight: 600; margin-top: 2px; }
    .pe-row .pe-min { color: var(--text-dim); font-size: 14px; font-weight: 700; }
    .pe-row.e1 { animation-delay: 0s; }
    .pe-row.e2 { animation-delay: 0.4s; }
    .pe-row.e3 { animation-delay: 0.8s; }
    .pe-row.e4 { animation-delay: 1.2s; }
    @keyframes peCycle {
      0%   { opacity: 0; transform: translateX(-16px); }
      8%   { opacity: 1; transform: translateX(0); }
      100% { opacity: 1; transform: translateX(0); }
    }

    /* Pane 2 â€” 4Ã—4 bingo board (fills the square) */
    .pane[data-pane="3"] { place-items: center; }
    .pane-board {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
      width: 100%; max-width: 460px; aspect-ratio: 1;
    }
    .gb-cell {
      background: var(--cell-bg);
      border-radius: 10px;
      aspect-ratio: 1;
      border: 1.5px solid transparent;
      transition: background 0.6s, border-color 0.6s, box-shadow 0.6s, color 0.6s;
      display: grid; place-items: center;
      padding: 6px; text-align: center;
      font-size: 10px; font-weight: 600; line-height: 1.2;
      color: var(--text-sec);
      overflow: hidden;
    }
    .gb-cell.hit {
      background: rgba(0, 230, 118, 0.30);
      border-color: var(--accent);
      box-shadow: 0 0 16px rgba(0, 230, 118, 0.45);
      color: var(--accent);
    }
    .gb-cell.miss {
      background: rgba(218, 32, 32, 0.18);
      border-color: rgba(218, 32, 32, 0.5);
      color: #ff6b6b;
    }
    .gb-cell.win {
      background: rgba(0, 230, 118, 0.40);
      border-color: var(--accent);
      color: var(--accent);
      box-shadow: 0 0 18px rgba(0, 230, 118, 0.5);
      animation: rowGlow 1.5s ease-in-out infinite;
    }
    .gb-cell.justHit { animation: bingoSlotIn 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
    .gb-cell.justMiss { animation: cellMiss 0.45s ease both; }
    .gb-bingo-banner {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%) scale(0.5);
      background: #181c22;
      color: var(--accent); padding: 20px 30px; border-radius: 18px;
      font-weight: 900; text-align: center;
      border: 1.5px solid rgba(0, 230, 118, 0.5);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 34px rgba(0, 230, 118, 0.32);
      opacity: 0; pointer-events: none;
      transition: opacity .3s ease, transform .5s cubic-bezier(0.34, 1.56, 0.64, 1);
      z-index: 6;
    }
    .gb-bingo-banner.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    .gb-bingo-banner .gbb-title { font-size: 32px; letter-spacing: 0.04em; color: var(--accent); text-shadow: 0 0 22px rgba(0, 230, 118, 0.6); }
    .gb-bingo-banner .gbb-sub { font-size: 13px; margin-top: 5px; font-weight: 700; color: var(--text-sec); }

    /* Pane 3 â€” Squad card (inspired by app's SquadScreen) */
    .pane[data-pane="4"] { place-items: center; }
    .pane-squad {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
    }
    .squad-card {
      width: 100%; max-width: 460px;
      background: transparent;
      border: 0;
      padding: 0;
      box-shadow: none;
      position: relative;
    }
    .sq-head {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 10.5px; font-weight: 800;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 6px;
    }
    .sq-streak {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(218, 32, 32, 0.15);
      color: #ff6b6b;
      padding: 3px 9px; border-radius: 999px;
      font-size: 10px;
    }
    .sq-name-row {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 20px;
    }
    .sq-name {
      font-size: 26px; font-weight: 800;
      color: var(--text);
      letter-spacing: -0.02em;
    }
    .sq-boost-pill {
      background: rgba(0, 230, 118, 0.12);
      color: var(--accent);
      padding: 4px 10px; border-radius: 999px;
      font-size: 10.5px; font-weight: 800;
      letter-spacing: 0.02em;
      display: inline-flex; align-items: center; gap: 4px;
    }
    .sq-members {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 6px; margin-bottom: 18px;
    }
    .sq-member {
      display: flex; flex-direction: column; align-items: center; gap: 7px;
      animation: sqMemberFloat 5s ease-in-out infinite;
    }
    .sq-member:nth-child(1) { animation-delay: 0s; }
    .sq-member:nth-child(2) { animation-delay: 0.5s; }
    .sq-member:nth-child(3) { animation-delay: 1.0s; }
    .sq-member:nth-child(4) { animation-delay: 1.5s; }
    .sq-member:nth-child(5) { animation-delay: 2.0s; }
    @keyframes sqMemberFloat {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-5px); }
    }
    .sq-av {
      width: 56px; height: 56px; border-radius: 50%;
      display: grid; place-items: center;
      background: color-mix(in srgb, var(--av-color) 22%, transparent);
      border: 2px solid color-mix(in srgb, var(--av-color) 45%, transparent);
      color: var(--av-color);
    }
    .sq-av svg { width: 26px; height: 26px; }
    .sq-mname { font-size: 12px; color: var(--text-sec); font-weight: 700; }
    .sq-member.you .sq-av {
      box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
      animation: sqYouPulse 2.6s ease-in-out infinite;
    }
    @keyframes sqYouPulse {
      0%, 100% { transform: scale(1); }
      50%      { transform: scale(1.05); }
    }
    .sq-member.you .sq-mname { color: var(--accent); font-weight: 800; }
    .sq-match {
      background: var(--cell-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 16px;
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 14px;
    }
    .sq-match-logos { display: flex; flex-shrink: 0; }
    .sq-match-logos img {
      width: 28px; height: 28px; object-fit: contain;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 50%; padding: 2px;
    }
    .sq-match-logos img + img { margin-left: -9px; }
    .sq-match-body { flex: 1; min-width: 0; }
    .sq-match-label {
      font-size: 9.5px; font-weight: 800; letter-spacing: 0.12em;
      color: var(--text-dim); text-transform: uppercase; margin-bottom: 2px;
    }
    .sq-match-info {
      font-size: 15px; font-weight: 700; color: var(--text);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .sq-match-time {
      font-size: 14px; font-weight: 700; color: var(--text-dim);
      flex-shrink: 0;
    }
    .sq-stake {
      text-align: center;
      font-size: 11.5px; color: var(--text-sec);
      font-weight: 600;
      font-style: italic;
    }
    .sq-stake b { color: var(--gold); font-weight: 800; font-style: normal; }

    /* Pane 4 â€” Leaderboard (mirrors app's LeaderboardScreen rows) */
    .pane[data-pane="5"] { place-items: stretch; }
    .pane-leaderboard {
      flex-direction: column; display: flex; gap: 10px;
      width: 100%; max-width: 460px; height: 100%;
      justify-content: center;
      margin: 0 auto;
    }
    .pl-head {
      display: flex; justify-content: space-between; align-items: baseline;
      margin-bottom: 6px;
    }
    .pl-title {
      display: inline-flex; align-items: baseline; gap: 8px;
    }
    .pl-bingo {
      font-size: 26px; font-weight: 900;
      background: linear-gradient(135deg, var(--accent), #6effb0);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: 0.04em;
      animation: bingoBounce 2.6s ease-in-out infinite;
    }
    .pl-tag {
      font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
      color: var(--text-dim); text-transform: uppercase;
    }
    .pl-row {
      display: grid;
      grid-template-columns: 30px 42px 1fr auto;
      gap: 12px;
      align-items: center;
      background: var(--cell-bg);
      border: 1px solid rgba(155, 164, 181, 0.18);
      border-radius: 16px;
      padding: 12px 16px;
      transition: background 0.3s, border-color 0.3s;
    }
    .pl-rank {
      text-align: center;
      color: var(--text-dim);
      font-variant-numeric: tabular-nums;
      font-size: 14px;
      font-weight: 700;
    }
    .pl-av {
      width: 42px; height: 42px; border-radius: 50%;
      display: grid; place-items: center;
      background: color-mix(in srgb, var(--av-color, #9aa3a0) 22%, transparent);
      border: 2px solid color-mix(in srgb, var(--av-color, #9aa3a0) 45%, transparent);
      color: var(--av-color, #9aa3a0);
    }
    .pl-av svg { width: 20px; height: 20px; }
    .pl-av.ring { box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px rgba(56, 189, 248, 0.5); }
    .pl-info { min-width: 0; }
    .pl-line1 {
      display: flex; align-items: center; gap: 6px;
      margin-bottom: 3px; min-width: 0;
    }
    .pl-name {
      font-size: 15px; font-weight: 700; color: var(--text);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .pl-pill {
      font-size: 10.5px; font-weight: 800;
      padding: 2px 7px; border-radius: 6px;
      letter-spacing: 0.02em;
      flex-shrink: 0;
      line-height: 1.3;
    }
    .pl-pill.squad {
      background: rgba(167, 139, 250, 0.18);
      color: #A78BFA;
    }
    .pl-pill.delta-up {
      background: rgba(0, 230, 118, 0.20);
      color: var(--accent);
    }
    .pl-line2 {
      display: flex; gap: 5px; flex-wrap: wrap;
    }
    .pl-pill.xp {
      background: rgba(245, 166, 35, 0.20);
      color: var(--gold);
    }
    .pl-pill.streak {
      background: rgba(218, 32, 32, 0.18);
      color: #ff6b6b;
    }
    .pl-hits { text-align: right; line-height: 1; }
    .pl-h-num {
      font-size: 20px; font-weight: 800; color: var(--text);
      font-variant-numeric: tabular-nums;
    }
    .pl-h-lbl {
      font-size: 11.5px; color: var(--text-sec);
      font-weight: 600; margin-top: 4px;
    }
    .pl-row.you {
      background: rgba(0, 230, 118, 0.14);
      border-color: rgba(0, 230, 118, 0.4);
      animation: plYouGlow 2.8s ease-in-out infinite;
    }
    .pl-row.you .pl-av {
      box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--accent);
    }
    @keyframes plYouGlow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.35); }
      50%      { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
    }

    /* Pane 5 â€” Browse matches */
    .pane[data-pane="1"] { place-items: center; }
    .browse-pane { width: 100%; max-width: 460px; display: flex; flex-direction: column; gap: 9px; }
    .bp-tabs { display: flex; gap: 6px; margin-bottom: 4px; }
    .bp-tab {
      font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
      color: var(--text-dim); padding: 6px 12px; border-radius: 999px;
      background: var(--cell-bg); border: 1px solid var(--border);
    }
    .bp-tab.active { background: rgba(0,230,118,0.15); color: var(--accent); border-color: rgba(0,230,118,0.4); }
    .bp-card {
      display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center;
      background: var(--cell-bg); border: 1px solid rgba(155,164,181,0.18);
      border-radius: 14px; padding: 12px 14px;
      transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), border-color 0.45s, box-shadow 0.45s;
    }
    .bp-card.sel { border-color: var(--accent); box-shadow: 0 0 20px rgba(0,230,118,0.22); transform: translateX(5px); }
    .bp-logos { display: flex; flex-shrink: 0; }
    .bp-logos img { width: 30px; height: 30px; object-fit: contain; }
    .bp-logos img + img { margin-left: -8px; }
    .bp-info { min-width: 0; }
    .bp-comp { font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 2px; }
    .bp-teams { font-size: 14px; font-weight: 800; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .bp-meta { font-size: 11px; color: var(--text-sec); font-weight: 600; margin-top: 2px; }
    .bp-right { text-align: right; flex-shrink: 0; }
    .bp-live { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 800; color: var(--red); letter-spacing: 0.04em; }
    .bp-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: bpLivePulse 1.8s ease-in-out infinite; }
    @keyframes bpLivePulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(218,32,32,0.5); }
      50%      { opacity: 0.55; box-shadow: 0 0 0 5px rgba(218,32,32,0); }
    }
    .bp-score { font-size: 16px; font-weight: 900; color: var(--text); font-variant-numeric: tabular-nums; margin-top: 2px; }
    .bp-time { font-size: 14px; font-weight: 800; color: var(--accent); }
    .bp-when { font-size: 10px; color: var(--text-dim); font-weight: 700; margin-top: 1px; }
    .pl-row.you .pl-rank,
    .pl-row.you .pl-name,
    .pl-row.you .pl-h-num { color: var(--accent); }

    @media (max-width: 880px) {
      .scrolly { grid-template-columns: 1fr; gap: 24px; }
      .scrolly-step { min-height: auto; padding: 20px 0; }
      .scrolly-illo { position: static; height: 360px; }

      /* Stacked mode (JS-enabled): each illustration sits above its title */
      .scrolly-stacked { gap: 4px; }
      .scrolly-stacked .scrolly-illo { display: none; }
      .scrolly-stacked .scrolly-step { padding: 28px 0 44px; }
      .scrolly-stacked .scrolly-step .pane {
        position: static; inset: auto;
        opacity: 1 !important; visibility: visible !important; transform: none !important;
        display: grid; padding: 24px 18px; margin-top: 26px; margin-bottom: 0;
        background: linear-gradient(180deg, var(--surface) 0%, rgba(26,31,39,0.7) 100%);
        border: 1px solid var(--border); border-radius: 20px;
        min-height: 300px; box-shadow: 0 18px 44px rgba(0,0,0,0.3);
        transition: none;
      }
    }

    /* â”€â”€ Compliance band â”€â”€ */
    .compliance-band {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      display: flex; gap: 28px; align-items: center;
      position: relative; overflow: hidden;
    }
    .compliance-band::before {
      content: ""; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 500px 200px at 25% 50%, rgba(0,230,118,0.07), transparent 70%),
        radial-gradient(ellipse 400px 180px at 80% 50%, rgba(245,166,35,0.05), transparent 70%);
      animation: bgShift 12s ease-in-out infinite;
    }
    .compliance-band > * { position: relative; z-index: 1; }
    @keyframes bgShift {
      0%, 100% { transform: translateX(0) scale(1); }
      50%      { transform: translateX(30px) scale(1.05); }
    }
    @media (max-width: 720px) { .compliance-band { flex-direction: column; text-align: center; padding: 28px 24px; } }
    .compliance-band .shield {
      width: 64px; height: 64px; border-radius: 18px;
      background: rgba(0, 230, 118, 0.10);
      color: var(--accent);
      display: grid; place-items: center; font-size: 28px;
      flex-shrink: 0;
      animation: shieldPulse 3s ease-in-out infinite;
    }
    @keyframes shieldPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.45); transform: scale(1); }
      50%      { box-shadow: 0 0 0 12px rgba(0, 230, 118, 0); transform: scale(1.09); }
    }
    .compliance-band h3 { font-size: 19px; margin-bottom: 6px; }
    .compliance-band p { color: var(--text-sec); font-size: 14.5px; max-width: 740px; }

    /* â”€â”€ CTA â”€â”€ */
    .cta-final {
      padding: 120px 0;
      position: relative; overflow: hidden;
    }
    .cta-final::before {
      content: ""; position: absolute; inset: -20%;
      background:
        radial-gradient(ellipse 700px 300px at 25% 50%, rgba(0,230,118,0.14), transparent 60%),
        radial-gradient(ellipse 600px 240px at 80% 50%, rgba(245,166,35,0.08), transparent 60%);
      animation: ctaShift 14s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes ctaShift {
      0%, 100% { transform: scale(1) rotate(0); }
      50%      { transform: scale(1.15) rotate(3deg); }
    }
    .cta-final > * { position: relative; z-index: 1; }

    .cta-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
    }
    @media (max-width: 920px) {
      .cta-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
      .cta-left .cta-row { justify-content: center; }
    }
    .cta-left h2 {
      font-size: clamp(34px, 4.8vw, 52px);
      letter-spacing: -0.025em; margin-bottom: 16px;
    }
    .cta-left p { color: var(--text-sec); font-size: 17px; max-width: 460px; margin-bottom: 32px; }

    /* Right column â€” animated next-match illustration */
    .cta-illo {
      position: relative;
      display: grid; place-items: center;
      min-height: 480px;
    }
    .next-match {
      width: 100%; max-width: 380px;
      background: linear-gradient(180deg, var(--surface) 0%, rgba(26,31,39,0.65) 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px 26px 24px;
      position: relative; z-index: 2;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
      animation: nmFloat 8s ease-in-out infinite;
    }
    @keyframes nmFloat {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }
    .next-match::before {
      content: ""; position: absolute; inset: -2px;
      background: linear-gradient(135deg, rgba(0,230,118,0.5), transparent 50%, rgba(245,166,35,0.35));
      border-radius: 26px; z-index: -1;
      filter: blur(22px); opacity: 0.55;
      animation: nmGlow 6s ease-in-out infinite;
    }
    @keyframes nmGlow {
      0%, 100% { opacity: 0.45; }
      50%      { opacity: 0.75; }
    }

    .nm-head {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 11.5px; font-weight: 800;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--text);
      margin-bottom: 22px;
    }
    .nm-tonight {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(0, 230, 118, 0.15);
      color: var(--accent);
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 10.5px;
      letter-spacing: 0.10em;
    }
    .nm-tonight::before {
      content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
      animation: livePulse 2.4s ease-in-out infinite;
    }

    .nm-teams {
      display: grid; grid-template-columns: 1fr auto 1fr;
      align-items: center; gap: 14px;
      margin-bottom: 24px;
    }
    .nm-team { display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .nm-team img {
      width: 66px; height: 66px; object-fit: contain;
      filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
      animation: crestPulse 5s ease-in-out infinite;
    }
    .nm-team.away img { animation-delay: 2.5s; }
    @keyframes crestPulse {
      0%, 100% { transform: scale(1) rotate(0); }
      50%      { transform: scale(1.08) rotate(-3deg); }
    }
    .nm-team .name {
      font-size: 14.5px; font-weight: 800; color: var(--text);
      letter-spacing: -0.005em;
    }
    .nm-vs {
      font-size: 12.5px; font-weight: 800;
      color: var(--text);
      letter-spacing: 0.12em;
    }

    .nm-cd-label {
      text-align: center;
      font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
      color: var(--text); text-transform: uppercase;
      margin-bottom: 8px;
    }
    .nm-cd {
      text-align: center;
      font-size: 40px; font-weight: 900;
      color: var(--accent);
      letter-spacing: -0.015em;
      font-variant-numeric: tabular-nums;
      margin-bottom: 22px;
      text-shadow: 0 0 28px rgba(0, 230, 118, 0.45);
    }

    .nm-cta {
      display: block; width: 100%;
      text-align: center;
      background: var(--accent);
      color: #001b0c;
      border-radius: 999px;
      padding: 14px 16px;
      font-size: 15px; font-weight: 800;
      border: 0; cursor: pointer;
      transition: transform 0.15s, box-shadow 0.2s;
    }
    .nm-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(0, 230, 118, 0.35);
    }
    .nm-cta b { font-variant-numeric: tabular-nums; }

    /* Floating decorative cells around the card */
    .orbit-cell {
      position: absolute;
      background: rgba(0, 230, 118, 0.10);
      border: 1.5px solid rgba(0, 230, 118, 0.4);
      border-radius: 12px;
      display: grid; place-items: center;
      z-index: 1;
      box-shadow: 0 0 24px rgba(0, 230, 118, 0.18);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      animation: orbitFloat 7s ease-in-out infinite;
    }
    .orbit-cell.c1 { top: 6%;  right: -10px; width: 56px; height: 56px; font-size: 22px; animation-delay: 0s; }
    .orbit-cell.c2 { bottom: 8%; left: -16px; width: 56px; height: 56px; font-size: 22px; animation-delay: 1.8s; }
    .orbit-cell.c3 { top: 42%; right: -30px; width: 40px; height: 40px; font-size: 15px; animation-delay: 3.2s; color: var(--accent); font-weight: 800; }
    .orbit-cell.c4 { bottom: 36%; left: -28px; width: 40px; height: 40px; font-size: 15px; animation-delay: 5s; color: var(--gold); font-weight: 800; background: rgba(245, 166, 35, 0.10); border-color: rgba(245, 166, 35, 0.4); box-shadow: 0 0 24px rgba(245, 166, 35, 0.2); }
    @keyframes orbitFloat {
      0%, 100% { transform: translate(0, 0) rotate(0); }
      33%      { transform: translate(8px, -12px) rotate(8deg); }
      66%      { transform: translate(-7px, 8px) rotate(-6deg); }
    }

    /* â”€â”€ Footer â”€â”€ */
    footer {
      background-color: var(--surface-2);
      background-image:
        linear-gradient(180deg,
          rgba(10,12,15,0.82) 0%,
          rgba(10,12,15,0.78) 35%,
          rgba(10,12,15,0.88) 70%,
          rgba(10,12,15,0.96) 100%),
        url(../img/stadium.jpg);
      background-size: 100% 100%, cover;
      background-position: center, center 40%;
      background-repeat: no-repeat, no-repeat;
      border-top: 1px solid var(--border);
      padding: 0 0 32px;
      position: relative;
      overflow: hidden;
    }
    footer::before {
      content: ""; position: absolute; inset: -10%;
      background:
        radial-gradient(ellipse 700px 260px at 15% 70%, rgba(0, 230, 118, 0.10), transparent 70%),
        radial-gradient(ellipse 600px 220px at 85% 75%, rgba(245, 166, 35, 0.06), transparent 70%);
      animation: bgShift 18s ease-in-out infinite;
      pointer-events: none;
    }
    footer > * { position: relative; z-index: 1; }

    .footer-hero {
      display: grid; grid-template-columns: 1.1fr 1fr;
      gap: 64px; align-items: center;
      padding: 72px 0 56px;
      position: relative;
      margin-bottom: 48px;
    }
    .footer-hero::after {
      content: ""; position: absolute;
      bottom: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,230,118,0.5), rgba(245,166,35,0.3), transparent);
    }
    @media (max-width: 880px) {
      .footer-hero { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 44px; }
    }

    .footer-hero-left .logo { margin-bottom: 24px; }
    .footer-hero-tagline {
      font-size: clamp(20px, 2.4vw, 26px);
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.015em;
      line-height: 1.3;
      max-width: 480px;
      margin-bottom: 14px;
    }
    .footer-hero-sub {
      font-size: 14px;
      color: var(--text-sec);
      max-width: 460px;
    }

    .footer-cta-block {
      display: flex; flex-direction: column;
      gap: 14px; align-items: flex-start;
    }
    .footer-cta-label {
      display: inline-flex; align-items: center; gap: 12px;
      font-size: 12px; font-weight: 800;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--accent);
    }
    .footer-cta-label::before {
      content: ""; width: 24px; height: 1px; background: var(--accent);
    }
    .footer-cta-label .pulse {
      width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
      box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.2);
      animation: pulseDot 3s infinite;
    }

    .footer-badges { display: flex; gap: 12px; flex-wrap: wrap; }
    .store-badge {
      display: inline-flex; align-items: center; gap: 12px;
      background: #000;
      border: 1px solid #2a3340;
      border-radius: 13px;
      padding: 10px 18px;
      min-width: 180px;
      color: #fff;
      transition: transform .2s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .store-badge:hover {
      transform: translateY(-3px);
      border-color: var(--accent);
      box-shadow: 0 14px 32px rgba(0, 230, 118, 0.20);
    }
    .store-badge svg.badge-ico { width: 28px; height: 28px; flex-shrink: 0; }
    .store-badge .badge-text {
      display: flex; flex-direction: column;
      line-height: 1.15;
    }
    .store-badge .badge-top {
      font-size: 9.5px; font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #c2c8d0;
    }
    .store-badge .badge-main {
      font-size: 18px; font-weight: 700;
      letter-spacing: -0.015em;
      color: #fff;
    }

    .footer-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
      margin-bottom: 48px;
    }
    @media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
    @media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
    .footer-col h4 {
      font-size: 12px; color: var(--accent);
      text-transform: uppercase; letter-spacing: 0.10em;
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a {
      color: var(--text-sec); font-size: 14px;
      transition: color 0.15s, padding-left 0.2s;
      display: inline-block;
      position: relative;
    }
    .footer-col a::before {
      content: "â†’"; position: absolute;
      left: -16px; opacity: 0;
      color: var(--accent);
      transition: opacity 0.2s, left 0.2s;
    }
    .footer-col a:hover {
      color: var(--text);
      padding-left: 4px;
    }
    .footer-col a:hover::before {
      opacity: 1; left: -14px;
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 28px;
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
      color: var(--text-sec); font-size: 13px;
    }
    .footer-bottom .compliance-mini {
      display: inline-flex; align-items: center; gap: 6px;
    }
    .footer-bottom .compliance-mini .dot-sep {
      width: 3px; height: 3px; border-radius: 50%; background: var(--text-sec);
      opacity: 0.5;
    }

    /* â”€â”€ FAQ accordion â”€â”€ */
    .faq-section { padding: 80px 0; }
    .faq-section .faq-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
    .faq-section .faq-head h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.1; letter-spacing: -0.022em; margin-bottom: 12px; }
    .faq-section .faq-head p { color: var(--text-sec); font-size: 17px; }
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 14px; margin-bottom: 10px; overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item:hover { border-color: #38424f; }
    .faq-item .faq-summary {
      width: 100%; padding: 18px 22px; cursor: pointer;
      font-size: 16px; font-weight: 700; color: var(--text);
      background: transparent; border: 0; text-align: left; font-family: inherit;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .faq-item .faq-summary::after {
      content: "+"; font-size: 22px; color: var(--accent); font-weight: 800;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); flex-shrink: 0;
    }
    .faq-item.open .faq-summary::after { transform: rotate(45deg); }
    .faq-item .faq-body { height: 0; overflow: hidden; transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
    .faq-item .faq-body > .faq-inner { padding: 0 22px 18px; color: var(--text-sec); font-size: 15px; line-height: 1.65; }
    .faq-item .faq-body p { margin: 0; }
    .faq-item .faq-body a:not(.btn) { color: var(--accent); }
  