/* ============================================================
   戰鬥陀螺道館聯賽 — 暗夜霓虹電競風
   ============================================================ */

:root {
  /* 主色（可透過 Tweaks 覆蓋） */
  --bg-0: #05060f;
  --bg-1: #0a0d1e;
  --bg-2: #131a34;
  --bg-3: #1a2447;
  --panel: rgba(15, 20, 45, 0.6);
  --panel-strong: rgba(20, 26, 55, 0.85);

  --gold: #f5c24d;
  --gold-bright: #ffd970;
  --gold-deep: #b8871f;
  --gold-glow: rgba(245, 194, 77, 0.4);

  --neon-blue: #00e0ff;
  --neon-blue-glow: rgba(0, 224, 255, 0.5);
  --neon-purple: #b346ff;
  --neon-pink: #ff3d6e;
  --neon-green: #39ffb0;

  --text: #f4f6fb;
  --text-dim: #b8c0d6;
  --text-mute: #8a94b0;

  --border: rgba(245, 194, 77, 0.2);
  --border-strong: rgba(245, 194, 77, 0.55);
  --border-cool: rgba(0, 224, 255, 0.25);

  --radius: 4px;
  --radius-lg: 12px;

  --font-display: "Noto Serif TC", "Playfair Display", serif;
  --font-body: "Noto Sans TC", "Inter", system-ui, sans-serif;
  --font-mono: "Orbitron", "JetBrains Mono", monospace;
}

/* Gold intensity variants */
[data-gold="subtle"] {
  --gold: #d4a944;
  --gold-glow: rgba(212, 169, 68, 0.2);
}
[data-gold="neon"] {
  --gold: #ffd54a;
  --gold-bright: #ffe680;
  --gold-glow: rgba(255, 213, 74, 0.7);
}

/* Font variants */
[data-font="serif"] {
  --font-display: "Noto Serif TC", serif;
  --font-body: "Noto Sans TC", sans-serif;
}
[data-font="modern"] {
  --font-display: "Orbitron", "Noto Sans TC", sans-serif;
  --font-body: "Inter", "Noto Sans TC", sans-serif;
}
[data-font="techno"] {
  --font-display: "Bebas Neue", "Noto Sans TC", sans-serif;
  --font-body: "Noto Sans TC", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Global background layer ---------- */
.bg-layers {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 224, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(179, 70, 255, 0.06), transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 70%, rgba(245, 194, 77, 0.05), transparent 60%),
    linear-gradient(180deg, #05060f 0%, #0a0d1e 50%, #05060f 100%);
}
.bg-grid {
  position: absolute; top: 0; left: 0; right: 0; height: 100vh; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 224, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 224, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 85%);
}
.bg-noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

main, header, footer { position: relative; z-index: 1; }

/* ---------- Utility bar ---------- */
.util-bar {
  background: #000;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
  position: relative; z-index: 101;
}
.util-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 8px 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.util-item { display: inline-flex; align-items: center; gap: 6px; margin-right: 24px; }
.util-item b { color: var(--gold); font-family: var(--font-mono); }
.util-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon-pink); animation: pulse 1.5s infinite;
}
.util-right { display: flex; align-items: center; gap: 20px; }
.util-right a { color: var(--text-dim); transition: color .2s; }
.util-right a:hover { color: var(--gold); }
.util-lang {
  padding: 2px 8px; border: 1px solid var(--border);
  border-radius: 2px; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .util-bar { display: none; }
}

/* Brand titles */
.brand-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 16px; letter-spacing: 0.5px; color: var(--text);
  line-height: 1.1;
}
.brand-sub {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; color: var(--text-mute); margin-top: 2px;
}
.nav-brand { text-decoration: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(5, 6, 15, 0.75);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; gap: 28px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
  letter-spacing: 0.5px;
}
.nav-brand .shield {
  width: 32px; height: 36px; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  clip-path: polygon(50% 0, 100% 20%, 100% 70%, 50% 100%, 0 70%, 0 20%);
  color: var(--bg-0); font-size: 14px; font-weight: 900;
}
.nav-links { display: flex; gap: 24px; margin-left: auto; font-size: 14px; }
.nav-links a { color: var(--text-dim); transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 10px 20px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: var(--bg-0); font-weight: 700; border-radius: var(--radius);
  box-shadow: 0 0 20px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,.4);
  transition: transform .15s;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; }
