:root {
      --bg: #0b1014;
      --accent-orange: #df5e24;
      --accent-green: #41a36a;
      --text-light: #f2f5f7;
      --text-muted: #b9c3c9;
      --card-bg: #141b21;
      --card-border: rgba(255,255,255,0.07);
      --radius: 18px;
      --bar-h: 68px; /* mobile bottom bar height */
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text-light);
      line-height: 1.6;
      /* Space for mobile bottom bar */
      padding-bottom: var(--bar-h);
    }

    a { color: #7fb4ff; text-decoration: none; }
    a:hover { text-decoration: underline; }
    h1, h2, h3 { margin: 0 0 0.5rem; font-weight: 700; }

    /* Focus ring for keyboard/switch users */
    :focus-visible {
      outline: 2px solid var(--accent-green);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* ---- TOPBAR ---- */
    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
      padding: 12px 26px;
      background: rgba(11,16,20,0.75);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: all 0.25s ease;
    }
    .topbar.shrunk {
      padding-top: 4px;
      padding-bottom: 4px;
      background: rgba(11,16,20,0.96);
      box-shadow: 0 4px 18px rgba(0,0,0,0.6);
    }
    .logo-link { display: inline-block; }
    .logo { width: 52px; height: 52px; object-fit: contain; transition: all 0.25s ease; }
    .topbar.shrunk .logo { width: 34px; height: 34px; }
    .logo-link:hover .logo {
      transform: scale(1.05);
      filter: drop-shadow(0 0 8px rgba(223,94,36,0.55));
    }

    .nav-buttons {
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 2000;
    }

    .nav-dropdown { position: relative; }
    .nav-dropdown > summary {
      list-style: none;
      user-select: none;
    }
    .nav-dropdown > summary::-webkit-details-marker { display: none; }
    .nav-dropdown > summary::after {
      content: "";
      width: 7px;
      height: 7px;
      margin-left: 9px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: translateY(-2px) rotate(45deg);
      transition: transform 0.2s ease;
    }
    .nav-dropdown[open] > summary::after {
      transform: translateY(2px) rotate(225deg);
    }
    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 210px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 8px;
      background: rgba(11,16,20,0.98);
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 10px;
      box-shadow: 0 14px 34px rgba(0,0,0,0.55);
    }
    .nav-dropdown-menu .btn-small {
      width: 100%;
      min-height: 40px;
      justify-content: flex-start;
      padding: 8px 12px;
      color: var(--text-light);
      background: transparent;
      border-color: transparent;
    }
    .nav-dropdown-menu .btn-small:hover {
      color: #fff;
      background: rgba(223,94,36,0.16);
      box-shadow: none;
      text-decoration: none;
    }

    .btn-small {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px; /* WCAG touch target */
      padding: 10px 18px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: all 0.22s ease;
      border: 2px solid transparent;
      white-space: nowrap;
      cursor: pointer;
    }
    .btn-outline-small {
      border-color: var(--accent-green);
      color: var(--accent-green);
      background: rgba(65,163,106,0.08);
    }
    .btn-outline-small:hover { background: rgba(65,163,106,0.18); box-shadow: 0 0 14px rgba(65,163,106,0.45); }
    .btn-green { background: var(--accent-green); color: #fff; }
    .btn-green:hover { background: #2f8a54; box-shadow: 0 0 14px rgba(65,163,106,0.6); }
    .btn-orange { background: var(--accent-orange); color: #fff; }
    .btn-orange:hover { background: #c44f1e; box-shadow: 0 0 14px rgba(223,94,36,0.6); }

    /* ---- LANGUAGE TOGGLE ---- */
    .lang-toggle {
      background: none;
      border: 2px solid rgba(255,255,255,0.22);
      border-radius: 9px;
      color: var(--text-muted);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      min-height: 44px;
      padding: 7px 13px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      transition: border-color 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }
    .lang-toggle:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
    .lang-opt { color: var(--text-muted); transition: color 0.2s ease; }
    .lang-opt.active { color: var(--text-light); }
    .lang-sep { color: rgba(255,255,255,0.2); }

    /* ---- HAMBURGER — semantic <button> ---- */
    .hamburger {
      display: none;
      width: 44px;
      height: 44px;
      position: relative;
      cursor: pointer;
      z-index: 1100;
      background: none;
      border: none;
      padding: 0;
      margin-left: auto;
      border-radius: 8px;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block;
      position: absolute;
      height: 3px;
      width: 26px;
      left: 9px;
      background: #fff;
      border-radius: 3px;
      transition: all 0.35s ease;
    }
    .hamburger span:nth-child(1) { top: 10px; }
    .hamburger span:nth-child(2) { top: 20px; }
    .hamburger span:nth-child(3) { top: 30px; }
    .hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

    /* ---- HERO ---- */
    header.hero {
      position: relative;
      overflow: hidden;
      padding: 100px 20px 85px;
      text-align: center;
      z-index: 0;
    }
    header.hero h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); letter-spacing: 0.08em; }
    header.hero > p { max-width: 650px; margin: 0.5rem auto 2rem; color: var(--text-muted); }
    .hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
    .hero-btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      padding: 16px 28px;
      min-width: 160px;
      min-height: 56px;
      border-radius: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      font-size: 0.9rem;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    .hero-btn-green { background: var(--accent-green); color: #fff; }
    .hero-btn-green:hover { background: #2f8a54; box-shadow: 0 0 20px rgba(65,163,106,0.7); }
    .hero-btn-secondary {
      background: rgba(11,16,20,0.62);
      border: 1px solid rgba(255,255,255,0.28);
      color: var(--text-light);
    }
    .hero-btn-secondary:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.46);
      box-shadow: 0 0 18px rgba(255,255,255,0.16);
    }
    .hero-btn-orange { background: var(--accent-orange); color: #fff; }
    .hero-btn-orange:hover { background: #c44f1e; box-shadow: 0 0 20px rgba(223,94,36,0.7); }

    .hero-slideshow { position: absolute; inset: 0; z-index: -2; }
    .hero-slide {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      opacity: 0; transition: opacity 2.6s ease-in-out;
    }
    .hero-slide.active { opacity: 1; }
    header.hero::after {
      content: ""; position: absolute; inset: 0; z-index: -1;
      background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
    }

    /* ---- MOBILE BOTTOM ACTION BAR ---- */
    .mobile-action-bar { display: none; }

    /* ---- SECTIONS ---- */
    section {
      padding: 36px 16px 40px;
      max-width: 1000px;
      margin: 0 auto;
      scroll-margin-top: 80px;
    }
    section h2,
    .lsf-section h2 {
      text-align: center;
      font-size: 1.7rem;
      letter-spacing: 0.15em;
      margin-bottom: 0.25rem;
    }
    section h2 + p.section-intro,
    .lsf-section h2 + p.section-intro {
      text-align: center;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 1.8rem;
    }
    .section-intro { margin-bottom: 1.1rem !important; }

    /* ---- CARDS ---- */
    .card {
      background: var(--card-bg);
      padding: 20px 18px;
      border-radius: var(--radius);
      margin: 16px 0;
      border: 1px solid var(--card-border);
      box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    }
    .card h3 {
      position: relative;
      display: inline-block;
      padding-bottom: 6px;
      margin-top: 1rem;
      font-size: 1rem;
    }
    .card h3:first-child { margin-top: 0; }
    .card h3::after {
      content: "";
      position: absolute; bottom: 0; left: 0;
      height: 3px; width: 34px; border-radius: 6px;
      background: linear-gradient(90deg, var(--accent-orange), #ffb088, var(--accent-orange));
      background-size: 200%;
      transition: width 0.25s ease;
    }
    .card:hover h3::after { width: 50px; animation: shine 1.6s linear infinite; }
    @keyframes shine { 0% { background-position: 0%; } 100% { background-position: 200%; } }
    .card p { line-height: 1.6; margin: 0.25rem 0 0.9rem; font-size: 0.95rem; }
    .card strong { font-size: 1rem; }

    /* ---- GRID ---- */
    .grid { display: grid; gap: 16px; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .grid .card { margin: 0; border-radius: 16px; }

    /* ---- VISIT BULLETS ---- */
    .visit-heading {
      font-weight: 700;
      margin-top: 0.4rem;
      margin-bottom: 0.3rem;
      font-size: 0.95rem;
    }
    .visit-heading::before { content: "◆"; color: var(--accent-orange); font-size: 0.7rem; margin-right: 6px; }
    .visit-rules p {
      position: relative;
      padding-left: 16px;
      margin: 0.2rem 0 0.55rem;
      font-size: 0.9rem;
    }
    .visit-rules p::before {
      content: "◆"; color: var(--accent-orange); font-size: 0.55rem;
      position: absolute; left: 0; top: 6px;
    }

    /* ---- SEASON ACTIONS & FAQ ---- */
    .season-card-heading {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 8px;
    }
    .season-card-heading h3 { margin: 0; }
    .season-actions {
      display: flex;
      gap: 7px;
      flex-shrink: 0;
    }
    .calendar-menu { position: relative; }
    .calendar-menu > summary { list-style: none; cursor: pointer; }
    .calendar-menu > summary::-webkit-details-marker { display: none; }
    .calendar-menu[open] > summary { background: #2f8a54; }
    .calendar-menu-panel {
      position: absolute;
      top: calc(100% + 7px);
      right: 0;
      z-index: 40;
      min-width: 220px;
      padding: 6px;
      background: rgba(11,16,20,0.99);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 8px;
      box-shadow: 0 14px 34px rgba(0,0,0,0.55);
    }
    .calendar-menu-panel a {
      min-height: 42px;
      display: flex;
      align-items: center;
      padding: 8px 11px;
      color: var(--text-light);
      border-radius: 6px;
      font-size: 0.84rem;
      font-weight: 700;
      text-decoration: none;
    }
    .calendar-menu-panel a:hover {
      color: #fff;
      background: rgba(223,94,36,0.16);
      text-decoration: none;
    }
    .season-action {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      border: 1px solid transparent;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }
    .season-action:hover { color: #fff; text-decoration: none; transform: translateY(-1px); }
    .event-calendar { background: var(--accent-green); }
    .event-calendar:hover { background: #2f8a54; }
    .event-facebook { background: #1877f2; }
    .event-facebook:hover { background: #0f65d8; }
    .event-facebook.is-placeholder {
      color: var(--text-muted);
      background: rgba(255,255,255,0.05);
      border-color: rgba(255,255,255,0.14);
      cursor: default;
    }
    .event-facebook.is-placeholder:hover { transform: none; }
    .visit-dates-note {
      margin: 12px 0 0;
      color: var(--text-muted);
      font-size: 0.8rem;
      font-style: italic;
      text-align: center;
    }
    .visit-faq {
      width: 100%;
      margin: 18px 0 0;
    }
    .visit-faq > h3 { margin-bottom: 12px; }
    .faq-list {
      margin-top: 4px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .faq-list details { border-bottom: 1px solid rgba(255,255,255,0.12); }
    .faq-list summary {
      position: relative;
      padding: 14px 38px 14px 0;
      font-weight: 700;
      cursor: pointer;
      list-style: none;
    }
    .faq-list summary::-webkit-details-marker { display: none; }
    .faq-list summary::after {
      content: "+";
      position: absolute;
      top: 11px;
      right: 4px;
      color: var(--accent-orange);
      font-size: 1.35rem;
      line-height: 1;
    }
    .faq-list details[open] summary::after { content: "\2212"; }
    .faq-list p {
      margin: -2px 34px 15px 0;
      color: var(--text-muted);
      font-size: 0.92rem;
    }

    /* ---- FOOTER ---- */
    footer {
      text-align: center;
      padding: 28px 20px 36px;
      color: var(--text-muted);
      font-size: 0.9rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 32px;
    }

    /* ==========================================
       MOBILE OVERRIDES (≤750px)
    ========================================== */
    @media (max-width: 750px) {
      body { padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px)); }

      /* --- Bottom action bar --- */
      .mobile-action-bar {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 900;
        gap: 10px;
        padding: 10px 14px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        background: rgba(11,16,20,0.97);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255,255,255,0.09);
        box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
      }
      .mobile-action-bar a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 48px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.95rem;
        letter-spacing: 0.03em;
        text-decoration: none;
        transition: all 0.2s ease;
      }
      .bar-listen  { background: var(--accent-orange);  color: #fff; }
      .bar-listen:hover  { background: #c44f1e; }
      .bar-control { background: var(--accent-orange); color: #fff; }
      .bar-control:hover { background: #c44f1e; }

      /* --- Topbar --- */
      .topbar { flex-direction: row; align-items: center; flex-wrap: wrap; }
      .hamburger { display: block; }

      .nav-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 12px 12px 16px;
        background: rgba(0,0,0,0.88);
        backdrop-filter: blur(10px);
        border-radius: 0 0 16px 16px;
      }
      .nav-buttons.show { display: flex; }
      .btn-small { width: 100%; min-height: 48px; font-size: 0.95rem; }
      .lang-toggle { width: 100%; justify-content: center; min-height: 48px; }
      .nav-dropdown { width: 100%; }
      .nav-dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 6px;
        padding: 5px;
        background: rgba(255,255,255,0.04);
        border-color: rgba(255,255,255,0.08);
        box-shadow: none;
      }
      .nav-dropdown-menu .btn-small {
        min-height: 44px;
        padding-left: 22px;
      }
      .season-action { width: 44px; height: 44px; }

      /* Hide Listen/Control from nav — they're in the bottom bar */
      .nav-hide-mobile { display: none !important; }

      /* --- Hero --- */
      header.hero { padding: 70px 16px 55px; }
      .hero-ctas { gap: 10px; }
      .hero-btn { width: 100%; min-width: unset; min-height: 52px; font-size: 0.95rem; }

      /* Hide Listen/Control hero CTAs — bottom bar handles them */
      .hero-hide-mobile { display: none; }

      /* --- Sections / cards --- */
      section { padding: 32px 14px 36px; }
      section h2, .lsf-section h2 { font-size: 1.5rem; letter-spacing: 0.1em; }

      /* --- Grid: stack on mobile --- */
      .grid-3 { grid-template-columns: 1fr; }
      .grid-4 { grid-template-columns: 1fr; }
    }

    /* ---- SUPPORT THE SHOW SECTION ---- */
    .support-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    @media (max-width: 600px) {
      .support-grid { grid-template-columns: 1fr; }
    }
    .support-item { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
    .support-img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 1/1;
      background: radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(255,255,255,0.025) 62%);
      border-bottom: 1px solid var(--card-border);
      overflow: hidden;
    }
    .support-img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .support-img-placeholder {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%; height: 100%;
      gap: 8px;
      color: var(--text-muted);
      font-size: 0.8rem;
      letter-spacing: 0.04em;
    }
    .support-img-placeholder span:first-child { font-size: 2.2rem; }
    .support-item-body { padding: 18px 20px 20px; flex: 1; }
    @media (min-width: 751px) { .support-item-body { padding: 20px 24px 24px; } }
    .support-item-body h3 { margin-top: 0; }
    .support-price {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--accent-orange);
      margin: 2px 0 10px;
      letter-spacing: 0.02em;
    }
    .support-how { margin-top: 0; }
    .payment-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 12px;
    }
    .payment-option {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 14px 16px;
      text-align: center;
    }
    .payment-option .pay-icon { font-size: 1.8rem; display: block; margin-bottom: 4px; }
    .payment-option .pay-logo {
      display: block;
      max-width: 150px;
      max-height: 34px;
      object-fit: contain;
      margin: 0 auto 8px;
    }
    .payment-option .pay-label { font-weight: 700; font-size: 0.95rem; display: block; }
    .payment-option .pay-detail { font-size: 0.82rem; color: var(--text-muted); display: block; margin-top: 2px; }
    @media (max-width: 500px) {
      .payment-grid { grid-template-columns: 1fr; }
    }

    /* ---- LIGHT SHOW FACTORY PROMO ---- */
    .lsf-section {
      max-width: 1000px;
      margin: 0 auto;
      padding: 10px 16px 40px;
      scroll-margin-top: 80px;
    }
    @media (min-width: 751px) {
      .lsf-section { padding: 10px 20px 50px; }
    }
    .lsf-promo {
      background: linear-gradient(135deg, #141b21 0%, #0f1820 100%);
      border: 1px solid rgba(223,94,36,0.35);
      border-radius: var(--radius);
      padding: 28px 24px;
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      box-shadow: 0 0 40px rgba(223,94,36,0.08), 0 8px 32px rgba(0,0,0,0.3);
      position: relative;
      overflow: hidden;
    }
    .lsf-promo::before {
      content: "";
      position: absolute;
      top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(223,94,36,0.12), transparent 70%);
      pointer-events: none;
    }
    .lsf-logo-wrap {
      flex-shrink: 0;
      width: 128px; height: 128px;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: drop-shadow(0 0 18px rgba(223,94,36,0.22));
    }
    .lsf-logo-wrap img {
      width: 100%; height: 100%;
      object-fit: contain;
    }
    .lsf-logo-placeholder {
      font-size: 2rem;
    }
    .lsf-content { flex: 1; min-width: 220px; }
    .lsf-content h3 {
      font-size: 1.1rem;
      margin: 0 0 6px;
      color: var(--text-light);
    }
    .lsf-content p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin: 0 0 14px;
      line-height: 1.5;
    }
    .lsf-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      background: var(--accent-orange);
      color: #fff;
      border-radius: 10px;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    .lsf-btn:hover { background: #c44f1e; box-shadow: 0 0 16px rgba(223,94,36,0.5); text-decoration: none; }
    @media (max-width: 500px) {
      .lsf-promo { flex-direction: column; align-items: flex-start; }
      .lsf-logo-wrap { width: 104px; height: 104px; }
    }

    /* Desktop-only refinements */
    @media (min-width: 751px) {
      body { padding-bottom: 0; }
      .logo { width: 72px; height: 72px; }
      .topbar.shrunk .logo { width: 42px; height: 42px; }
      section { padding: 40px 20px 45px; }
      section h2, .lsf-section h2 { font-size: 1.9rem; letter-spacing: 0.18em; }
      .card { padding: 26px 28px; margin: 20px 0; }
      .card h3 { font-size: 1.05rem; }
      .grid { gap: 24px; }
      .grid-3 { grid-template-columns: repeat(3, 1fr); }
      .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (min-width: 1100px) {
      .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    /* ---- STATUS BANNER ---- */
    .status-banner {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      width: 100%;
      padding: 10px 16px;
      font-size: 0.88rem;
      font-weight: 600;
      text-align: center;
      position: relative;
      z-index: 990;
    }
    .status-banner.visible { display: flex; }

    /* LIVE — pulsing red gradient */
    .status-live {
      background: linear-gradient(90deg, #1f6f45, #35a867, #1f6f45);
      background-size: 200%;
      animation: bannerShift 3s ease-in-out infinite;
      color: #fff;
    }
    @keyframes bannerShift {
      0%, 100% { background-position: 0%; }
      50% { background-position: 100%; }
    }

    /* TONIGHT — green tint */
    .status-tonight {
      background: rgba(65, 163, 106, 0.12);
      border-bottom: 1px solid rgba(65, 163, 106, 0.28);
      color: #7deba0;
    }

    /* SHOW OVER — same green, softer message */
    .status-over {
      background: rgba(54, 69, 80, 0.92);
      border-bottom: 1px solid rgba(150, 174, 190, 0.44);
      color: #edf4f8;
    }

    /* PRE-SEASON teaser */
    .status-preseason {
      background: rgba(45, 58, 68, 0.88);
      border-bottom: 1px solid rgba(150, 174, 190, 0.34);
      color: #dce7ed;
    }
    .status-postseason {
      background: rgba(45, 58, 68, 0.88);
      border-bottom: 1px solid rgba(150, 174, 190, 0.34);
      color: #dce7ed;
    }

    /* CANCELLED / ISSUE — amber */
    .status-cancelled {
      background: rgba(150, 18, 28, 0.88);
      border-bottom: 1px solid rgba(255, 88, 102, 0.82);
      color: #fff2f2;
    }
    .status-weather {
      background: rgba(150, 18, 28, 0.88);
      border-bottom: 1px solid rgba(255, 88, 102, 0.82);
      color: #fff2f2;
    }
    .status-technical {
      background: rgba(175, 24, 35, 0.92);
      border-bottom: 1px solid rgba(255, 105, 118, 0.9);
      color: #fff6f6;
    }

    /* Dot indicator */
    .status-dot {
      display: none;
      width: 8px; height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .status-live .status-dot {
      background: #8affad;
      box-shadow: 0 0 8px #8affad;
      animation: dotPulse 1s ease-in-out infinite;
    }
    @keyframes dotPulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.65); }
    }
    .status-tonight .status-dot  { background: var(--accent-green); }
    .status-over .status-dot     { background: #b8c9d4; }
    .status-preseason .status-dot { background: #a7bac6; opacity: 0.9; }
    .status-postseason .status-dot { background: #a7bac6; opacity: 0.9; }
    .status-cancelled .status-dot { background: #ffd1d1; box-shadow: 0 0 7px rgba(255, 255, 255, 0.72); }
    .status-weather .status-dot   { background: #ffd1d1; box-shadow: 0 0 7px rgba(255, 255, 255, 0.72); }
    .status-technical .status-dot { background: #ffe0e0; box-shadow: 0 0 8px rgba(255, 255, 255, 0.8); }

    /* CTA pill inside banner */
    .status-cta {
      display: none;
      align-items: center;
      padding: 3px 12px;
      border-radius: 20px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-decoration: none;
      border: 1px solid currentColor;
      color: inherit;
      opacity: 0.85;
      white-space: nowrap;
      transition: opacity 0.2s;
    }
    .status-cta:hover { opacity: 1; text-decoration: none; }
    .status-cta.show { display: inline-flex; }

    /* ---- GALLERY ---- */
    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 20px;
    }
    @media (max-width: 600px) {
      .gallery-grid { grid-template-columns: 1fr; }
    }

    .video-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      background: #000;
      aspect-ratio: 16/9;
      display: block;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 8px 28px rgba(0,0,0,0.4);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .video-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.6); text-decoration: none; }

    .video-thumb {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity 0.25s ease;
    }
    .video-card:hover .video-thumb { opacity: 0.75; }

    /* Play button overlay */
    .video-play {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.25);
      transition: background 0.2s ease;
    }
    .video-card:hover .video-play { background: rgba(0,0,0,0.4); }

    .play-circle {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: rgba(255,255,255,0.92);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, background 0.2s ease;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }
    .video-card:hover .play-circle { transform: scale(1.1); background: #fff; }

    .play-triangle {
      width: 0; height: 0;
      border-top: 11px solid transparent;
      border-bottom: 11px solid transparent;
      border-left: 18px solid #222;
      margin-left: 4px; /* optical centering */
    }

    /* Season + year badge */
    .video-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 28px 14px 12px;
      background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
      color: #fff;
    }
    .video-label-season {
      display: block;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.03em;
    }
    .video-label-year {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      opacity: 0.7;
      margin-top: 2px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* Channel link row */
    .gallery-channel {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px;
      border-radius: 12px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      text-decoration: none;
      color: var(--text-muted);
      font-size: 0.88rem;
      font-weight: 600;
      transition: all 0.2s ease;
    }
    .gallery-channel:hover {
      background: rgba(255,255,255,0.07);
      color: var(--text-light);
      text-decoration: none;
    }
    .yt-icon { color: #ff0000; flex-shrink: 0; }

    /* ---- SPONSORS ---- */
    .sponsor-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .sponsor-card {
      min-height: 150px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      border-style: dashed;
      background: rgba(255,255,255,0.035);
    }
    .sponsor-card h3 { margin-bottom: 6px; }
    .sponsor-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }
    @media (min-width: 751px) {
      .sponsor-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

    /* ---- PHOTO GALLERY ---- */
    .photo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .photo-tile {
      display: block;
      overflow: hidden;
      border-radius: 14px;
      aspect-ratio: 4/3;
      background: #0f151a;
      border: 1px solid var(--card-border);
      box-shadow: 0 8px 28px rgba(0,0,0,0.28);
      cursor: zoom-in;
    }
    .photo-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.25s ease;
    }
    .photo-tile:hover img { transform: scale(1.04); }
    @media (min-width: 650px) {
      .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (min-width: 1000px) {
      .photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

    .lightbox {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 72px 20px 28px;
      background: rgba(0,0,0,0.92);
      z-index: 3000;
    }
    .lightbox.open { display: flex; }
    .lightbox-img {
      max-width: min(1100px, 100%);
      max-height: calc(100vh - 130px);
      object-fit: contain;
      border-radius: 10px;
      box-shadow: 0 22px 70px rgba(0,0,0,0.55);
    }
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      border: 1px solid rgba(255,255,255,0.28);
      background: rgba(12,16,20,0.72);
      color: #fff;
      min-width: 44px;
      min-height: 44px;
      border-radius: 999px;
      cursor: pointer;
      font-size: 1.6rem;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .lightbox-close:hover,
    .lightbox-prev:hover,
    .lightbox-next:hover {
      background: rgba(255,255,255,0.14);
      border-color: rgba(255,255,255,0.55);
    }
    .lightbox-close { top: 18px; right: 18px; }
    .lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
    .lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }
    .lightbox-caption {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 16px;
      color: rgba(255,255,255,0.82);
      text-align: center;
      font-size: 0.88rem;
    }
    @media (max-width: 600px) {
      .lightbox { padding: 64px 12px 54px; }
      .lightbox-img { max-height: calc(100vh - 150px); }
      .lightbox-prev { left: 10px; }
      .lightbox-next { right: 10px; }
    }

    /* ---- PRIVACY & ANALYTICS CONSENT ---- */
    .footer-link {
      appearance: none;
      padding: 2px 4px;
      border: 0;
      background: transparent;
      color: #7fb4ff;
      font: inherit;
      cursor: pointer;
    }
    .footer-link:hover { text-decoration: underline; }

    .consent-banner {
      position: fixed;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 2800;
      width: min(920px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 18px;
      padding: 17px 18px;
      background: rgba(20,27,33,0.98);
      border: 1px solid rgba(255,255,255,0.17);
      border-radius: 10px;
      box-shadow: 0 16px 48px rgba(0,0,0,0.62);
      backdrop-filter: blur(12px);
    }
    .consent-banner[hidden] { display: none; }
    .consent-copy strong { display: block; margin-bottom: 3px; font-size: 1rem; }
    .consent-copy p {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.45;
    }
    .consent-actions,
    .privacy-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 9px;
      flex-wrap: wrap;
    }
    .consent-btn {
      min-height: 44px;
      padding: 9px 14px;
      border: 1px solid transparent;
      border-radius: 8px;
      font: inherit;
      font-size: 0.84rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .consent-accept {
      color: #fff;
      background: var(--accent-green);
      border-color: var(--accent-green);
    }
    .consent-accept:hover { background: #2f8a54; border-color: #2f8a54; }
    .consent-decline {
      color: var(--text-light);
      background: transparent;
      border-color: rgba(255,255,255,0.38);
    }
    .consent-decline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.58); }
    .consent-details {
      color: #9fc5ff;
      background: transparent;
      border-color: transparent;
    }
    .consent-details:hover { background: rgba(127,180,255,0.09); }

    .privacy-dialog {
      width: min(680px, calc(100% - 28px));
      max-height: min(820px, calc(100vh - 32px));
      padding: 0;
      overflow: auto;
      color: var(--text-light);
      background: var(--card-bg);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 10px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.72);
    }
    .privacy-dialog::backdrop { background: rgba(0,0,0,0.78); backdrop-filter: blur(4px); }
    .privacy-dialog-inner { position: relative; padding: 26px 28px 24px; }
    .privacy-dialog h2 {
      margin: 0 44px 14px 0;
      font-size: 1.45rem;
      letter-spacing: 0;
    }
    .privacy-dialog h3 { margin: 18px 0 5px; font-size: 1rem; }
    .privacy-dialog p { margin: 0 0 10px; color: var(--text-muted); font-size: 0.92rem; }
    .privacy-dialog a { color: #9fc5ff; }
    .privacy-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      color: var(--text-light);
      background: transparent;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      font-size: 1.5rem;
      cursor: pointer;
    }
    .privacy-close:hover { background: rgba(255,255,255,0.08); }
    .privacy-updated { margin-top: 18px !important; font-size: 0.8rem !important; }
    .privacy-actions {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }

    @media (max-width: 750px) {
      .consent-banner {
        left: 10px;
        right: 10px;
        bottom: calc(var(--bar-h) + 12px + env(safe-area-inset-bottom, 0px));
        width: calc(100% - 20px);
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
      }
      .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
      .consent-details { grid-column: 1 / -1; grid-row: 2; }
      .consent-btn { width: 100%; }
      .privacy-dialog-inner { padding: 22px 18px 20px; }
      .privacy-actions { display: grid; grid-template-columns: 1fr 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
      .photo-tile:hover img { transform: none; }
    }
