/* ============================================================
   富湾杯官网 · 设计系统
   配色：夜赛黑底 + 醒狮黄/富湾金主色 + 醒狮红点睛
   ============================================================ */

:root {
  /* 品牌色 */
  --black:    #0B0B0D;   /* 夜赛黑 / 页面底色 */
  --ink:      #060608;   /* 最深 */
  --panel:    #131317;   /* 区块底 */
  --card:     #1A1A1F;   /* 卡片 */
  --card-2:   #212128;   /* 卡片悬浮/次级 */
  --yellow:   #FFB81C;   /* 醒狮黄 主色 */
  --yellow-2: #FFCB45;
  --red:      #E4002B;   /* 醒狮红 */
  --red-2:    #FF2D4E;
  --gold:     #C8A24A;   /* 富湾金 */
  --gold-2:   #E6C66E;
  --white:    #F6F6F8;
  --muted:    #9A9AA4;
  --muted-2:  #6E6E78;
  --line:     rgba(255,255,255,.09);
  --line-2:   rgba(255,255,255,.14);

  --grad-gold:  linear-gradient(135deg, #FFD76A 0%, #FFB81C 45%, #C8821C 100%);
  --grad-red:   linear-gradient(135deg, #FF3B3B 0%, #E4002B 60%, #9E0020 100%);
  --grad-fire:  linear-gradient(120deg, #FFCB45 0%, #FF7A00 40%, #E4002B 100%);
  --shadow:    0 18px 50px rgba(0,0,0,.55);
  --shadow-sm: 0 8px 24px rgba(0,0,0,.4);

  --maxw: 1240px;
  --nav-h: 68px;
  --r:   14px;   /* 圆角 */
  --r-sm: 9px;

  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--yellow); color: #000; }

/* 滚动条 */
::-webkit-scrollbar { height: 8px; width: 9px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2c2c34; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- 排版 ---------- */
.display {
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.01em;
  line-height: .98;
  text-transform: none;
}
.kicker {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--yellow);
}
.kicker::before {
  content: ""; width: 26px; height: 3px; background: var(--grad-fire); border-radius: 3px;
}
.text-grad { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-red  { color: var(--red-2); }

/* ---------- 布局 ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section-head { margin-bottom: clamp(28px, 4vw, 52px); }
.section-head h2 {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 900; font-style: italic; line-height: 1; margin-top: 12px;
}
.section-head p { color: var(--muted); margin-top: 14px; max-width: 60ch; font-size: 1.02rem; }
.center { text-align: center; }
.center .kicker::before { display: none; }
.center .kicker { letter-spacing: .26em; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 14px 26px; border-radius: 999px; font-weight: 800; font-size: .98rem;
  letter-spacing: .02em; transition: transform .18s, box-shadow .18s, background .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--grad-gold); color: #1a1206; box-shadow: 0 10px 26px rgba(255,184,28,.32); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(255,184,28,.42); }
.btn--ghost { background: rgba(255,255,255,.06); color: var(--white); border: 1px solid var(--line-2); }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn--red { background: var(--grad-red); color: #fff; box-shadow: 0 10px 26px rgba(228,0,43,.3); }
.btn--red:hover { transform: translateY(-3px); }

/* ============================================================
   导航
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(8,8,10,.55); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent; transition: background .3s, border-color .3s;
}
.nav.scrolled { background: rgba(8,8,10,.92); border-bottom-color: var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.brand-lockup { display: flex; align-items: center; gap: 11px; }
.brand-badge {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-gold); display: grid; place-items: center;
  font-weight: 900; color: #1a1206; font-size: .82rem; font-style: italic;
  box-shadow: 0 4px 14px rgba(255,184,28,.4); flex: none;
  border: 2px solid rgba(255,255,255,.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-size: 1.18rem; font-weight: 900; font-style: italic; letter-spacing: .02em; }
.brand-text span { font-size: .58rem; letter-spacing: .42em; color: var(--gold-2); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 9px 15px; font-size: .95rem; font-weight: 600;
  color: #cfcfd6; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--yellow); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--grad-fire); border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 9px; border: 1px solid var(--line-2); position: relative; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .2s; top: 50%;
}
.nav-toggle::before { transform: translateY(-7px); }
.nav-toggle::after  { transform: translateY(7px); }
.nav-toggle span { opacity: 1; }
body.menu-open .nav-toggle span { opacity: 0; }
body.menu-open .nav-toggle::before { transform: translateY(0) rotate(45deg); }
body.menu-open .nav-toggle::after  { transform: translateY(0) rotate(-45deg); }

/* 移动菜单面板 */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: rgba(8,8,10,.98); backdrop-filter: blur(8px);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6px; font-size: 1.4rem; font-weight: 800; font-style: italic;
  border-bottom: 1px solid var(--line); color: #ddd;
}
.mobile-menu a.active { color: var(--yellow); }
.mobile-menu a span { font-size: .65rem; letter-spacing: .2em; color: var(--muted-2); font-style: normal; font-weight: 600; }
.mobile-menu .btn { margin-top: 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,13,.55) 0%, rgba(11,11,13,.2) 35%, rgba(11,11,13,.85) 78%, var(--black) 100%),
    radial-gradient(120% 80% at 20% 100%, rgba(228,0,43,.22), transparent 60%);
}
.hero__content { position: relative; z-index: 2; padding-bottom: clamp(52px, 9vh, 110px); padding-top: 120px; width: 100%; }
.hero__edition {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--gold);
  font-size: .82rem; font-weight: 700; letter-spacing: .14em; color: var(--gold-2);
  background: rgba(200,162,74,.08); backdrop-filter: blur(4px);
}
.hero__edition .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-2); box-shadow: 0 0 0 4px rgba(228,0,43,.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero__title {
  font-size: clamp(2.8rem, 11vw, 8.2rem); font-weight: 900; font-style: italic;
  line-height: .9; letter-spacing: -.02em; text-shadow: 0 6px 40px rgba(0,0,0,.6);
}
.hero__title .l1 { display: block; color: #fff; }
.hero__title .l2 { display: block; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { margin-top: 22px; font-size: clamp(1rem, 2.4vw, 1.3rem); color: #d6d6dd; max-width: 46ch; font-weight: 500; }
.hero__sub b { color: var(--yellow); font-weight: 800; }
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__stats {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  backdrop-filter: blur(6px); max-width: 720px;
}
.hero__stat { background: rgba(13,13,16,.66); padding: 22px 18px; text-align: center; }
.hero__stat b { display: block; font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 900; font-style: italic; color: var(--yellow); line-height: 1; }
.hero__stat span { display: block; margin-top: 8px; font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; color: var(--muted); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: cue 1.8s infinite; }
@keyframes cue { 0% { opacity: 0; transform: scaleY(.2); transform-origin: top; } 50% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; } }

/* ============================================================
   通用区块底纹
   ============================================================ */
.bg-panel { background: var(--panel); }
.bg-grad-dark { background: linear-gradient(180deg, var(--black), var(--panel)); }
.topline { border-top: 1px solid var(--line); }

/* 主题口号条 */
.theme-band { position: relative; overflow: hidden; padding: clamp(48px,7vw,90px) 0; background: var(--ink); }
.theme-band__inner { position: relative; z-index: 2; text-align: center; }
.theme-band h2 { font-size: clamp(2.2rem, 7vw, 5rem); font-weight: 900; font-style: italic; line-height: 1; }
.theme-band .en { margin-top: 16px; font-size: .8rem; letter-spacing: .5em; color: var(--gold-2); text-transform: uppercase; }
.theme-band .pillars { margin-top: 36px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.theme-band .pillar {
  padding: 12px 22px; border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(255,255,255,.04); font-weight: 700;
}
.theme-band .pillar b { color: var(--yellow); }
.marquee-ghost {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 24vw; font-weight: 900; font-style: italic; color: rgba(255,255,255,.025);
  white-space: nowrap; z-index: 0; pointer-events: none; user-select: none;
}

/* ============================================================
   卡片网格 / 特性
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 26px; transition: transform .25s, border-color .25s, background .25s;
  position: relative; overflow: hidden;
}
.feature-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad-fire); transform: scaleY(0); transform-origin: top; transition: transform .3s; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--line-2); background: var(--card-2); }
.feature-card:hover::before { transform: scaleY(1); }
.feature-card .ico { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,184,28,.12); color: var(--yellow); margin-bottom: 18px; font-size: 1.5rem; }
.feature-card h3 { font-size: 1.22rem; font-weight: 800; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   球队徽章 / 卡片
   ============================================================ */
.team-badge {
  display: grid; place-items: center; border-radius: 50%; flex: none;
  font-weight: 900; font-style: italic; color: #0b0b0d;
  background: var(--tc, var(--yellow));
  box-shadow: inset 0 0 0 3px rgba(0,0,0,.25), 0 6px 16px rgba(0,0,0,.4);
  line-height: 1; text-align: center;
}
.team-badge small { display: block; font-size: .5em; }

.teams-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card {
  position: relative; border-radius: var(--r); overflow: hidden; padding: 26px 22px 24px;
  background: var(--card); border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s; isolation: isolate;
}
.team-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .14;
  background: radial-gradient(120% 80% at 100% 0%, var(--tc), transparent 60%);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card__top { display: flex; align-items: center; gap: 14px; }
.team-card .team-badge { width: 58px; height: 58px; font-size: 1.15rem; }
.team-card__grp { margin-left: auto; font-size: .7rem; font-weight: 800; letter-spacing: .1em; padding: 4px 9px; border-radius: 6px; background: rgba(255,255,255,.08); color: var(--gold-2); }
.team-card h3 { font-size: 1.2rem; font-weight: 800; margin-top: 18px; }
.team-card .from { color: var(--muted); font-size: .86rem; margin-top: 4px; }
.team-card .slogan { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .9rem; color: #c4c4cc; font-style: italic; }
.team-card .bar { position: absolute; left: 0; bottom: 0; height: 4px; width: 100%; background: var(--tc); }

/* ============================================================
   赛程 / 比赛卡片
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-bar button {
  padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  background: var(--card); border: 1px solid var(--line); color: #c4c4cc; transition: all .2s;
}
.filter-bar button:hover { border-color: var(--line-2); color: #fff; }
.filter-bar button.active { background: var(--grad-gold); color: #1a1206; border-color: transparent; }

.night-group { margin-bottom: 38px; }
.night-head {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.night-head .d { font-size: 1.3rem; font-weight: 900; font-style: italic; }
.night-head .dow { color: var(--gold-2); font-weight: 700; }
.night-head .lbl { margin-left: auto; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.games-list { display: grid; gap: 14px; }
.game {
  display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 22px; transition: border-color .2s, transform .2s, background .2s;
}
.game:hover { border-color: var(--line-2); background: var(--card-2); }
.game--feature { border-color: rgba(255,184,28,.4); background: linear-gradient(120deg, rgba(255,184,28,.07), var(--card) 55%); }
.game__time { text-align: center; border-right: 1px solid var(--line); padding-right: 8px; }
.game__time .t { font-size: 1.25rem; font-weight: 900; font-style: italic; }
.game__time .stage { display: block; margin-top: 4px; font-size: .68rem; letter-spacing: .08em; color: var(--gold-2); font-weight: 700; }

.game__teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; }
.game__team { display: flex; align-items: center; gap: 12px; min-width: 0; }
.game__team.away { flex-direction: row-reverse; text-align: right; }
.game__team .team-badge { width: 44px; height: 44px; font-size: .82rem; }
.game__team .nm { min-width: 0; }
.game__team .nm b { display: block; font-size: 1.02rem; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game__team .nm span { font-size: .72rem; color: var(--muted); letter-spacing: .06em; }
.game__vs { text-align: center; }
.game__vs .score { display: flex; align-items: center; gap: 10px; font-size: 1.7rem; font-weight: 900; font-style: italic; }
.game__vs .score .win { color: var(--yellow); }
.game__vs .score .sep { font-size: .9rem; color: var(--muted-2); font-style: normal; }
.game__vs .label { font-size: 1.1rem; font-weight: 900; font-style: italic; color: var(--muted-2); }
.game__status { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.tag { font-size: .68rem; font-weight: 800; letter-spacing: .08em; padding: 4px 9px; border-radius: 6px; text-transform: uppercase; }
.tag--final { background: rgba(255,255,255,.08); color: var(--muted); }
.tag--up { background: rgba(228,0,43,.16); color: var(--red-2); }
.tag--grpA { background: rgba(255,184,28,.14); color: var(--yellow); }
.tag--grpB { background: rgba(43,168,224,.16); color: #5cc4f0; }
.game__venue { font-size: .76rem; color: var(--muted); }

/* placeholder 徽章（淘汰赛未定队伍）*/
.team-badge--tbd { background: #2a2a31 !important; color: var(--muted) !important; box-shadow: inset 0 0 0 2px var(--line-2); font-size: .7rem; }

/* ============================================================
   揭幕战 box score
   ============================================================ */
.boxscore {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
}
.boxscore__head { background: var(--ink); padding: 16px 22px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
.boxscore__head .tag { background: var(--grad-red); color: #fff; }
.boxscore__head .when { color: var(--muted); font-size: .85rem; }
.boxscore__main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 30px 24px; }
.bs-team { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.bs-team .team-badge { width: 70px; height: 70px; font-size: 1.2rem; }
.bs-team b { font-size: 1.05rem; font-weight: 800; }
.bs-score { font-size: clamp(2.6rem, 9vw, 4.4rem); font-weight: 900; font-style: italic; line-height: 1; }
.bs-score.win { color: var(--yellow); }
.bs-center { text-align: center; color: var(--muted-2); font-weight: 900; font-style: italic; font-size: 1.2rem; }
.bs-quarters { width: 100%; border-collapse: collapse; font-size: .9rem; }
.bs-quarters th, .bs-quarters td { padding: 11px 8px; text-align: center; border-top: 1px solid var(--line); }
.bs-quarters thead th { color: var(--gold-2); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.bs-quarters td:first-child, .bs-quarters th:first-child { text-align: left; font-weight: 700; }
.bs-mvp { padding: 20px 24px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 16px; background: linear-gradient(90deg, rgba(200,162,74,.1), transparent); }
.bs-mvp .crown { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-gold); display: grid; place-items: center; color: #1a1206; font-weight: 900; flex: none; }
.bs-mvp .meta b { font-size: 1.05rem; }
.bs-mvp .meta span { color: var(--muted); font-size: .85rem; }
.bs-mvp .stats { margin-left: auto; display: flex; gap: 22px; text-align: center; }
.bs-mvp .stats div b { display: block; font-size: 1.4rem; font-weight: 900; font-style: italic; color: var(--yellow); }
.bs-mvp .stats div span { font-size: .7rem; color: var(--muted); letter-spacing: .06em; }

/* ============================================================
   积分榜
   ============================================================ */
.standings { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.standings__head { padding: 16px 22px; background: var(--ink); font-weight: 900; font-style: italic; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); }
.standings__head .gtag { font-size: .9rem; font-style: normal; padding: 3px 10px; border-radius: 6px; background: var(--grad-gold); color: #1a1206; }
.standings table { width: 100%; border-collapse: collapse; }
.standings th, .standings td { padding: 14px 16px; text-align: center; }
.standings thead th { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; border-bottom: 1px solid var(--line); }
.standings tbody tr { border-bottom: 1px solid var(--line); transition: background .2s; }
.standings tbody tr:last-child { border-bottom: none; }
.standings tbody tr:hover { background: rgba(255,255,255,.03); }
.standings td.team { text-align: left; }
.standings td.team .t { display: flex; align-items: center; gap: 12px; }
.standings td.team .team-badge { width: 38px; height: 38px; font-size: .72rem; }
.standings .rank { font-weight: 900; font-style: italic; color: var(--gold-2); width: 50px; }
.standings .note { padding: 14px 22px; color: var(--muted); font-size: .82rem; border-top: 1px solid var(--line); background: rgba(0,0,0,.2); }

/* ============================================================
   淘汰赛对阵图
   ============================================================ */
.bracket { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(12px, 4vw, 50px); align-items: center; }
.bracket__col { display: flex; flex-direction: column; gap: 26px; }
.bracket__col.finals { align-items: center; }
.bo {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm);
  overflow: hidden; min-width: 0; width: 100%;
}
.bo__label { padding: 8px 14px; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2); background: var(--ink); border-bottom: 1px solid var(--line); }
.bo__row { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.bo__row + .bo__row { border-top: 1px solid var(--line); }
.bo__row .team-badge { width: 30px; height: 30px; font-size: .6rem; }
.bo__row .nm { font-weight: 700; font-size: .92rem; }
.bo--final { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow-sm); }
.bo--final .bo__label { background: var(--grad-gold); color: #1a1206; }
.bracket__trophy { text-align: center; margin-top: 18px; }
.bracket__trophy .cup { font-size: 2.4rem; }
.bracket__trophy span { display: block; font-size: .8rem; color: var(--gold-2); letter-spacing: .14em; margin-top: 6px; text-transform: uppercase; }

/* ============================================================
   品牌页：色彩 / LOGO / 球衣 / 画廊
   ============================================================ */
.swatches { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.swatch { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--card); }
.swatch__chip { height: 130px; position: relative; }
.swatch__chip span { position: absolute; bottom: 12px; left: 14px; font-size: .8rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(3px); }
.swatch__body { padding: 16px 18px; }
.swatch__body .role { font-size: .72rem; color: var(--gold-2); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.swatch__body h4 { font-size: 1.15rem; font-weight: 800; margin: 4px 0 8px; }
.swatch__body .hex { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .82rem; color: var(--muted); }
.swatch__body p { font-size: .85rem; color: var(--muted); margin-top: 8px; }

.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.show-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.show-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.show-card__img { background: #fff; padding: 0; aspect-ratio: 1/1; display: grid; place-items: center; overflow: hidden; }
.show-card__img.dark { background: var(--ink); }
.show-card__img img { width: 100%; height: 100%; object-fit: contain; }
.show-card__img.cover img { object-fit: cover; }
.show-card__body { padding: 20px 22px; }
.show-card__body .opt { font-size: .72rem; color: var(--gold-2); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.show-card__body h3 { font-size: 1.25rem; font-weight: 800; margin: 6px 0 10px; }
.show-card__body p { color: var(--muted); font-size: .92rem; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; grid-auto-flow: dense; }
.gal {
  position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  min-height: 200px; background: var(--ink);
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gal:hover img { transform: scale(1.05); }
.gal__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 18px 16px; background: linear-gradient(transparent, rgba(0,0,0,.85)); }
.gal__cap b { font-size: 1.02rem; font-weight: 800; display: block; }
.gal__cap span { font-size: .8rem; color: #c4c4cc; }
.gal.w6 { grid-column: span 6; } .gal.w4 { grid-column: span 4; } .gal.w8 { grid-column: span 8; } .gal.w12 { grid-column: span 12; }
.gal.h2 { min-height: 420px; }

/* 图形系统列表 */
.motif-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.motif { display: flex; gap: 16px; padding: 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); }
.motif .n { font-size: 1.6rem; font-weight: 900; font-style: italic; color: var(--gold); flex: none; line-height: 1; opacity: .6; }
.motif h4 { font-size: 1.08rem; font-weight: 800; margin-bottom: 6px; }
.motif p { color: var(--muted); font-size: .9rem; }

/* 文字两列信息 */
.prose-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.prose-cols h3 { font-size: 1.4rem; font-weight: 800; font-style: italic; margin-bottom: 14px; color: var(--yellow); }
.prose-cols p { color: #c8c8d0; margin-bottom: 14px; }
.prose-cols ul.dotted li { position: relative; padding-left: 22px; margin-bottom: 10px; color: #c8c8d0; }
.prose-cols ul.dotted li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 2px; background: var(--grad-fire); transform: rotate(45deg); }

/* 流程时间轴（传播规划 / 执行清单）*/
.timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tl-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; position: relative; }
.tl-card .step { font-size: .74rem; font-weight: 800; letter-spacing: .14em; color: var(--gold-2); text-transform: uppercase; }
.tl-card h3 { font-size: 1.3rem; font-weight: 800; margin: 8px 0 14px; }
.tl-card ul li { position: relative; padding-left: 20px; margin-bottom: 9px; color: #c4c4cc; font-size: .92rem; }
.tl-card ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }

/* 执行清单 phases */
.phases { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.phase { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 18px; }
.phase .ph-n { width: 34px; height: 34px; border-radius: 9px; background: var(--grad-gold); color: #1a1206; display: grid; place-items: center; font-weight: 900; font-style: italic; margin-bottom: 14px; }
.phase h4 { font-size: 1rem; font-weight: 800; margin-bottom: 12px; }
.phase ul li { font-size: .82rem; color: var(--muted); margin-bottom: 6px; padding-left: 14px; position: relative; }
.phase ul li::before { content: "·"; position: absolute; left: 2px; color: var(--gold); font-weight: 900; }

/* ============================================================
   CTA 大banner
   ============================================================ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r); padding: clamp(40px,6vw,72px) clamp(26px,5vw,60px); background: var(--ink); border: 1px solid var(--line); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 100% 0%, rgba(228,0,43,.25), transparent 55%), radial-gradient(70% 120% at 0% 100%, rgba(255,184,28,.18), transparent 55%); }
.cta-band__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; font-style: italic; line-height: 1; }
.cta-band p { color: var(--muted); margin-top: 12px; }

/* ============================================================
   赞助带
   ============================================================ */
.sponsor-band { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sponsor-band .lbl { text-align: center; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.sponsor-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.sponsor-logos .slot { height: 64px; min-width: 150px; display: grid; place-items: center; border: 1px dashed var(--line-2); border-radius: 10px; color: var(--muted-2); font-size: .85rem; padding: 0 24px; background: rgba(255,255,255,.02); }

/* ============================================================
   页脚
   ============================================================ */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer__brand .brand-lockup { margin-bottom: 18px; }
.footer__brand p { color: var(--muted); max-width: 40ch; font-size: .92rem; }
.footer__brand .slg { margin-top: 18px; font-size: 1.5rem; font-weight: 900; font-style: italic; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer h5 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; }
.footer ul li { margin-bottom: 11px; }
.footer ul li a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.footer ul li a:hover { color: var(--yellow); }
.footer__bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: .82rem; }

/* ============================================================
   滚动揭示动画
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* page hero (内页头部) */
.page-hero { position: relative; padding: calc(var(--nav-h) + 60px) 0 50px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 140% at 100% 0%, rgba(228,0,43,.18), transparent 55%), radial-gradient(80% 130% at 0% 100%, rgba(255,184,28,.12), transparent 55%); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.3rem, 6vw, 4.4rem); font-weight: 900; font-style: italic; line-height: 1; }
.page-hero p { color: var(--muted); margin-top: 16px; max-width: 56ch; font-size: 1.05rem; }

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .teams-grid { grid-template-columns: repeat(2,1fr); }
  .showcase { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .phases { grid-template-columns: repeat(2,1fr); }
  .swatches { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .prose-cols { grid-template-columns: 1fr; gap: 26px; }
  .timeline { grid-template-columns: 1fr; }
  .motif-list { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2,1fr); }
  /* 对阵图改为竖排 */
  .bracket { grid-template-columns: 1fr; gap: 18px; }
  .bracket__col.finals { order: 3; }
  .bracket__trophy { margin-top: 0; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .wrap { padding-inline: 16px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4, .teams-grid, .swatches { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gal.w6, .gal.w4, .gal.w8, .gal.w12 { grid-column: 1 / -1; }
  .gal.h2 { min-height: 260px; }
  /* 比赛卡片：竖向堆叠 */
  .game { grid-template-columns: 1fr; gap: 14px; padding: 16px; }
  .game__time { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 12px; display: flex; justify-content: space-between; align-items: center; }
  .game__time .t { font-size: 1.1rem; }
  .game__teams { grid-template-columns: 1fr; gap: 14px; }
  .game__team, .game__team.away { flex-direction: row; text-align: left; }
  .game__vs { order: 1; display: flex; justify-content: center; }
  .game__vs .score, .game__vs .label { font-size: 1.4rem; }
  .game__status { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
  .bs-mvp { flex-wrap: wrap; }
  .bs-mvp .stats { margin-left: 0; width: 100%; justify-content: space-around; padding-top: 14px; border-top: 1px solid var(--line); }
  .boxscore__main { padding: 24px 12px; gap: 8px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stat b { font-size: 2rem; }
  .standings th:nth-child(5), .standings td:nth-child(5) { display: none; } /* 隐藏胜率列 */
}