.nav-eggo { width: 28px; height: 28px; object-fit: contain; }

/* AMPM Logo replacement */
.brand-logo {
  height: 44px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1) brightness(0.95);
  transition: filter .2s;
}
.brand-logo:hover { filter: none; }
.footer-logo { height: 52px; }
.brand-divider {
  width: 1px; height: 30px;
  background: var(--border-strong);
  margin: 0 4px;
}
.nav-brand { text-decoration: none; }

/* Hero arena — real video */
.arena-video {
  overflow: hidden;
  background: #000;
  border: 2px solid var(--border-strong);
  box-shadow:
    0 0 60px rgba(245, 194, 77, 0.2),
    0 0 100px rgba(0, 224, 255, 0.15),
    inset 0 0 40px rgba(0, 0, 0, 0.8);
}
.arena-vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.arena-overlay {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}
.arena-frame {
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(245, 194, 77, 0.25);
  pointer-events: none;
}
.arena-video::before, .arena-video::after {
  display: none;
}
.arena-tag {
  position: absolute; top: 20px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 61, 110, 0.4);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  border-radius: 3px;
  z-index: 3;
}
.ag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon-pink);
  animation: pulse 1s infinite;
}

/* ============== HERO title refined ============== */
.hero-title {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-title .line-super {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero-title .line-main {
  display: block;
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 900;
}
.hero-title .line-main.gold-fill {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title .line-year {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 6px;
  color: var(--neon-blue);
  padding: 4px 16px;
  border: 1px solid var(--border-cool);
  border-radius: 3px;
  text-shadow: 0 0 8px var(--neon-blue-glow);
}

/* ============== EGGO mascot decals (scattered small accents) ============== */
.eggo-decal-share {
  height: 110px; width: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
  position: absolute;
  right: 24px;
  bottom: 0;
  pointer-events: none;
}
@media (max-width: 700px) {
  .eggo-decal-share { display: none; }
}

/* EGGO 晚間快報 broadcast card */
.news-broadcast {
  max-width: 860px; margin: 0 auto 40px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(179, 70, 255, 0.12), rgba(0, 224, 255, 0.08)),
    var(--panel-strong);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.news-broadcast::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--gold), var(--neon-blue));
}
.nb-live {
  position: absolute; top: 16px; right: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 10px;
  background: var(--neon-pink);
  color: white;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  border-radius: 3px;
  z-index: 2;
}
.nb-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: white; animation: pulse 1s infinite;
}
.nb-anchor {
  width: 140px; height: auto; align-self: end;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
  margin-bottom: -24px;
}
.nb-content { display: flex; flex-direction: column; justify-content: center; }
.nb-channel {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.nb-badge {
  padding: 4px 10px;
  background: var(--gold);
  color: var(--bg-0);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  border-radius: 3px;
}
.nb-time { font-size: 12px; color: var(--text-dim); letter-spacing: 1px; }
.nb-headline {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 900;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 16px;
}
.nb-ticker {
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.5);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.nb-ticker-inner {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  font-size: 13px; color: var(--text-dim);
}
.nb-ticker-inner span::before {
  content: '● ';
  color: var(--neon-pink);
  margin-right: 8px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .news-broadcast { grid-template-columns: 1fr; text-align: center; }
  .nb-anchor { width: 100px; margin: 0 auto -24px; }
  .nb-headline { font-size: 18px; }
  .nb-live { top: 12px; right: 12px; }
  .nb-channel { justify-content: center; }
}

.price-card { position: relative; }

@media (max-width: 768px) {
  .nav-inner { padding: 12px 16px; gap: 12px; }
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 60px 32px 80px;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.hero[data-layout="center"] { grid-template-columns: 1fr; text-align: center; }
.hero[data-layout="center"] .hero-visual { display: none; }
.hero[data-layout="full"] { grid-template-columns: 1fr; }
.hero[data-layout="full"] .hero-content { text-align: center; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(90deg, rgba(245,194,77,.08), transparent);
  border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink); animation: pulse 1.5s infinite;
}
@keyframes pulse { 50% { opacity: .3; } }

.hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(48px, 8vw, 96px); line-height: 0.95;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.hero h1 .line1 { color: var(--text); }
.hero h1 .line2 {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}
.hero h1 .accent {
  color: var(--neon-blue); text-shadow: 0 0 20px var(--neon-blue-glow);
}

.hero-sub {
  font-size: 18px; color: var(--text-dim);
  max-width: 480px; margin-bottom: 36px;
}
.hero[data-layout="center"] .hero-sub, .hero[data-layout="full"] .hero-sub { margin-left: auto; margin-right: auto; }

.hero-stats {
  display: flex; gap: 32px; margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero[data-layout="center"] .hero-stats, .hero[data-layout="full"] .hero-stats { justify-content: center; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .num {
  font-family: var(--font-mono); font-weight: 700; font-size: 36px;
  color: var(--gold); letter-spacing: 2px;
}
.hero-stat .lbl { font-size: 12px; color: var(--text-mute); letter-spacing: 3px; margin-top: 2px; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero[data-layout="center"] .hero-ctas, .hero[data-layout="full"] .hero-ctas { justify-content: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold), var(--gold-deep));
  color: var(--bg-0); font-weight: 800; font-size: 16px; letter-spacing: 1px;
  border-radius: var(--radius);
  box-shadow:
    0 0 30px var(--gold-glow),
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -2px 0 rgba(0,0,0,.2);
  transition: transform .15s, box-shadow .15s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: translateX(-100%); transition: transform .6s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--gold-glow); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-ghost {
  padding: 18px 32px;
  border: 1px solid var(--border-strong);
  background: rgba(15,20,45,.5);
  color: var(--text);
  font-weight: 600; letter-spacing: 1px;
  border-radius: var(--radius);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(245,194,77,.08); }

/* Countdown */
.countdown {
  display: flex; gap: 12px; margin-top: 36px;
}
.hero[data-layout="center"] .countdown, .hero[data-layout="full"] .countdown { justify-content: center; }
.count-cell {
  min-width: 78px; padding: 16px 12px;
  background: linear-gradient(180deg, rgba(20,26,55,.9), rgba(10,13,30,.9));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  position: relative; overflow: hidden;
}
.count-cell::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  opacity: .4;
}
.count-cell .n {
  font-family: var(--font-mono); font-weight: 700; font-size: 32px;
  color: var(--gold); line-height: 1;
}
.count-cell .l { font-size: 10px; letter-spacing: 2px; color: var(--text-mute); margin-top: 6px; }

/* Hero visual — 陀螺 arena */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 560px;
  justify-self: end;
}
.arena {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(0,224,255,.15), transparent 50%),
    radial-gradient(circle at center, transparent 40%, rgba(245,194,77,.08) 60%, transparent 70%);
  border: 1px solid var(--border);
}
.arena::before, .arena::after {
  content: ''; position: absolute; inset: 20px;
  border: 1px dashed rgba(245,194,77,.2);
  border-radius: 50%;
}
.arena::after { inset: 60px; border-color: rgba(0,224,255,.2); }
.arena-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 30%; aspect-ratio: 1;
  background:
    radial-gradient(circle, var(--gold-bright), var(--gold) 40%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s infinite;
}
@keyframes pulse-glow {
  0%, 100% { filter: blur(0); opacity: .8; }
  50% { filter: blur(4px); opacity: 1; }
}
.beyblade {
  position: absolute; width: 40%; aspect-ratio: 1;
  top: 30%; animation: spin 2s linear infinite, float 6s ease-in-out infinite;
}
.beyblade.blue { left: 8%; }
.beyblade.red { right: 8%; animation-direction: reverse, normal; animation-duration: 2.2s, 6s; animation-delay: 0s, 1s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { top: 35%; } }
.beyblade svg { width: 100%; height: 100%; filter: drop-shadow(0 0 20px currentColor); }
.beyblade.blue svg { color: var(--neon-blue); }
.beyblade.red svg { color: var(--neon-pink); }

