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

/* 漢堡選單按鈕：算機版預設隱藏 */
.nav-toggle {
  display: none;
}

: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; }
main { padding-top: 72px; }

/* ---------- 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: fixed; top: 0; left: 0; right: 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 — 保留原始配色,深色底上加微弱亮化 */
.brand-logo {
  height: 56px; width: auto; object-fit: contain;
  filter: brightness(1.15) contrast(1.05);
  transition: filter .2s, transform .2s;
  display: block;
}
.brand-logo:hover {
  filter: brightness(1.3) contrast(1.05);
  transform: scale(1.02);
}
.footer-logo {
  height: 64px;
  filter: brightness(1.15) contrast(1.05);
}
.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: 8px;
}
.arena-overlay {
  position: absolute; inset: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}
.arena-frame {
  position: absolute; inset: -3px;
  border-radius: 8px;
  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: 16px; left: 16px;
  transform: none;
  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 year section ============== */
.line-year-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.line-year-marquee {
  flex: 1;
}

/* ============== 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: inline;
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 900;
  margin-right: 0.1em;
  line-height: 1.1;
  vertical-align: top;
  white-space: normal;
}
.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);
}

/* ============== HERO bottom band (EGGO + marquee) — redesigned ============== */
.hero-bottom-band {
  grid-column: 1 / -1;
  margin: 72px -32px 0;
  padding: 0;
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}
/* 內層 EGGO + 文字 : 水平居中、EGGO 跟文字同色系規則 baseline */
.hero-bottom-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 100% at 20% 50%, rgba(245, 194, 77, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(10, 13, 30, 0.4), rgba(5, 6, 15, 0.6));
  pointer-events: none;
}
.band-inner {
  position: relative;
  padding: 28px 40px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eggo-mascot {
  width: 130px; height: auto;
  filter: drop-shadow(0 8px 24px rgba(245, 194, 77, 0.15));
  align-self: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.band-copy {
  min-width: 0;
  padding-left: 28px;
  border-left: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.band-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--gold); letter-spacing: 3px;
  margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 8px;
}
.band-eyebrow::before {
  content: ''; width: 20px; height: 1px; background: var(--gold);
}
.band-headline {
  font-family: var(--font-display); font-size: 24px;
  font-weight: 900; color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.band-sub {
  font-size: 14px; color: var(--text-dim);
  line-height: 1.55;
}
.band-marquee {
  grid-column: 1 / -1;
  overflow: hidden;
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
}
.band-marquee-inner {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 80s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: .6;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .hero-bottom-band { margin: 48px -20px 0; }
  .band-inner { grid-template-columns: 1fr; gap: 16px; text-align: center; padding: 24px 20px; }
  .hero-eggo-mascot { width: 100px; margin: 0 auto; }
  .band-copy { padding-left: 0; border-left: none; padding-top: 16px; border-top: 1px solid var(--border); }
  .band-eyebrow { justify-content: center; }
}

/* 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: 8px; }
  .nav-links { 
    display: none !important;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 6, 15, 0.95);
    border-bottom: 1px solid var(--border);
    gap: 0;
    font-size: 14px;
    overflow-x: visible;
    -webkit-overflow-scrolling: auto;
    z-index: 99;
    padding: 16px;
  }
  
  .nav-links.active {
    display: flex !important;
  }
  
  .nav-links a {
    white-space: nowrap;
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(245, 194, 77, 0.1);
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.2s;
  }
  
  .nav-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
  
  /* Hero 手機版強制單欄 */
  .hero {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 20px 16px 30px !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .hero-content {
    width: 100% !important;
    order: 1;
  }
  
  .hero-visual {
    width: 100% !important;
    order: 2;
    max-width: none !important;
  }
  
  .hero-bottom-section {
    width: 100% !important;
    order: 3;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  
  .hero-bottom-section > a:first-child {
    width: 100% !important;
    padding: 14px 20px !important;
    text-align: center !important;
    font-size: 14px !important;
    display: block !important;
  }
  
  .hero-leaderboard-wrapper {
    width: 100% !important;
    max-width: none !important;
    order: 3 !important;
  }
  
  .hero-title { font-size: 24px !important; }
  .hero-title .line-main { font-size: 40px !important; }
  
  /* 影片手機版 */
  .arena {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
  }
  
  /* 冠軍排行榜手機版 */
  .champion-ranking-scroll {
    gap: 8px;
    padding: 8px 0;
  }
  
  .champion-card {
    width: 100px;
    padding: 12px 8px;
  }
  
  .champion-name {
    font-size: 12px;
  }
  
  .champion-count {
    font-size: 16px;
  }
  
  /* 榮耀位階卡手機版 */
  .honor-tier-cards {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .honor-card {
    padding: 12px 8px;
  }
  
  .honor-card.tier-2 {
    transform: scale(1);
  }
  
  .honor-card.tier-1 {
    transform: scale(1);
  }
  
  .tier-title {
    font-size: 14px !important;
  }
  
  /* 行動項目手機版 */
  .hero-actions-row {
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }
  
  .hero-actions-row .btn-primary {
    width: 100%;
  }
  
  .hero-action-link {
    font-size: 14px !important;
    width: 100%;
  }
  
  /* 積分榜手機版 */
  .hero-leaderboard {
    font-size: 12px !important;
  }
  
  .hero-leaderboard-row {
    padding: 10px 6px !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 40px 32px 20px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.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: 8px; margin-top: -4px;
}
.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: 24px;
}
.hero[data-layout="center"] .hero-sub, .hero[data-layout="full"] .hero-sub { margin-left: auto; margin-right: auto; }

/* 桌機版：標題與說明並排 */
/* 年度列：原本樣式，只凸顯早到晩到 */
.line-year-marquee {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  overflow: visible;
}

.marquee-text {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.5px;
  color: var(--text-dim);
}

.marquee-text .neon-text {
  color: var(--text);
  text-shadow: 0 0 12px var(--neon-blue-glow), 0 0 8px var(--gold-glow);
  font-weight: 700;
  letter-spacing: 2px;
}

/* 標題下方單行說明（放大 30%） */
.hero-sub-desktop {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
  display: block;
  max-width: 100%;
}

/* 手機版：多行說明，隱藏桌機版 */
.hero-sub-mobile {
  display: none;
}

@media (max-width: 768px) {
  .line-year-section {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .line-year-marquee {
    margin-bottom: 0;
  }
  
  .hero-sub-desktop {
    display: none;
  }
  
  .hero-sub-mobile {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
}

.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; margin-bottom: 24px; }
.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: 16 / 9;
  width: 100%;
  max-width: 100%;
  justify-self: end;
  align-self: flex-start;
  margin-top: -8px;
}
.arena {
  position: absolute; inset: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0,224,255,.1), transparent 50%),
    linear-gradient(45deg, transparent 40%, rgba(245,194,77,.05) 60%, transparent 70%);
  border: 1px solid var(--border);
}
.arena::before, .arena::after {
  display: none;
}
.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 {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: rgba(245,194,77,.1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--gold);
  font-family: var(--font-mono); font-weight: 700; font-size: 20px;
  margin-bottom: 24px;
}
.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; }
}