.spark {
  position: absolute; top: 45%; left: 50%; transform: translateX(-50%);
  width: 30%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--gold-bright), transparent 60%);
  border-radius: 50%;
  animation: spark 1.5s infinite;
  filter: blur(6px);
}
@keyframes spark { 50% { transform: translateX(-50%) scale(1.4); opacity: .5; } }

/* Live ticker */
.live-ticker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; color: var(--neon-green);
  margin-top: 20px;
  padding: 6px 12px;
  background: rgba(57, 255, 176, .08);
  border: 1px solid rgba(57, 255, 176, .3);
  border-radius: 999px;
}
.live-ticker .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neon-green); animation: pulse 1s infinite; }

/* ---------- Sections ---------- */
section { padding: 100px 32px; position: relative; }
.container { max-width: 1400px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 4px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 12px;
  padding-left: 20px; position: relative;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 12px; height: 1px;
  background: var(--gold);
}
h2.section-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
h2.section-title .gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-lead { font-size: 18px; color: var(--text-dim); max-width: 640px; margin-bottom: 48px; }

/* ---------- 賽制 dual track ---------- */
.dual-track {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 40px;
}
.track-card {
  padding: 40px 32px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.track-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.track-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.track-card.blue::before { background: linear-gradient(90deg, transparent, var(--neon-blue), transparent); }
.track-icon {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px;
  width: auto; min-width: 76px;
  padding: 10px 18px 12px;
  background: rgba(245,194,77,.1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--gold);
  margin-bottom: 24px;
}
.track-icon-label {
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: .12em; opacity: .85;
}
.track-icon-num {
  font-family: var(--font-mono); font-weight: 700; font-size: 26px; line-height: 1.1;
}
.track-card.blue .track-icon { background: rgba(0,224,255,.08); border-color: var(--border-cool); color: var(--neon-blue); }
.track-card h3 {
  font-family: var(--font-display); font-weight: 900; font-size: 28px;
  margin-bottom: 12px;
}
.track-card p { color: var(--text-dim); margin-bottom: 24px; }
.track-steps { display: flex; flex-direction: column; gap: 12px; }
.track-steps li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(10,13,30,.5);
  border-left: 2px solid var(--gold);
  font-size: 14px;
}
.track-card.blue .track-steps li { border-color: var(--neon-blue); }
.track-steps li .step-n {
  font-family: var(--font-mono); color: var(--gold); font-weight: 700; min-width: 20px;
}
.track-card.blue .step-n { color: var(--neon-blue); }

/* ---------- 350 breakdown ---------- */
.price-breakdown {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 20px;
  align-items: center;
  margin: 60px auto;
  max-width: 1100px;
}
.price-card {
  padding: 32px 24px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}
.price-card.big { border-color: var(--border-strong); box-shadow: 0 0 40px rgba(245,194,77,.15); }
.price-card .price {
  font-family: var(--font-mono); font-weight: 700; font-size: 48px; color: var(--text);
  line-height: 1;
}
.price-card.big .price {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: 64px;
}
.price-card .unit { font-size: 14px; color: var(--text-mute); }
.price-card .desc { margin-top: 12px; color: var(--text-dim); font-size: 14px; }
.price-card .name { font-weight: 700; margin-top: 12px; font-size: 16px; }
.op { font-family: var(--font-mono); font-size: 32px; color: var(--gold); text-align: center; }

@media (max-width: 900px) {
  .price-breakdown { grid-template-columns: 1fr; }
  .op { transform: rotate(90deg); }
}

/* ---------- Ticket versions ---------- */
.ticket-versions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 40px;
}
@media (max-width: 900px) { .ticket-versions { grid-template-columns: 1fr; } }

/* Ticket v1 — classic */
.ticket-v1 {
  padding: 40px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(10,13,30,.9));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.ticket-v1::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(245,194,77,.15), transparent 60%);
  pointer-events: none;
}
.ticket-badge {
  display: inline-block; padding: 4px 12px;
  background: var(--gold); color: var(--bg-0);
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  border-radius: 2px; margin-bottom: 16px;
}
.ticket-v1 h3 {
  font-family: var(--font-display); font-size: 28px; font-weight: 900;
  margin-bottom: 8px;
}
.ticket-v1 .sub { color: var(--text-dim); margin-bottom: 24px; font-size: 14px; }
.ticket-price-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 20px 0; border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border);
  margin-bottom: 24px;
}
.ticket-price-row .p {
  font-family: var(--font-mono); font-weight: 700; font-size: 56px;
  color: var(--gold); line-height: 1;
}
.ticket-price-row .u { color: var(--text-mute); }
.ticket-includes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.ticket-includes li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-dim);
}
.ticket-includes li::before {
  content: '✓'; color: var(--gold); font-weight: 800;
}