/* ---------- 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;
}
.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-note {
  display: inline-block; margin-left: 6px;
  padding: 1px 8px; font-size: 10px; font-weight: 700;
  color: #ffb84d; background: rgba(255,184,77,.12);
  border: 1px solid rgba(255,184,77,.35); border-radius: 4px;
  letter-spacing: 1px; vertical-align: 2px;
  font-family: var(--font-mono);
}
/* Contact icon variants (Facebook / Instagram) */
.contact-icon-fb { font-family: Georgia, serif; font-style: italic; }
.contact-icon-ig { font-size: 18px; letter-spacing: -1px; }
.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); }


/* ============================================================
 * PATCH · 2026.08 · 直接報名 CTA / Ticket single / Preview leaderboard
 * ============================================================ */

/* --- Ticket single (取代原本雙欄) --- */
.ticket-single{
  display:flex; justify-content:center;
  margin-top:32px;
}
.ticket-v1.solo{
  max-width:560px;
  width:100%;
  background:linear-gradient(180deg, #1a1b17 0%, #131410 100%);
  border:1px solid rgba(217,182,97,.25);
  border-radius:16px;
  padding:36px 36px 32px;
  position:relative;
  overflow:hidden;
}
.ticket-v1.solo::before{
  content:"";
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, transparent, #d9b661, transparent);
}
.ticket-v1.solo .ticket-badge{
  display:inline-block;
  font-family:"JetBrains Mono","Orbitron",monospace;
  font-size:11px; letter-spacing:.2em;
  padding:5px 12px;
  background:rgba(217,182,97,.12);
  color:#f0d17a;
  border:1px solid rgba(217,182,97,.3);
  border-radius:4px;
  margin-bottom:16px;
}
.ticket-v1.solo h3{
  font-family:"Noto Serif TC",serif; font-weight:900;
  font-size:28px; margin:0 0 6px; color:#f3efe6;
}
.ticket-v1.solo .sub{
  color:#a7a49a; font-size:14px; margin:0 0 24px;
}
.ticket-v1.solo .ticket-price-row{
  display:flex; align-items:baseline; gap:10px;
  padding:18px 0; margin-bottom:20px;
  border-top:1px dashed rgba(255,255,255,.1);
  border-bottom:1px dashed rgba(255,255,255,.1);
}
.ticket-v1.solo .ticket-price-row .p{
  font-family:"Bebas Neue","Orbitron",sans-serif;
  font-size:56px; color:#f0d17a; line-height:1;
  letter-spacing:.02em;
}
.ticket-v1.solo .ticket-price-row .u{
  color:#a7a49a; font-size:13px;
}
.ticket-v1.solo .ticket-includes{
  list-style:none; padding:0; margin:0 0 24px;
}
.ticket-v1.solo .ticket-includes li{
  position:relative; padding-left:22px; margin-bottom:10px;
  font-size:14px; color:#e6e2d8; line-height:1.55;
}
.ticket-v1.solo .ticket-includes li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color:#d9b661; font-weight:700;
}
.ticket-v1.solo .btn-primary.btn-lg{
  padding:16px 24px; font-size:16px;
  border-radius:10px;
}

/* --- 積分榜 · Season preview mode (取代開賽前假資料) --- */
.leaderboard.preview-mode{
  padding:0; background:transparent; border:none;
}
.preview-banner{
  padding:22px 24px;
  background:linear-gradient(180deg, rgba(217,182,97,.08), rgba(217,182,97,0));
  border:1px solid rgba(217,182,97,.25);
  border-radius:14px 14px 0 0;
  border-bottom:none;
}
.preview-banner .pv-badge{
  display:inline-block;
  font-family:"JetBrains Mono",monospace;
  font-size:10px; letter-spacing:.24em; color:#d9b661;
  padding:4px 10px;
  background:rgba(217,182,97,.15);
  border:1px solid rgba(217,182,97,.35);
  border-radius:100px;
  margin-bottom:10px;
}
.preview-banner h3{
  font-family:"Noto Serif TC",serif; font-weight:900;
  font-size:22px; margin:0 0 6px; color:#f3efe6;
}
.preview-banner p{
  color:#a7a49a; font-size:14px; margin:0; line-height:1.55;
}