/* Ticket v2 — 潮流海報式 */
.ticket-v2 {
  padding: 0;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.ticket-v2-header {
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(179,70,255,.2), rgba(0,224,255,.15)),
    linear-gradient(180deg, var(--bg-2), var(--bg-3));
  position: relative;
}
.ticket-v2-header::before {
  content: 'BATTLE'; position: absolute; top: 10px; right: -20px;
  font-family: var(--font-mono); font-weight: 900; font-size: 120px;
  color: rgba(255,255,255,.03); letter-spacing: -4px;
  line-height: 1; pointer-events: none;
}
.ticket-v2-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--neon-blue);
  letter-spacing: 2px; margin-bottom: 8px;
}
.ticket-v2-header h3 {
  font-family: var(--font-display); font-size: 32px; font-weight: 900; line-height: 1;
}
.ticket-v2-header h3 .glitch {
  color: var(--neon-pink); text-shadow: 2px 0 var(--neon-blue), -2px 0 var(--gold);
}
.ticket-v2-body { padding: 32px; }
.ticket-v2 .stub {
  display: flex; justify-content: space-between; padding: 12px 32px;
  border-top: 1px dashed var(--border);
  background: var(--bg-0);
  font-family: var(--font-mono); font-size: 11px; color: var(--text-mute);
  letter-spacing: 2px;
  position: relative;
}
.ticket-v2 .stub::before, .ticket-v2 .stub::after {
  content: ''; position: absolute; top: -8px; width: 16px; height: 16px;
  background: var(--bg-0); border-radius: 50%;
}
.ticket-v2 .stub::before { left: -8px; }
.ticket-v2 .stub::after { right: -8px; }
.ticket-v2 .price-big {
  font-family: var(--font-mono); font-weight: 700; font-size: 72px;
  background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 20px;
}
.ticket-v2 .feat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 24px;
}
.ticket-v2 .feat-grid div {
  padding: 12px; background: rgba(0,224,255,.06); border-left: 2px solid var(--neon-blue);
  font-size: 13px;
}
.ticket-v2 .feat-grid strong {
  display: block; color: var(--neon-blue); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px; margin-bottom: 4px;
}
.btn-cyber {
  display: block; width: 100%;
  padding: 18px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
  color: white; font-weight: 800; letter-spacing: 3px; font-size: 14px;
  border-radius: var(--radius);
  box-shadow: 0 0 30px rgba(179,70,255,.4);
  transition: transform .15s;
  font-family: var(--font-mono);
  text-align: center;
}
.btn-cyber:hover { transform: translateY(-2px); }

/* ---------- Stores grid ---------- */
.stores-toolbar {
  display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap;
}
.city-chip {
  padding: 8px 16px; background: var(--panel);
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 13px; color: var(--text-dim);
  transition: all .2s;
}
.city-chip.active { background: var(--gold); color: var(--bg-0); border-color: var(--gold); font-weight: 700; }
.city-chip:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

.stores-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px;
}
.store-card {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s;
  position: relative;
}
.store-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.store-card.sold-out { opacity: .5; }
.store-card .row1 {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;
}
.store-card .city {
  font-family: var(--font-mono); font-size: 11px; color: var(--neon-blue); letter-spacing: 2px;
}
.store-card .tag {
  padding: 3px 8px; border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: 1px;
}
.tag-hot { background: rgba(255,61,110,.15); color: var(--neon-pink); border: 1px solid rgba(255,61,110,.3); }
.tag-fill { background: rgba(245,194,77,.15); color: var(--gold); border: 1px solid rgba(245,194,77,.3); }
.tag-out { background: rgba(107,116,146,.15); color: var(--text-mute); border: 1px solid rgba(107,116,146,.3); }
.store-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.store-card .addr { font-size: 12px; color: var(--text-mute); margin-bottom: 16px; }
.store-card .meta {
  display: flex; gap: 16px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: 13px;
}
.store-card .meta .k { color: var(--text-mute); font-size: 11px; }
.store-card .meta .v { color: var(--text); font-family: var(--font-mono); }
.store-card .progress {
  margin-top: 12px; height: 4px; background: var(--bg-3); border-radius: 2px; overflow: hidden;
}
.store-card .progress-bar { height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); border-radius: 2px; }
.store-card.hot .progress-bar { background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple)); }
.store-card .progress-txt { font-size: 11px; color: var(--text-mute); margin-top: 6px; display: flex; justify-content: space-between; }
.store-card .buy {
  display: block; text-align: center; margin-top: 14px; padding: 10px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: var(--bg-0); font-weight: 700; font-size: 13px; border-radius: 3px;
  transition: transform .15s;
}
.store-card .buy:hover { transform: translateY(-1px); }
.store-card.sold-out .buy { background: var(--bg-3); color: var(--text-mute); cursor: not-allowed; }

/* ---------- Leaderboard ---------- */
.leaderboard {
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lb-head, .lb-row {
  display: grid; grid-template-columns: 70px 1fr 100px 100px 100px;
  padding: 16px 24px; align-items: center; gap: 16px;
}
.lb-head {
  background: rgba(245,194,77,.06);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 2px;
}
.lb-row { border-bottom: 1px solid rgba(245,194,77,.08); font-size: 15px; transition: background .15s; }
.lb-row:hover { background: rgba(245,194,77,.04); }
.lb-row .rank {
  font-family: var(--font-mono); font-weight: 700; font-size: 22px; color: var(--text-mute);
}
.lb-row.top1 .rank { color: var(--gold); text-shadow: 0 0 8px var(--gold-glow); }
.lb-row.top2 .rank { color: #c0c8d8; }
.lb-row.top3 .rank { color: #cd7f32; }
.lb-row .name { font-weight: 600; }
.lb-row .city { font-size: 12px; color: var(--text-dim); font-family: var(--font-mono); }
.lb-row .num { font-family: var(--font-mono); color: var(--text); }
.lb-row .pts { color: var(--gold); font-weight: 700; }

@media (max-width: 700px) {
  .lb-head, .lb-row { grid-template-columns: 40px 1fr 60px 70px; font-size: 13px; padding: 12px 14px; gap: 8px; }
  .lb-head .city-col, .lb-row .city { display: none; }
}

/* ---------- Prizes ---------- */
.prizes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
  margin-top: 40px;
}
.prize-card {
  padding: 32px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative; overflow: hidden;
  transition: transform .3s;
}
.prize-card:hover { transform: translateY(-6px); }
.prize-card.gold { border-color: var(--gold); box-shadow: 0 0 40px rgba(245,194,77,.2); }
.prize-card.silver { border-color: rgba(192,200,216,.4); }
.prize-card.bronze { border-color: rgba(205,127,50,.4); }
.prize-medal {
  width: 80px; height: 80px; margin: 0 auto 20px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 2px solid var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}
.prize-card.silver .prize-medal { border-color: #c0c8d8; color: #c0c8d8; box-shadow: 0 0 20px rgba(192,200,216,.3); }
.prize-card.bronze .prize-medal { border-color: #cd7f32; color: #cd7f32; box-shadow: 0 0 20px rgba(205,127,50,.3); }
.prize-card.neon .prize-medal { border-color: var(--neon-blue); color: var(--neon-blue); box-shadow: 0 0 20px var(--neon-blue-glow); font-size: 14px; }
.prize-card h4 { font-family: var(--font-display); font-size: 22px; font-weight: 900; margin-bottom: 12px; }
.prize-card p { color: var(--text-dim); font-size: 14px; line-height: 1.7; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 900px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  text-align: left;
  font-size: 18px; font-weight: 600; color: var(--text);
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .plus {
  font-family: var(--font-mono); font-size: 24px; color: var(--gold);
  transition: transform .3s;
  min-width: 24px;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  color: var(--text-dim); font-size: 15px; line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ---------- Press release ---------- */
.press {
  max-width: 860px; margin: 60px auto 0;
  padding: 48px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.press::before {
  content: 'PRESS RELEASE / 第一波';
  position: absolute; top: -12px; left: 32px;
  padding: 4px 12px;
  background: var(--bg-0);
  color: var(--gold);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px;
}
.press h3 { font-family: var(--font-display); font-size: 26px; font-weight: 900; margin-bottom: 8px; line-height: 1.3; }
.press h4 { font-family: var(--font-display); font-size: 18px; color: var(--gold); margin-bottom: 24px; font-weight: 700; }
.press p { color: var(--text-dim); margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.press .highlights {
  margin-top: 24px; padding: 24px;
  background: rgba(245,194,77,.06); border-left: 3px solid var(--gold);
}
.press .highlights h5 { color: var(--gold); font-weight: 700; margin-bottom: 12px; font-size: 14px; letter-spacing: 2px; }
.press .highlights li { padding: 4px 0; color: var(--text-dim); font-size: 14px; }
.press .highlights li::before { content: '▸ '; color: var(--gold); }

/* ---------- Media strip ---------- */
.media-strip {
  display: flex; flex-wrap: wrap; gap: 24px 40px; justify-content: center;
  margin-top: 32px;
  padding: 32px;
  background: rgba(10,13,30,.5);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.media-strip span {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  color: var(--text-dim); opacity: .7; transition: opacity .2s, color .2s;
}
.media-strip span:hover { opacity: 1; color: var(--gold); }

/* ---------- Footer ---------- */
footer {
  padding: 60px 32px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand p { color: var(--text-mute); font-size: 13px; max-width: 360px; }
footer h5 { font-family: var(--font-mono); font-size: 12px; color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; }
footer ul li { padding: 4px 0; }
footer a { color: var(--text-dim); font-size: 14px; transition: color .2s; }
footer a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1400px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  color: var(--text-mute); font-size: 12px;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Social share ---------- */
.share-card {
  padding: 48px;
  background: linear-gradient(135deg, rgba(179,70,255,.15), rgba(245,194,77,.1));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.share-card h3 { font-family: var(--font-display); font-size: 32px; font-weight: 900; margin-bottom: 16px; }
.share-card p { color: var(--text-dim); margin-bottom: 24px; }
.share-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.share-btn {
  padding: 12px 24px;
  background: rgba(15,20,45,.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text); font-weight: 600; font-size: 14px;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Mobile overrides ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 40px 20px 60px; }
  .hero-visual { max-width: 400px; margin: 0 auto; justify-self: center; }
  .dual-track { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
}

/* ---------- Comfort refinements (A) ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
/* 內文區塊擋噪點,長段落閱讀更舒適 */
.press, .faq-list, .rules-grid, .timeline {
  position: relative;
  z-index: 2;
}
/* 收斂 op 符號視覺重量 */
.op { font-size: 22px !important; color: var(--text-mute) !important; opacity: .7; }
/* Ticket v2 水印減弱 + glitch 收斂 */
.ticket-v2-header::before { display: none !important; }
.ticket-v2-header h3 .glitch {
  color: var(--neon-pink);
  text-shadow: 1px 0 var(--neon-blue);
}
/* eyebrow 統一為 dim 色,金色留給真正重點 */
footer h5 { color: var(--text-dim); }


/* selection */
::selection { background: var(--gold); color: var(--bg-0); }

/* scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }


/* ============ Timeline (賽事日程) ============ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  padding-left: 30px;
}
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--border), var(--neon-blue));
}
.tl-item {
  position: relative;
  padding: 20px 0 20px 30px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
}
.tl-dot {
  position: absolute; left: -30px; top: 30px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg-1);
  border: 2px solid var(--border-strong);
  z-index: 1;
}
.tl-item.done .tl-dot {
  background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}
.tl-item.active .tl-dot {
  background: var(--neon-pink); border-color: var(--neon-pink);
  box-shadow: 0 0 12px rgba(255,61,110,.5);
  animation: pulse 1.5s infinite;
}
.tl-date {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--gold); font-weight: 700; letter-spacing: 1px;
  padding-top: 4px;
}
.tl-item.active .tl-date { color: var(--neon-pink); }
.tl-card {
  padding: 20px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .2s;
}
.tl-item.active .tl-card {
  border-color: var(--neon-pink);
  box-shadow: 0 0 30px rgba(255,61,110,.15);
}
.tl-card h4 {
  font-family: var(--font-display); font-size: 20px; font-weight: 900;
  margin-bottom: 6px;
}
.tl-card p { color: var(--text-dim); font-size: 14px; margin: 0; }
@media (max-width: 700px) {
  .tl-item { grid-template-columns: 1fr; gap: 8px; padding-left: 20px; }
  .tl-dot { left: -22px; top: 24px; }
  .timeline { padding-left: 20px; }
}

/* ============ Rules grid ============ */
.rules-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 40px;
}
.rule-card {
  padding: 28px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .2s, border-color .2s;
}
.rule-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.rule-num {
  font-family: var(--font-mono); font-weight: 900; font-size: 40px;
  color: var(--gold-deep); line-height: 1;
  opacity: .5;
  margin-bottom: 12px;
}
.rule-card h4 {
  font-family: var(--font-display); font-size: 20px; font-weight: 900;
  margin-bottom: 8px;
}
.rule-card p { color: var(--text-dim); font-size: 14px; line-height: 1.7; margin: 0; }

/* ============ Sponsors ============ */
.sponsors-grid {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 24px; align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.sponsors-grid:last-child { border-bottom: none; }
.tier-title {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--gold); letter-spacing: 3px; font-weight: 700;
  writing-mode: horizontal-tb;
}
.sp-logos {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.sp-item {
  min-width: 160px; padding: 20px 24px;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: border-color .2s;
  gap: 4px;
}
.sp-item.main { min-width: 200px; padding: 28px 32px; border-color: var(--border-strong); }
.sp-item:hover { border-color: var(--gold); }
.sp-item img { max-height: 40px; width: auto; filter: brightness(0) invert(1) brightness(0.95); }
.sp-item.main img { max-height: 52px; }
.sp-text {
  font-family: var(--font-display); font-weight: 900; font-size: 20px;
  color: var(--text);
}
.sp-item.main .sp-text { font-size: 28px; color: var(--gold); }
.sp-sub { font-size: 11px; color: var(--text-mute); letter-spacing: 2px; font-family: var(--font-mono); }
.sp-logos.small .sp-item { min-width: 130px; padding: 14px 16px; }
.sp-logos.small .sp-text { font-size: 15px; }
@media (max-width: 700px) {
  .sponsors-grid { grid-template-columns: 1fr; gap: 12px; }
  .sp-item, .sp-item.main { min-width: unset; flex: 1 1 40%; }
}

/* ============ News figure (broadcast image) ============ */
.news-figure {
  max-width: 900px; margin: 32px auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  position: relative;
}
.news-figure img { width: 100%; height: auto; display: block; }
.news-figure figcaption {
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; color: var(--text-dim);
  letter-spacing: 1px;
}
.nf-badge {
  padding: 3px 10px;
  background: var(--gold); color: var(--bg-0);
  font-family: var(--font-mono); font-size: 11px; font-weight: 800; letter-spacing: 2px;
  border-radius: 2px;
}

/* Press meta */
.press-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-bottom: 16px; margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; color: var(--text-mute);
}
.press-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.btn-ghost.small { padding: 10px 20px; font-size: 13px; }

/* ============ Contact grid ============ */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 40px;
}
.contact-card {
  padding: 32px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all .2s;
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.contact-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  display: grid; place-items: center;
  background: rgba(245,194,77,.1); border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--gold); font-size: 24px;
}
.contact-card h4 {
  font-family: var(--font-display); font-size: 17px; font-weight: 900;
  margin-bottom: 12px;
}
.contact-card a {
  display: block; font-family: var(--font-mono); font-size: 15px;
  color: var(--gold); font-weight: 700; margin-bottom: 8px;
  transition: color .2s;
}
.contact-card a:hover { color: var(--gold-bright); }
.contact-card p { color: var(--text-mute); font-size: 12px; margin: 0; }

/* ============ Footer additions ============ */
.footer-desc { line-height: 1.7; margin: 16px 0; }
.footer-social {
  display: flex; gap: 8px; margin-top: 16px;
}
.footer-social a {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  color: var(--text-dim); transition: all .2s;
}
.footer-social a:hover {
  background: var(--gold); color: var(--bg-0); border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-legal {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.footer-legal a { color: var(--text-mute); font-size: 12px; }
.footer-legal a:hover { color: var(--gold); }