.preview-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  background:#181916;
  border:1px solid rgba(217,182,97,.25);
  border-top:none;
  border-radius:0 0 14px 14px;
  overflow:hidden;
}
.preview-block{
  padding:24px 26px 22px;
  border-right:1px solid rgba(255,255,255,.06);
}
.preview-block:last-child{ border-right:none }
.preview-block .pv-title{
  display:flex; align-items:center; gap:12px;
  margin-bottom:16px;
}
.preview-block .pv-num{
  font-family:"JetBrains Mono",monospace;
  font-size:11px; letter-spacing:.15em;
  padding:4px 8px;
  background:rgba(217,182,97,.12);
  color:#f0d17a;
  border:1px solid rgba(217,182,97,.3);
  border-radius:4px;
}
.preview-block h4{
  font-family:"Noto Serif TC",serif; font-weight:700;
  font-size:17px; margin:0; color:#f3efe6;
}
.pv-table{
  width:100%; border-collapse:collapse; font-size:14px;
  margin-bottom:12px;
}
.pv-table thead th{
  font-family:"JetBrains Mono",monospace;
  font-size:10px; letter-spacing:.2em; text-transform:uppercase;
  color:#6c6a63; font-weight:500;
  text-align:left; padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.pv-table tbody td{
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.05);
  color:#e6e2d8;
}
.pv-table tbody tr:last-child td{ border-bottom:none }
.pv-table .pv-rank{
  font-weight:700; color:#f3efe6; white-space:nowrap;
}
.pv-table .pv-pt{
  font-family:"Bebas Neue",sans-serif;
  color:#d9b661; text-align:right; white-space:nowrap;
}
.pv-table .pv-pt b{ font-size:22px; letter-spacing:.02em }
.pv-table .pv-pt span{ font-size:11px; color:#a7a49a; margin-left:2px }
.pv-table .pv-note{ color:#a7a49a; font-size:13px; padding-left:12px }
.pv-hint{
  color:#6c6a63; font-size:12px; margin:8px 0 0;
  padding-top:12px;
  border-top:1px dashed rgba(255,255,255,.06);
  line-height:1.55;
}

@media (max-width:760px){
  .preview-grid{ grid-template-columns:1fr }
  .preview-block{ border-right:none; border-bottom:1px solid rgba(255,255,255,.06) }
  .preview-block:last-child{ border-bottom:none }
}

/* --- Leaderboard empty state (開賽後尚無資料) --- */
.lb-empty{
  padding:60px 24px; text-align:center;
  color:#a7a49a; font-size:14px;
}

/* --- Store card region tag --- */
.tag.tag-region{
  background:rgba(122,168,214,.14);
  color:#a9c7e2;
  border:1px solid rgba(122,168,214,.25);
}


/* ========== John Wick 殺手榜風格積分榜 ========== */
.leaderboard-container.bounty-style {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 2px solid #3a3a3a;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.leaderboard-container.bounty-style .lb-header {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 24px 32px;
  border-bottom: 2px solid #3a3a3a;
  text-align: center;
}

.leaderboard-container.bounty-style .lb-header h3 {
  font-family: "Georgia", "Noto Serif TC", serif;
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #d4af37;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(212, 175, 55, 0.3);
  letter-spacing: 2px;
}

.leaderboard-container.bounty-style .lb-subtitle {
  font-family: "Courier New", monospace;
  font-size: 12px;
  color: #999;
  margin: 0;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.leaderboard-board {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 0;
  border-collapse: collapse;
}

.bounty-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Courier New", monospace;
}

.bounty-table thead {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-bottom: 2px solid #3a3a3a;
}

.bounty-table thead tr {
  display: table-row;
}

.bounty-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-right: 1px solid #2a2a2a;
}

.bounty-table thead th:last-child {
  border-right: none;
}

.bounty-table tbody tr.bounty-row {
  display: table-row;
  border-bottom: 1px solid #2a2a2a;
  transition: background-color 0.2s ease;
}

.bounty-table tbody tr.bounty-row:hover {
  background: rgba(212, 175, 55, 0.05);
}

.bounty-table tbody tr.bounty-row:nth-child(1) {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
}

.bounty-table tbody tr.bounty-row:nth-child(1) td.lb-rank {
  color: #d4af37;
  font-weight: 900;
  font-size: 18px;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.bounty-table tbody tr.bounty-row:nth-child(2) td.lb-rank {
  color: #c0c0c0;
  font-weight: 900;
  font-size: 16px;
}

.bounty-table tbody tr.bounty-row:nth-child(3) td.lb-rank {
  color: #cd7f32;
  font-weight: 900;
  font-size: 16px;
}

.bounty-table tbody td {
  padding: 20px 24px;
  font-size: 14px;
  color: #e0e0e0;
  border-right: 1px solid #2a2a2a;
}

.bounty-table tbody td:last-child {
  border-right: none;
}

.bounty-table tbody td.lb-rank {
  font-weight: 700;
  color: #999;
  text-align: center;
  width: 60px;
}

.bounty-table tbody td.lb-name {
  font-weight: 600;
  color: #f0f0f0;
}

.bounty-table tbody td.lb-store {
  font-size: 12px;
  color: #999;
}

.bounty-table tbody td.lb-points {
  text-align: right;
  font-weight: 700;
  color: #d4af37;
  font-size: 16px;
}

.lb-empty {
  text-align: center;
  padding: 60px 24px !important;
  color: #666 !important;
  font-style: italic;
  font-size: 14px;
}

@media (max-width: 768px) {
  .leaderboard-container.bounty-style .lb-header h3 {
    font-size: 24px;
  }
  
  .bounty-table thead th,
  .bounty-table tbody td {
    padding: 12px 16px;
    font-size: 12px;
  }
  
  .bounty-table tbody td.lb-points {
    font-size: 14px;
  }
}


/* Hero 積分榜樣式 */
.hero-leaderboard {
  margin-top: 24px;
  max-height: 400px;
  overflow-y: auto;
}

.hero-bounty {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.hero-bounty-table {
  font-size: 12px;
  line-height: 1.4;
}

.hero-bounty-table thead tr {
  border-bottom: 2px solid var(--gold);
}

.hero-bounty-table th {
  padding: 8px 4px;
  text-align: left;
  color: var(--gold);
  font-weight: 600;
}

.hero-bounty-table td {
  padding: 6px 4px;
  border-bottom: 1px solid rgba(245, 194, 77, 0.1);
}

.hero-bounty-table .lb-rank {
  width: 40px;
  color: var(--gold);
  font-weight: 700;
}

.hero-bounty-table .lb-name {
  flex: 1;
  color: var(--text);
}

.hero-bounty-table .lb-points {
  width: 50px;
  text-align: right;
  color: var(--neon-green);
  font-weight: 600;
}

.hero-bounty-table .lb-row.active {
  background: rgba(245, 194, 77, 0.05);
}

.hero-bounty-table .lb-row.empty {
  opacity: 0.3;
}

.hero-bounty-table .lb-row.empty .lb-name,
.hero-bounty-table .lb-row.empty .lb-points {
  color: var(--text-mute);
}


/* Hero 左右雙欄配置 */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.hero-visual {
  width: 100%;
  margin-top: 24px;
}

/* 榮耀位階卡 */
/* ============= 冠軍排行榜樣式 ============= */
.champion-ranking-wrapper {
  margin-bottom: 32px;
  padding: 0;
  margin-left: -12px;
  margin-right: -12px;
}

.champion-ranking-scroll {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 16px 12px;
  scroll-behavior: smooth;
  /* 隱藏滾動條 */
  scrollbar-width: none;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.champion-ranking-scroll::-webkit-scrollbar {
  display: none;
}

.champion-ranking-track {
  display: flex;
  gap: 12px;
  min-width: min-content;
}

.champion-card {
  flex: 0 0 auto;
  width: 140px;
  padding: 20px 16px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 194, 77, 0.08) 0%, rgba(0, 224, 255, 0.03) 100%);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(245, 194, 77, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.champion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 194, 77, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.champion-card:hover {
  box-shadow: 0 12px 40px rgba(245, 194, 77, 0.4), 0 0 30px rgba(0, 224, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(135deg, rgba(245, 194, 77, 0.15) 0%, rgba(0, 224, 255, 0.08) 100%);
  border-color: var(--gold-bright);
}

.champion-card:hover::before {
  opacity: 1;
}

.champion-rank {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.champion-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  word-break: break-word;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.champion-count {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-blue) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  letter-spacing: 1px;
  font-family: var(--font-mono);
}

.champion-stores {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.champion-ranking-empty {
  padding: 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
}

/* ============= 冠軍詳細資料 Modal ============= */
.champion-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.champion-modal-content {
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.95) 0%, rgba(30, 30, 50, 0.95) 100%);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(245, 194, 77, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.champion-modal-content h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-bright);
  margin-bottom: 24px;
  text-align: center;
}

.champion-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.champion-modal-close:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: scale(1.1);
}

.champion-modal-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(245, 194, 77, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.stat-row:hover {
  background: rgba(245, 194, 77, 0.1);
  transform: translateX(4px);
}

.stat-row.total {
  border-left-color: var(--neon-blue);
  background: rgba(0, 224, 255, 0.08);
}

.stat-row.total:hover {
  background: rgba(0, 224, 255, 0.12);
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
}

.stat-value {
  font-size: 18px;
  font-weight: 900;
  color: var(--neon-blue);
  font-family: var(--font-mono);
}

.stat-row.total .stat-value {
  color: var(--gold-bright);
}

/* 舊的榮耀卡片樣式（保留以兼容） */
.honor-tier-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.honor-card {
  padding: 16px 12px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: rgba(245, 194, 77, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.honor-card.tier-3 {
  box-shadow: 0 0 12px rgba(245, 194, 77, 0.3);
}

.honor-card.tier-2 {
  box-shadow: 0 0 20px rgba(245, 194, 77, 0.5);
  transform: scale(1.05);
}

.honor-card.tier-1 {
  box-shadow: 0 0 30px rgba(245, 194, 77, 0.7), 0 0 60px rgba(245, 194, 77, 0.3);
  transform: scale(1.1);
}

.tier-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.tier-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.honor-card.tier-2 .tier-title {
  font-size: 18px;
}

.honor-card.tier-1 .tier-title {
  font-size: 20px;
}

.tier-holder {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
}

/* 行動項目同行左右 */
.hero-actions-row {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  align-items: center;
}

.hero-actions-row .btn-primary {
  flex: 1;
  margin: 0;
}

.hero-action-link-row {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
}

.hero-action-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s;
  text-align: center;
}

.hero-action-link:hover {
  text-decoration: underline;
  color: var(--gold-bright);
}

/* 積分榜 */
.hero-leaderboard {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: none;
  height: auto;
  overflow-y: auto;
}

/* 積分榜容器調整 */
.leaderboard-container {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.leaderboard-board {
  max-height: 500px;
  overflow-y: auto;
}

.leaderboard-table {
  width: 100%;
  font-size: 12px;
  line-height: 1.4;
}

.leaderboard-table thead tr {
  border-bottom: 2px solid var(--gold);
}

.leaderboard-table th {
  padding: 8px 4px;
  text-align: left;
  color: var(--gold);
  font-weight: 600;
}

.leaderboard-table td {
  padding: 6px 4px;
  border-bottom: 1px solid rgba(245, 194, 77, 0.1);
}

.leaderboard-table .lb-rank {
  width: 40px;
  color: var(--gold);
  font-weight: 700;
}

.leaderboard-table .lb-name {
  flex: 1;
  color: var(--text);
}

.leaderboard-table .lb-points {
  width: 50px;
  text-align: right;
  color: var(--neon-green);
  font-weight: 600;
}

.leaderboard-table .lb-row.active {
  background: rgba(245, 194, 77, 0.05);
}

.leaderboard-table .lb-row.empty {
  opacity: 0.3;
}

.leaderboard-table .lb-row.empty .lb-name,
.leaderboard-table .lb-row.empty .lb-points {
  color: var(--text-mute);
}


/* ============= NEON TEXT EFFECT ============= */
.neon-text {
  color: var(--neon-blue);
  font-weight: 700;
  text-shadow: 
    0 0 8px var(--neon-blue),
    0 0 16px var(--neon-blue),
    0 0 24px rgba(0, 224, 255, 0.6),
    0 0 32px rgba(0, 224, 255, 0.4);
  animation: neon-glow 3s ease-in-out infinite;
}

@keyframes neon-glow {
  0% {
    color: var(--neon-blue);
    text-shadow: 
      0 0 8px var(--neon-blue),
      0 0 16px var(--neon-blue),
      0 0 24px rgba(0, 224, 255, 0.6),
      0 0 32px rgba(0, 224, 255, 0.4);
  }
  25% {
    color: var(--neon-purple);
    text-shadow: 
      0 0 8px var(--neon-purple),
      0 0 16px var(--neon-purple),
      0 0 24px rgba(179, 70, 255, 0.6),
      0 0 32px rgba(179, 70, 255, 0.4);
  }
  50% {
    color: var(--neon-pink);
    text-shadow: 
      0 0 8px var(--neon-pink),
      0 0 16px var(--neon-pink),
      0 0 24px rgba(255, 61, 110, 0.6),
      0 0 32px rgba(255, 61, 110, 0.4);
  }
  75% {
    color: var(--gold);
    text-shadow: 
      0 0 8px var(--gold),
      0 0 16px var(--gold),
      0 0 24px rgba(245, 194, 77, 0.6),
      0 0 32px rgba(245, 194, 77, 0.4);
  }
  100% {
    color: var(--neon-blue);
    text-shadow: 
      0 0 8px var(--neon-blue),
      0 0 16px var(--neon-blue),
      0 0 24px rgba(0, 224, 255, 0.6),
      0 0 32px rgba(0, 224, 255, 0.4);
  }
}


/* ============= SOCIAL ICON STYLES ============= */
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  color: var(--text-dim);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-icon-link:hover {
  color: var(--gold);
  filter: drop-shadow(0 0 8px var(--gold-glow));
  transform: scale(1.15);
}



/* ============= 參賽紀錄樣式 ============= */
.champion-modal-matches {
  margin-top: 24px;
  border-top: 1px solid rgba(245, 194, 77, 0.2);
  padding-top: 16px;
}

.match-history-header {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.match-history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
}

.match-history-row {
  display: grid;
  grid-template-columns: 100px 1fr 60px 60px;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(0, 224, 255, 0.05);
  border-left: 2px solid var(--neon-blue);
  border-radius: 4px;
  font-size: 12px;
  transition: all 0.2s ease;
}

.match-history-row:hover {
  background: rgba(0, 224, 255, 0.1);
  transform: translateX(2px);
}

.match-date {
  color: var(--text-dim);
  font-weight: 600;
}

.match-store {
  color: var(--text);
  font-weight: 500;
}

.match-rank {
  color: var(--neon-blue);
  font-weight: 700;
  text-align: center;
}

.match-score {
  color: var(--neon-green);
  font-weight: 700;
  text-align: right;
}

.match-history-empty {
  padding: 16px;
  text-align: center;
  color: var(--text-mute);
  font-size: 12px;
}



/* 冠軍逐位參賽明細補強 */
.champion-detail-hint {
  margin-top: 8px;
  color: var(--neon-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2px;
}

.champion-card:focus-visible {
  outline: 2px solid var(--neon-blue);
  outline-offset: 3px;
}

.champion-modal-content {
  max-width: 680px;
  max-height: min(88vh, 760px);
  overflow-y: auto;
}

.champion-modal-public-note {
  margin: -12px 0 18px;
  text-align: center;
  color: var(--text-mute);
  font-size: 12px;
}

@media (max-width: 600px) {
  .champion-modal-content {
    width: calc(100% - 24px);
    padding: 24px 16px;
  }

  .match-history-row {
    grid-template-columns: 86px 1fr 72px 54px;
    gap: 5px;
    font-size: 11px;
    padding: 9px 8px;
  }
}

/* Homepage: compact official partner strip */
.partners-honor {
  padding: 24px 32px 26px;
  background: linear-gradient(135deg, rgba(0,224,255,0.045) 0%, rgba(245,194,77,0.045) 100%);
  border-top: 2px solid var(--border-strong);
  border-bottom: 1px solid var(--border);
}
.partners-honor-inner { max-width: 1200px; margin: 0 auto; }
.partners-honor h2 {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
}
.partners-honor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  text-align: center;
}
.partner-slot { min-width: 0; }
.partner-label {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
}
.partner-label-blue { color: #00e0ff; }
.partner-name {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}
a.partner-link { text-decoration: underline; transition: color .18s, text-shadow .18s; }
a.partner-link:hover, a.partner-link:focus-visible { color: var(--gold); text-shadow: 0 0 16px rgba(245,194,77,.55); }
@media (max-width: 768px) {
  .partners-honor { padding: 22px 20px 24px; }
  .partners-honor h2 { margin-bottom: 16px; font-size: 20px; }
  .partners-honor-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Mobile navigation: transparent icon-only social links */
@media (max-width: 768px) {
  .nav-links .social-icon-link {
    width: 38px;
    height: 38px;
    padding: 0;
    margin: 8px 4px 0 0;
    border-bottom: 0;
    background: transparent;
    color: var(--text-dim);
  }

  .nav-links .social-icon-link .social-icon {
    width: 22px;
    height: 22px;
  }
}

/* ============= 首頁冠軍列與積分榜閱讀性修正 ============= */
/* 每個視窗僅呈現 3 張冠軍卡片，其餘以水平滑動瀏覽。 */
.champion-ranking-wrapper {
  margin-left: 0;
  margin-right: 0;
}

.champion-ranking-scroll {
  display: block;
  width: 100%;
  gap: 0;
  padding: 12px 0;
  scroll-snap-type: x mandatory;
  mask-image: none;
}

.champion-ranking-track {
  width: 100%;
  min-width: 0;
  gap: 12px;
}

.champion-card {
  box-sizing: border-box;
  flex: 0 0 calc((100% - 24px) / 3);
  width: calc((100% - 24px) / 3);
  min-height: 126px;
  padding: 24px 12px 18px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.champion-name {
  margin: 0;
  font-size: clamp(14px, 1.4vw, 18px);
  -webkit-line-clamp: 1;
}

.champion-count {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1;
}

.champion-detail-hint {
  color: var(--neon-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

/* 積分欄為固定右欄，避免在長名單或窄螢幕中消失。 */
.leaderboard-board {
  overflow-x: hidden;
}

.hero-bounty-table,
.leaderboard-table {
  table-layout: fixed;
}

.hero-bounty-table col.lb-rank-col,
.leaderboard-table col.lb-rank-col {
  width: 56px;
}

.hero-bounty-table col.lb-points-col,
.leaderboard-table col.lb-points-col {
  width: 104px;
}

.hero-bounty-table .lb-rank,
.leaderboard-table .lb-rank {
  width: 56px;
}

.hero-bounty-table .lb-points,
.leaderboard-table .lb-points {
  width: 104px !important;
  min-width: 104px;
  text-align: right !important;
  padding-right: 14px !important;
  white-space: nowrap;
  color: var(--neon-green) !important;
  font-weight: 800;
  background: rgba(0, 224, 255, .06);
}

.hero-bounty-table th.lb-points,
.leaderboard-table th.lb-points {
  color: var(--gold) !important;
}

@media (max-width: 700px) {
  .champion-ranking-scroll { padding: 10px 0; }
  .champion-ranking-track { gap: 8px; }
  .champion-card {
    flex-basis: calc((100% - 16px) / 3);
    width: calc((100% - 16px) / 3);
    min-height: 108px;
    padding: 16px 6px 12px;
    gap: 8px;
  }
  .champion-name { font-size: 12px; }
  .champion-count { font-size: 20px; }
  .champion-detail-hint { font-size: 10px; }
  .hero-bounty-table col.lb-rank-col,
  .leaderboard-table col.lb-rank-col { width: 46px; }
  .hero-bounty-table col.lb-points-col,
  .leaderboard-table col.lb-points-col { width: 76px; }
  .hero-bounty-table .lb-rank,
  .leaderboard-table .lb-rank { width: 46px; }
  .hero-bounty-table .lb-points,
  .leaderboard-table .lb-points { width: 76px !important; min-width: 76px; padding-right: 8px !important; }
}

/* 防止水平冠軍列以內容寬度撐開首頁右欄。 */
.hero-leaderboard-wrapper,
.champion-ranking-wrapper,
#champion-ranking-container {
  min-width: 0;
}

/* ============= 冠軍列翻頁與前 96 名積分榜 ============= */
.champion-ranking-controls {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.champion-nav {
  width: 34px;
  height: 54px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: rgba(11, 18, 34, .9);
  color: var(--gold);
  font-family: inherit;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.champion-nav:hover:not(:disabled),
.champion-nav:focus-visible:not(:disabled) {
  background: var(--gold);
  color: #07101d;
}

.champion-nav:disabled {
  opacity: .28;
  cursor: not-allowed;
}

.hero-bounty-table {
  font-size: 10px;
  line-height: 1.2;
}

.hero-bounty-table th,
.hero-bounty-table td {
  padding-top: 4px;
  padding-bottom: 4px;
}

.hero-bounty-table .lb-points {
  font-size: 11px;
}

@media (max-width: 700px) {
  .champion-ranking-controls {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 5px;
  }
  .champion-nav {
    width: 28px;
    height: 46px;
    font-size: 26px;
  }
  .hero-bounty-table {
    font-size: 9px;
  }
  .hero-bounty-table .lb-points {
    font-size: 10px;
  }
}

/* 積分榜選手公開詳情按鈕 */
.lb-player-name {
  display: inline-block;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(255, 211, 77, .35);
  text-underline-offset: 3px;
}

.lb-player-name:hover,
.lb-player-name:focus-visible {
  color: var(--gold);
  text-decoration-color: currentColor;
  outline: none;
}


/* ---------- Public leaderboard coverage ---------- */
.lb-coverage-note {
  margin: 0;
  color: #a8a8a8;
  font-size: 12px;
  letter-spacing: 1px;
}

.pending-leaderboard-section {
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(31, 31, 31, .96), rgba(15, 15, 15, .96));
  border: 1px solid rgba(212, 175, 55, .45);
  border-radius: 8px;
  overflow: hidden;
}

.pending-leaderboard-heading {
  padding: 18px 24px 14px;
  border-bottom: 1px solid #3a3a3a;
}

.pending-leaderboard-heading h4 {
  margin: 0 0 6px;
  color: #d4af37;
  font-family: "Georgia", "Noto Serif TC", serif;
  font-size: 18px;
}

.pending-leaderboard-heading p {
  margin: 0;
  color: #aaa;
  font-size: 12px;
  line-height: 1.7;
}

.pending-leaderboard-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pending-leaderboard-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) minmax(140px, auto) 60px;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-bottom: 1px solid #2a2a2a;
  color: #ddd;
  font-family: "Courier New", monospace;
}

.pending-leaderboard-row:last-child {
  border-bottom: 0;
}

.pending-leaderboard-index {
  color: #777;
  text-align: center;
  font-size: 12px;
}

.pending-leaderboard-name {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 600;
}

.pending-leaderboard-session {
  color: #999;
  font-size: 11px;
  text-align: right;
}

.pending-leaderboard-points {
  color: #d4af37;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lb-coverage-note {
    font-size: 11px;
    line-height: 1.6;
  }

  .pending-leaderboard-heading {
    padding: 16px;
  }

  .pending-leaderboard-heading h4 {
    font-size: 16px;
  }

  .pending-leaderboard-row {
    grid-template-columns: 26px minmax(0, 1fr) 58px;
    gap: 8px;
    padding: 10px 16px;
  }

  .pending-leaderboard-session {
    grid-column: 2;
    grid-row: 2;
    font-size: 10px;
    text-align: left;
  }

  .pending-leaderboard-points {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
}


/* ---------- Champion spotlight / media wall ---------- */
.latest-champion-showcase {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 24px auto 0;
  padding: 0 32px;
}
.latest-champion-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  min-height: 500px;
  background: linear-gradient(135deg, rgba(12, 14, 31, .96), rgba(24, 8, 20, .94));
  border: 1px solid rgba(245, 194, 77, .48);
  box-shadow: 0 0 40px rgba(245, 194, 77, .14), 0 16px 44px rgba(0, 0, 0, .26);
  overflow: hidden;
}
.latest-champion-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
  background: #03040a;
  border-right: 1px solid rgba(245, 194, 77, .22);
}
.latest-champion-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 70%, rgba(5, 6, 15, .8) 100%);
}
.latest-champion-art img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: contain;
  display: block;
}
.latest-champion-art-placeholder {
  width: 100%;
  min-height: 500px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: radial-gradient(circle at center, rgba(245, 194, 77, .12), transparent 62%);
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 2px;
  text-align: center;
}
.latest-champion-stamp {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 9px 12px;
  color: #080912;
  background: var(--gold);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 1px;
  transform: rotate(-4deg);
  box-shadow: 0 0 24px rgba(245, 194, 77, .35);
}
.latest-champion-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 56px 54px 48px;
}
.latest-champion-eyebrow {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
}
.latest-champion-copy h2 {
  margin-top: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: 2px;
}
.latest-champion-name {
  margin-top: 18px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.15;
}
.latest-champion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
}
.latest-champion-meta span + span::before { content: "·"; margin-right: 16px; color: var(--neon-pink); }
.latest-champion-media-note {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(245, 194, 77, .42);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
}
.latest-champion-lead {
  max-width: 460px;
  margin-top: 22px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.85;
}
.latest-champion-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.latest-champion-primary,
.latest-champion-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 800;
}
.latest-champion-primary { color: #060711; background: var(--gold); }
.latest-champion-primary span { margin-left: 10px; font-size: 20px; }
.latest-champion-secondary { color: #fff; border: 1px solid rgba(255, 255, 255, .3); }
.latest-champion-primary:hover { background: var(--gold-bright); }
.latest-champion-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* 道館名單頁面的最新冠軍入口 */
.directory-latest-champion {
  display: none;
  margin: 0 0 18px;
  padding: 16px;
  background: linear-gradient(135deg, #070912, #1c0d18);
  border: 1px solid rgba(245, 194, 77, .5);
  color: #fff;
}
.directory-latest-label { color: #f5c24d; font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; }
.directory-latest-main { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.directory-latest-main img { width: 76px; height: 76px; object-fit: contain; background: #03040a; border: 1px solid rgba(245, 194, 77, .35); }
.directory-latest-main strong { display: block; font-size: 18px; line-height: 1.3; }
.directory-latest-main span, .directory-latest-main small { display: block; margin-top: 3px; color: #c8cede; font-size: 12px; }
.directory-latest-champion > a { display: inline-block; margin-top: 12px; color: #f5c24d; font-size: 13px; font-weight: 800; }

@media (max-width: 900px) {
  .latest-champion-showcase { padding: 0 20px; }
  .latest-champion-inner { grid-template-columns: 1fr; }
  .latest-champion-art { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(245, 194, 77, .22); }
  .latest-champion-art img, .latest-champion-art-placeholder { min-height: 0; height: auto; aspect-ratio: 1 / 1; }
  .latest-champion-art::after { background: linear-gradient(180deg, transparent 58%, rgba(5, 6, 15, .86) 100%); }
  .latest-champion-copy { padding: 34px 28px 36px; }
}
@media (max-width: 560px) {
  .latest-champion-showcase { margin-top: 16px; padding: 0 14px; }
  .latest-champion-copy h2 { font-size: 34px; }
  .latest-champion-name { font-size: 30px; }
  .latest-champion-copy { padding: 28px 20px 26px; }
  .latest-champion-actions { align-items: stretch; flex-direction: column; }
  .latest-champion-primary, .latest-champion-secondary { width: 100%; }
  .directory-latest-champion { margin-bottom: 14px; }
}


/* 首屏右欄緊湊版最新冠軍焦點 */
.hero-leaderboard-wrapper > .latest-champion-showcase {
  max-width: none;
  margin: 0 0 16px;
  padding: 0;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-inner {
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  min-height: 220px;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-inner.no-media {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-inner.no-media .latest-champion-art {
  display: none;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-inner.no-media .latest-champion-copy {
  padding: 24px;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-art,
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-art-placeholder {
  min-height: 220px;
}

.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-art img {
  min-height: 220px;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-copy {
  padding: 24px 24px 24px 22px;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-eyebrow {
  font-size: 9px;
  letter-spacing: 1.2px;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-copy h2 {
  margin-top: 8px;
  font-size: 25px;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-name {
  margin-top: 9px;
  font-size: 24px;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-meta {
  gap: 3px 8px;
  margin-top: 9px;
  font-size: 10px;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-meta span + span::before { margin-right: 8px; }
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-lead {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-actions { margin-top: 15px; gap: 8px; }
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-primary,
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-secondary {
  min-height: 34px;
  padding: 0 11px;
  font-size: 11px;
}
.hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-stamp {
  top: 12px;
  left: 12px;
  padding: 6px 8px;
  font-size: 9px;
}
@media (max-width: 900px) {
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-inner { grid-template-columns: minmax(140px, .44fr) minmax(0, 1fr); }
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-art,
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-art-placeholder,
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-art img { min-height: 190px; }
}
@media (max-width: 560px) {
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-inner { grid-template-columns: 118px minmax(0, 1fr); min-height: 184px; }
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-art,
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-art-placeholder,
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-art img { min-height: 184px; }
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-copy { padding: 18px 14px; }
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-inner.no-media .latest-champion-copy { padding: 20px 18px 18px; }
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-copy h2 { font-size: 20px; }
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-name { font-size: 19px; }
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-lead { display: none; }
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-actions { flex-direction: column; align-items: stretch; margin-top: 12px; }
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-primary,
  .hero-leaderboard-wrapper > .latest-champion-showcase .latest-champion-secondary { width: 100%; }
}

/* 分店歷屆冠軍統計 */
.directory-champion-history {
  width: min(100%, 1600px);
  margin: 36px auto 0;
  padding: 30px 40px 42px;
  background: linear-gradient(135deg, #080b12 0%, #111827 100%);
  border-top: 2px solid rgba(233, 69, 95, 0.65);
  color: #fff;
}

.directory-history-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 18px;
}

.directory-history-kicker,
.dojo-champion-history-region {
  display: block;
  color: #ffcf5a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.directory-history-header h2 {
  margin: 7px 0 6px;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 1px;
}

.directory-history-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.directory-history-filter-label {
  display: grid;
  gap: 7px;
  min-width: 230px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.directory-history-filter-label select {
  width: 100%;
  min-height: 44px;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(255, 207, 90, 0.55);
  border-radius: 6px;
  background: #171d2a;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.directory-history-summary {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.directory-history-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dojo-champion-history-card {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

.dojo-champion-history-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dojo-champion-history-card-head h3 {
  margin: 6px 0 0;
  color: #fff;
  font-size: 21px;
}

.dojo-champion-history-card-count {
  display: grid;
  flex: 0 0 auto;
  justify-items: end;
  gap: 3px;
  text-align: right;
}

.dojo-champion-history-card-count > strong {
  color: #ffcf5a;
  font-size: 18px;
  white-space: nowrap;
}

.dojo-champion-history-card-count > small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.dojo-champion-history-records {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.dojo-champion-history-record {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.dojo-champion-history-record img,
.dojo-champion-history-placeholder {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
  background: #262d3b;
}

.dojo-champion-history-placeholder {
  display: grid;
  place-items: center;
  color: #ffcf5a;
  font-size: 23px;
}

.dojo-champion-history-record-info {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.dojo-champion-history-record-info b {
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dojo-champion-history-record-info span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.dojo-champion-history-badge {
  padding: 4px 7px;
  border: 1px solid rgba(255, 207, 90, 0.45);
  border-radius: 999px;
  color: #ffcf5a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  white-space: nowrap;
}

.directory-history-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 34px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

@media (max-width: 980px) {
  .directory-history-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .directory-champion-history {
    margin-top: 24px;
    padding: 26px 16px 32px;
  }

  .directory-history-header {
    display: grid;
    align-items: start;
    gap: 18px;
  }

  .directory-history-filter-label { min-width: 0; }
  .directory-history-list { grid-template-columns: 1fr; }

  .dojo-champion-history-card { padding: 16px; }
  .dojo-champion-history-card-head h3 { font-size: 19px; }
}
