/* =====================================================================
   STAR FC — 站点样式（零构建，单文件）
   ---------------------------------------------------------------------
   结构：
   1. 设计变量（颜色 / 字体 / 字号 / 间距 / 圆角 / 阴影）—— 全站唯一取值来源
   2. Reset 与基础排版
   3. 通用组件（容器 / 区块 / 标题 / 按钮 / 分段控件 / 徽章）
   4. 导航与移动端菜单
   5. Hero
   6. 赛程战绩（比赛卡 = 视觉主角）
   7. 媒体中心
   8. 当前阵容
   9. 名人堂 / 关于 / 大事记 / 最新文章 / 加入 / 联系
   10. 页脚
   设计原则：高级深色运动风——近黑碳色底 + 分层表面 + 白色发丝线；
   品牌红为唯一强调色（含克制的红色泛光）；大留白；强字体层级；
   移动优先（默认单列堆叠，逐级升为网格）。
   ===================================================================== */

/* ---------- 1. 设计变量 ---------- */
:root {
  /* 品牌红（唯一强调色） */
  --red-600: #dc2626;          /* 实心按钮 / 品牌面 */
  --red-500: #ef4444;          /* hover 提亮 / 深底上的红色文字 */
  --red-tint: rgba(239, 68, 68, 0.10);
  --red-border: rgba(239, 68, 68, 0.28);
  --red-glow: rgba(220, 38, 38, 0.32);

  /* 深色中性系（页面骨架） */
  --bg: #0e0f11;               /* 页面底 */
  --bg-alt: #131417;           /* 交替区块底 */
  --bg-deep: #0a0b0c;          /* 页脚 / 最深层 */
  --surface: #17181c;          /* 卡片表面 */
  --surface-2: #101114;        /* 输入框 / 照片位 / 内嵌层 */
  --line: rgba(255, 255, 255, 0.08);        /* 默认发丝线 */
  --line-soft: rgba(255, 255, 255, 0.05);
  --line-strong: rgba(255, 255, 255, 0.17); /* hover 边 */

  /* 文字层级 */
  --text-hi: #f6f6f5;          /* 标题 / 核心信息 */
  --text: #c6c6c4;             /* 正文 */
  --text-mut: #92928f;         /* 次要说明 */
  --text-faint: #6c6c69;       /* 元信息 / 日期 / 地点 */

  /* 比赛结果色（只用于结果徽章与比分，不用于卡片边框） */
  --win: #4ade80;
  --win-bg: rgba(74, 222, 128, 0.09);
  --win-border: rgba(74, 222, 128, 0.24);
  --draw: #a1a1aa;
  --draw-bg: rgba(161, 161, 170, 0.09);
  --draw-border: rgba(161, 161, 170, 0.24);
  --loss: #f87171;
  --loss-bg: rgba(248, 113, 113, 0.09);
  --loss-border: rgba(248, 113, 113, 0.24);

  /* 字体 */
  --font-body: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-display: 'Barlow Condensed', 'Noto Sans SC', sans-serif;

  /* 流体字号 */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-hero: clamp(4rem, 3rem + 9vw, 8.5rem);
  --text-h2: clamp(1.65rem, 1.25rem + 1.6vw, 2.5rem);
  --text-h3: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  --text-score: clamp(2.1rem, 1.8rem + 1.4vw, 3rem);
  --text-stat: clamp(1.9rem, 1.5rem + 1.6vw, 2.8rem);

  /* 间距（8px 体系） */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --section-y: clamp(4rem, 3rem + 5vw, 7.5rem);

  /* 圆角 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;

  /* 阴影（深色系：黑影 + 克制的红色泛光） */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.52);

  /* 布局 */
  --container: 72rem;
  --container-narrow: 52rem;
  --nav-h: 4.25rem;

  /* 描边 */
  --border: 1px solid var(--line);

  color-scheme: dark;
}

/* ---------- 2. Reset 与基础 ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; }
::selection { background: var(--red-600); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red-500);
  outline-offset: 2px;
  border-radius: 4px;
}

body.no-scroll { overflow: hidden; }
.hidden { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- 3. 通用组件 ---------- */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}
.container--narrow { width: min(var(--container-narrow), 100% - 2.5rem); }

.section { padding-block: var(--section-y); background: var(--bg); }
.section--alt { background: var(--bg-alt); }

/* 编辑风章节头：幽灵编号 + 左对齐 + 右侧辅助位 */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: clamp(2.5rem, 2rem + 2.5vw, 4rem);
}
@media (min-width: 48rem) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--sp-6);
  }
}
.section-head__main { min-width: 0; }
.section-head__aux { flex-shrink: 0; }
.section-head__index {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 2.6rem + 3vw, 5.2rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.05);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  margin-bottom: var(--sp-3);
  user-select: none;
}
.section-head--sub .section-head__main { text-align: left; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-500);
}
.section-title {
  margin-top: var(--sp-2);
  font-size: var(--text-h2);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-hi);
  letter-spacing: -0.01em;
}
.section-desc {
  margin-top: var(--sp-3);
  color: var(--text-mut);
  max-width: 38em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1.3;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn--primary {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 8px 26px var(--red-glow);
}
.btn--primary:hover {
  background: var(--red-500);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px var(--red-glow);
}
.btn--secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-hi);
  border: 1px solid var(--line-strong);
}
.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.btn--ghost { color: var(--red-500); padding-inline: var(--sp-4); }
.btn--ghost:hover { color: #ff6b6b; }
.btn__arrow { transition: transform 0.2s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* 分段控件（语言切换 / 年份切换共用）——active 为反白 chip */
.segmented {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
}
.segmented__btn {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-mut);
  transition: color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.segmented__btn:hover { color: var(--text-hi); }
.segmented__btn.is-active {
  background: var(--text-hi);
  color: var(--bg);
  box-shadow: var(--shadow-xs);
}
.segmented--lg .segmented__btn { padding: 0.5rem 1.5rem; font-size: var(--text-base); }

/* 小徽章 */
.chip {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-mut);
}
.chip--red { background: var(--red-tint); color: var(--red-500); }

/* 卡片表面公共处理：顶部一丝内光，提升“层”的质感 */
.match-card, .video-card, .player-card, .hall-card,
.value-card, .timeline__card, .story-card, .join-card,
.contact-item, .venues-card, .stat-tile {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 42%),
    var(--surface);
}

/* ---------- 4. 导航 ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(14, 15, 17, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(12, 13, 15, 0.86);
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: var(--nav-h);
}
.brand { display: flex; align-items: center; gap: var(--sp-3); }
.brand > span { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
@media (max-width: 47.99rem) {
  .brand { gap: var(--sp-2); }
  .brand__name { font-size: 1.2rem; }
}
.brand__crest { width: 2.4rem; height: 2.4rem; object-fit: contain; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-hi);
  line-height: 1.1;
}
.brand__since {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--red-500);
}

.site-nav { display: none; }
@media (min-width: 64rem) {
  .site-nav { display: flex; align-items: center; gap: var(--sp-1); }
}
.site-nav__link {
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-mut);
  transition: color 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.site-nav__link:hover { color: var(--text-hi); background: rgba(255, 255, 255, 0.06); }

.header-tools { display: flex; align-items: center; gap: var(--sp-3); }

/* 汉堡按钮 */
.menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius-sm);
  border: var(--border);
  background: rgba(255, 255, 255, 0.04);
}
@media (min-width: 64rem) { .menu-btn { display: none; } }
.menu-btn span {
  width: 1.15rem;
  height: 2px;
  background: var(--text-hi);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 移动端菜单 */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}
.mobile-menu.hidden { display: none; }
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(80vw, 22rem);
  background: #121316;
  border-left: var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 1rem) var(--sp-5) var(--sp-6);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  will-change: transform;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__link {
  padding: 0.8rem var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.mobile-menu__link:hover { color: var(--red-500); background: rgba(255, 255, 255, 0.04); }
.mobile-menu__lang { margin-top: var(--sp-5); padding-inline: var(--sp-4); }

/* ---------- 5. Hero（球场泛光灯 + 极淡网格） ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92svh;
  padding: calc(var(--nav-h) + var(--sp-8)) 0 var(--sp-9);
  background:
    radial-gradient(70rem 42rem at 50% 118%, rgba(220, 38, 38, 0.07) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
  text-align: center;
}
/* 泛光灯光斑（独立层，供 JS 视差驱动） */
.hero__glow { position: absolute; inset: 0; pointer-events: none; }
.hero__glow-a,
.hero__glow-b { position: absolute; will-change: transform; }
.hero__glow-a {
  top: -20rem; right: -14rem; width: 60rem; height: 42rem;
  background: radial-gradient(closest-side, rgba(220, 38, 38, 0.18), transparent 70%);
}
.hero__glow-b {
  top: -8rem; left: -18rem; width: 48rem; height: 34rem;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.06), transparent 65%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 85% 72% at 50% 38%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 85% 72% at 50% 38%, #000 25%, transparent 78%);
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__crest {
  width: clamp(4.5rem, 4rem + 3vw, 6.5rem);
  height: auto;
  margin: 0 auto clamp(2.25rem, 5vh, 3.5rem);
  filter: drop-shadow(0 0 28px rgba(220, 38, 38, 0.28));
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-hi);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}
.hero__title-accent { color: var(--red-500); }
.hero__tagline {
  margin-top: clamp(2rem, 4.5vh, 3rem);
  font-size: clamp(1.35rem, 1.1rem + 1.3vw, 2rem);
  font-weight: 500;
  color: var(--text-hi);
}
.hero__subtitle {
  margin-top: var(--sp-5);
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
  color: var(--text-faint);
  font-weight: 400;
}
/* 中文副句用碑刻式字距；英文保持常规 */
.hero__subtitle:lang(zh-CN) { letter-spacing: 0.32em; text-indent: 0.32em; }
.hero__tagline-accent { color: var(--red-500); }
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: clamp(3rem, 6.5vh, 4.5rem);
}
@media (min-width: 40rem) { .hero__actions { flex-direction: row; } }

/* 最新战绩条（Match Center 入口） */
.hero-latest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin: clamp(3.25rem, 8vh, 5.5rem) auto 0;
  padding: var(--sp-4) var(--sp-5);
  max-width: 46rem;
  border: var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}
.hero-latest:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-2px);
}
@media (min-width: 48rem) {
  .hero-latest { flex-direction: row; justify-content: space-between; gap: var(--sp-5); }
}
.hero-latest__label {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-500);
}
.hero-latest__match {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  min-width: 0;
}
.hero-latest__date {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}
.hero-latest__teams {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-hi);
  white-space: nowrap;
}
.hero-latest__score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding-inline: var(--sp-1);
}
.hero-latest__score--win { color: var(--win); }
.hero-latest__score--draw { color: var(--draw); }
.hero-latest__score--loss { color: var(--loss); }
.hero-latest__form {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.hero-latest__form-label {
  font-size: var(--text-xs);
  color: var(--text-faint);
}
.form-dots { display: inline-flex; align-items: center; gap: 6px; }
.form-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
}
.form-dot--win { background: var(--win); }
.form-dot--draw { background: var(--draw); }
.form-dot--loss { background: var(--loss); }
.form-dot--latest { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12); }

/* 下一场预告条 */
.hero-next {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin: var(--sp-3) auto 0;
  padding: var(--sp-3) var(--sp-5);
  max-width: 46rem;
  border: 1px solid var(--red-border);
  border-radius: var(--radius-lg);
  background: var(--red-tint);
  transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}
.hero-next:hover {
  border-color: var(--red-500);
  background: rgba(239, 68, 68, 0.15);
  transform: translateY(-2px);
}
@media (min-width: 48rem) {
  .hero-next { flex-direction: row; justify-content: space-between; gap: var(--sp-5); }
}
.hero-next__label {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-500);
}
.hero-next__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  min-width: 0;
}
.hero-next__date {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-mut);
}
.hero-next__teams {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-hi);
  white-space: nowrap;
}
.hero-next__vs { color: var(--text-faint); font-weight: 400; font-size: var(--text-xs); }
.hero-next__venue { font-size: var(--text-xs); color: var(--text-mut); }
.hero-next__count {
  flex-shrink: 0;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--red-600);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px var(--red-glow);
}

/* ---------- 品牌跑马灯 ---------- */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-deep);
  padding-block: var(--sp-3);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker__seq {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-inline: var(--sp-4);
}
.ticker__item {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mut);
  white-space: nowrap;
}
.ticker__star { color: var(--red-500); font-size: var(--text-xs); }
@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ---------- 6. 赛程战绩 ---------- */
.fixtures-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 40rem) { .fixtures-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); } }
@media (min-width: 64rem) { .fixtures-grid { grid-template-columns: repeat(3, 1fr); } }

/* 折叠：移动端默认显示 6 张，桌面 9 张 */
.fixtures-grid.is-collapsed > :nth-child(n + 7) { display: none; }
@media (min-width: 40rem) {
  .fixtures-grid.is-collapsed > :nth-child(n + 7) { display: block; }
  .fixtures-grid.is-collapsed > :nth-child(n + 9) { display: none; }
}
@media (min-width: 64rem) {
  .fixtures-grid.is-collapsed > :nth-child(n + 9) { display: block; }
  .fixtures-grid.is-collapsed > :nth-child(n + 10) { display: none; }
}
.fixtures-more { display: flex; justify-content: center; margin-top: var(--sp-6); }

/* 比赛卡（视觉主角） */
.match-card {
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.match-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.match-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
}
.match-card__meta-left { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; }
.match-card__date {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  color: var(--text-faint);
}
.match-card__teams {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-hi);
  line-height: 1.4;
}
.match-card__vs { color: var(--text-faint); font-weight: 400; padding-inline: 0.4em; font-size: var(--text-sm); }
.match-card__score {
  font-family: var(--font-display);
  font-size: var(--text-score);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.match-card--win .match-card__score { color: var(--win); }
.match-card--draw .match-card__score { color: var(--draw); }
.match-card--loss .match-card__score { color: var(--loss); }
.match-card--upcoming .match-card__score { color: var(--text-faint); }
.match-card__scorers {
  font-size: var(--text-sm);
  color: var(--text-mut);
  line-height: 1.6;
}
.match-card__venue {
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line-soft);
  font-size: var(--text-sm);
  color: var(--text-faint);
}

/* 结果徽章 */
.result-pill {
  flex-shrink: 0;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid;
}
.result-pill--win { color: var(--win); background: var(--win-bg); border-color: var(--win-border); }
.result-pill--draw { color: var(--draw); background: var(--draw-bg); border-color: var(--draw-border); }
.result-pill--loss { color: var(--loss); background: var(--loss-bg); border-color: var(--loss-border); }

/* 赛季总结：统计 + 射手榜双栏（移动端堆叠） */
.season-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}
@media (min-width: 64rem) {
  .season-summary { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}

/* 赛季统计 */
.season-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
@media (min-width: 40rem) { .season-stats { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); } }
.stat-tile {
  text-align: center;
  padding: var(--sp-5) var(--sp-3);
  border: var(--border);
  border-radius: var(--radius-md);
}
.stat-tile__value {
  font-family: var(--font-display);
  font-size: var(--text-stat);
  font-weight: 700;
  line-height: 1;
  color: var(--text-hi);
}
.stat-tile--win .stat-tile__value { color: var(--win); }
.stat-tile--loss .stat-tile__value { color: var(--loss); }
.stat-tile--accent .stat-tile__value { color: var(--red-500); }
.stat-tile__label {
  margin-top: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-mut);
}
.fixtures-note {
  margin-top: var(--sp-5);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-faint);
}

/* 射手榜 */
.scorers-board {
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
}
.scorers-board__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: var(--border);
}
.scorers-board__title { font-size: var(--text-lg); font-weight: 700; color: var(--text-hi); }
.scorers-board__sub { font-size: var(--text-xs); color: var(--text-faint); }
.scorers-board__list { display: flex; flex-direction: column; }
.scorers-board__row {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  gap: var(--sp-3);
  align-items: center;
  padding-block: var(--sp-3);
}
.scorers-board__row + .scorers-board__row { border-top: 1px solid var(--line-soft); }
.scorers-board__rank {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}
.scorers-board__row.is-top .scorers-board__rank { color: var(--red-500); }
.scorers-board__player { min-width: 0; }
.scorers-board__name {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-hi);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.scorers-board__bar {
  display: block;
  height: 4px;
  margin-top: 6px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.scorers-board__bar-fill {
  display: block;
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--red-600), var(--red-500));
}
.scorers-board__goals {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-hi);
}
.scorers-board__row.is-top .scorers-board__goals { color: var(--red-500); font-size: 1.4rem; }

/* ---------- 7. 媒体中心 ---------- */
.media-head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.media-head__title { font-size: var(--text-h3); font-weight: 700; color: var(--text-hi); }

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 30rem) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .media-grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); } }

.video-card {
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.video-card:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); transform: translateY(-3px); }
.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(24rem 12rem at 70% -20%, rgba(220, 38, 38, 0.16), transparent 65%),
    linear-gradient(135deg, #202126, var(--surface-2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-card__play {
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--red-600);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px var(--red-glow);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.video-card:hover .video-card__play { transform: scale(1.1); background: var(--red-500); }
.video-card__play svg { width: 1.4rem; height: 1.4rem; margin-left: 2px; fill: #fff; }
.video-card__tag {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 11, 12, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line-soft);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text);
}
.video-card__body {
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.video-card__date {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.video-card__match {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-hi);
  line-height: 1.4;
  margin-bottom: var(--sp-2);
}
.video-card__match .video-card__vs {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--text-faint);
  text-transform: uppercase;
}
.video-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--red-tint);
  border: 1px solid transparent;
  color: var(--red-500);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.video-card__cta:hover { background: rgba(239, 68, 68, 0.16); border-color: var(--red-border); }
.video-card__cta svg { width: 1rem; height: 1rem; fill: currentColor; }

/* 手机端媒体折叠（≥30rem 网格自动全量显示，按钮隐藏） */
.media-grid.is-collapsed > :nth-child(n + 5) { display: none; }
@media (min-width: 30rem) {
  .media-grid.is-collapsed > :nth-child(n + 5) { display: flex; }
}
.media-more { display: flex; justify-content: center; margin-top: var(--sp-6); }
@media (min-width: 30rem) { .media-more { display: none !important; } }

/* ---------- 8. 当前阵容 ---------- */
.team-group { margin-bottom: var(--sp-7); }
.team-group:last-child { margin-bottom: 0; }
.team-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: var(--border);
}
.team-group__title { font-size: var(--text-h3); font-weight: 700; color: var(--text-hi); }
.team-group__sub {
  margin-left: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.team-group__count { font-size: var(--text-sm); color: var(--text-faint); white-space: nowrap; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
@media (min-width: 40rem) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); } }
@media (min-width: 52rem) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 64rem) { .team-grid { grid-template-columns: repeat(6, 1fr); } }

.player-card {
  border: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.player-card:hover { box-shadow: var(--shadow-sm); border-color: var(--line-strong); transform: translateY(-2px); }
.player-card__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--surface-2);
}
.player-card__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  color: var(--text-faint);
}
.player-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.player-card__photo img.is-loaded { opacity: 1; }
.player-card__goals {
  position: absolute;
  bottom: var(--sp-2);
  left: var(--sp-2);
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 11, 12, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-hi);
}
.player-card__info { padding: var(--sp-3); }
.player-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
}
.player-card__number {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-faint);
}
.player-card__name {
  margin-top: 2px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-hi);
  line-height: 1.35;
  overflow-wrap: break-word;
}
.player-card__position {
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.role-pill {
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  border: 1px solid;
}
.role-pill--captain { color: var(--red-500); background: var(--red-tint); border-color: var(--red-border); }
.role-pill--vice { color: var(--text); background: rgba(255, 255, 255, 0.07); border-color: var(--line-strong); }

/* ---------- 9. 名人堂 ---------- */
.hall-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 40rem) { .hall-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); } }
.hall-card {
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hall-card__photo {
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 40rem) { .hall-card__photo { aspect-ratio: 3 / 2; } }
.hall-card__photo img { width: 4.5rem; height: 4.5rem; object-fit: contain; opacity: 0.22; filter: grayscale(1); border-radius: var(--radius-sm); }
.hall-card__body { padding: var(--sp-4) var(--sp-5) var(--sp-5); }
.hall-card__tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-500);
}
.hall-card__title { margin-top: var(--sp-1); font-size: var(--text-lg); font-weight: 700; color: var(--text); }
.hall-card__sub { margin-top: var(--sp-1); font-size: var(--text-sm); color: var(--text-faint); }

/* ---------- 关于 STAR FC ---------- */
.about-prose {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  line-height: 1.9;
  color: var(--text);
}
.about-prose p + p { margin-top: var(--sp-5); }
.about-prose .em-ink { color: var(--text-hi); font-weight: 600; }
.about-prose .em-red { color: var(--red-500); font-weight: 600; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}
@media (min-width: 40rem) { .about-stats { grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); } }

.values { margin-top: var(--sp-9); }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 40rem) { .values-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); } }
.value-card {
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.value-card:hover { box-shadow: var(--shadow-sm); border-color: var(--line-strong); transform: translateY(-2px); }
.value-card__emoji { font-size: 1.9rem; line-height: 1; }
.value-card__title { margin-top: var(--sp-3); font-size: var(--text-lg); font-weight: 700; color: var(--text-hi); }
.value-card__body { margin-top: var(--sp-2); font-size: var(--text-sm); line-height: 1.8; color: var(--text-mut); }

/* ---------- 大事记 ---------- */
.timeline {
  position: relative;
  padding-left: clamp(4.5rem, 4rem + 2vw, 5.5rem);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--red-border), var(--line) 30%, var(--line) 70%, transparent);
}
.timeline__item { position: relative; padding-bottom: var(--sp-7); }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__year {
  position: absolute;
  left: calc(-1 * clamp(4.5rem, 4rem + 2vw, 5.5rem));
  top: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--red-600);
  box-shadow: 0 0 18px rgba(220, 38, 38, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--red-500);
  line-height: 1.1;
  z-index: 1;
}
.timeline__card {
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.timeline__card:hover { box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.timeline__title { font-size: var(--text-lg); font-weight: 700; color: var(--text-hi); }
.timeline__body { margin-top: var(--sp-2); font-size: var(--text-sm); line-height: 1.8; color: var(--text-mut); }

/* ---------- 故事 ---------- */
.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 40rem) { .stories-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); } }
.story-card {
  display: flex;
  flex-direction: column;
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.story-card:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); transform: translateY(-3px); }
.story-card__title { margin-top: var(--sp-4); font-size: var(--text-lg); font-weight: 700; color: var(--text-hi); line-height: 1.5; }
.story-card:hover .story-card__title { color: var(--red-500); }
.story-card__desc { margin-top: var(--sp-2); font-size: var(--text-sm); color: var(--text-mut); line-height: 1.7; }
.story-card__foot {
  padding-top: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  border-top: 1px solid var(--line-soft);
  margin-top: var(--sp-5);
}
.story-card__date { font-family: var(--font-display); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.06em; color: var(--text-faint); }
.story-card__more { font-size: var(--text-sm); font-weight: 600; color: var(--red-500); }
.stories-note { margin-top: var(--sp-6); text-align: center; font-size: var(--text-sm); color: var(--text-faint); }

/* ---------- 加入我们 ---------- */
.join-card {
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.join-card__title { font-size: var(--text-h3); font-weight: 700; color: var(--text-hi); margin-bottom: var(--sp-5); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4) var(--sp-5);
}
@media (min-width: 40rem) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-field { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: var(--text-sm); color: var(--text-mut); font-weight: 500; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  color: var(--text-hi);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-faint); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red-600);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18);
}
.form-field textarea { height: 8rem; resize: none; }
.join-card .btn { width: 100%; margin-top: var(--sp-5); padding-block: 1rem; }

/* ---------- 联系我们 ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 48rem) { .contact-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); } }
.contact-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border: var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.contact-item:hover { box-shadow: var(--shadow-sm); border-color: var(--line-strong); transform: translateY(-2px); }
.contact-item__icon {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item__icon {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
}
.contact-item__icon svg { width: 1.25rem; height: 1.25rem; fill: var(--text-hi); }
.contact-item__label { font-size: var(--text-xs); color: var(--text-faint); }
.contact-item__value { font-weight: 600; color: var(--text-hi); font-size: var(--text-sm); }
.venues-card {
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
}
.venues-card__title { font-size: var(--text-lg); font-weight: 700; color: var(--text-hi); margin-bottom: var(--sp-4); }
.venues-card li {
  display: flex;
  gap: var(--sp-3);
  align-items: baseline;
  padding-block: var(--sp-2);
  color: var(--text-mut);
  font-size: var(--text-sm);
}
.venues-card li + li { border-top: 1px solid var(--line-soft); }
.venues-card li::before { content: '●'; font-size: 0.5rem; color: var(--red-500); }

/* ---------- 10. 页脚 ---------- */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  color: var(--text-mut);
  padding-block: var(--sp-8) var(--sp-6);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 48rem) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-7); } }
.site-footer .brand__name { color: var(--text-hi); }
.site-footer__tagline { margin-top: var(--sp-4); font-size: var(--text-sm); max-width: 26rem; }
.site-footer__heading { color: var(--text-hi); font-size: var(--text-base); font-weight: 600; margin-bottom: var(--sp-4); }
.site-footer__links li + li { margin-top: var(--sp-2); }
.site-footer__links a { font-size: var(--text-sm); transition: color 0.15s ease; }
.site-footer__links a:hover { color: var(--text-hi); }
.site-footer__social { display: flex; gap: var(--sp-3); }
.site-footer__social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--red-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.site-footer__social a:hover { background: var(--red-500); transform: translateY(-2px); box-shadow: 0 6px 18px var(--red-glow); }
.site-footer__social svg { width: 1.2rem; height: 1.2rem; fill: #fff; }
.site-footer__bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line-soft);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-faint);
}

/* =====================================================================
   11. 动效层（零依赖）
   参考：FC Porto Memorial（滚动叙事）/ Audi F1（动态大字）/ WC26 Album（卡片倾斜）
   规则：统一 expo-out 缓动；prefers-reduced-motion 全部关闭；
   JS 未启用（无 .js-motion）时一切静态可见；JS 异常时 2.5s 安全网自动显示。
   ===================================================================== */
:root { --ease-out: cubic-bezier(0.16, 1, 0.3, 1); }

/* ---- 滚动渐入 ----
   隐藏态只作用于 JS 武装过的 .reveal-armed；JS 未运行/出错时页面完全静态可见。 */
.reveal-armed {
  opacity: 0;
  transform: translateY(26px);
}
.reveal-armed.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-armed.is-in.instant { transition: none; }

/* ---- Hero 入场编排（仅首次加载，CSS 驱动） ---- */
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes word-up { from { transform: translateY(108%); } to { transform: none; } }
.title-mask { display: inline-block; overflow: hidden; vertical-align: bottom; }
.title-word { display: inline-block; }
.js-motion .title-word { animation: word-up 0.95s var(--ease-out) 0.2s both; }
.js-motion .title-mask:nth-of-type(2) .title-word { animation-delay: 0.32s; }
.js-motion .hero__crest { animation: rise 0.8s var(--ease-out) 0.05s both; }
.js-motion .hero__tagline { animation: rise 0.7s var(--ease-out) 0.5s both; }
.js-motion .hero__subtitle { animation: rise 0.7s var(--ease-out) 0.62s both; }
.js-motion .hero__actions { animation: rise 0.7s var(--ease-out) 0.75s both; }
.js-motion .hero-latest { animation: rise 0.7s var(--ease-out) 0.92s both; }
.js-motion .hero-next { animation: rise 0.7s var(--ease-out) 1.04s both; }
.hero__inner { will-change: transform, opacity; }

/* ---- 射手榜数据条生长（随 board 渐入，逐行错峰） ---- */
.scorers-board.reveal-armed .scorers-board__bar-fill { transform: scaleX(0); transform-origin: left; }
.scorers-board.reveal-armed.is-in .scorers-board__bar-fill {
  transform: scaleX(1);
  transition: transform 0.9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms + 150ms);
}
.scorers-board.reveal-armed.is-in.instant .scorers-board__bar-fill { transition: none; }

/* ---- 大事记：年份节点弹出 ---- */
.timeline__item.reveal-armed .timeline__year { opacity: 0; transform: scale(0.6); }
.timeline__item.reveal-armed.is-in .timeline__year {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s var(--ease-out) 0.15s, transform 0.5s var(--ease-out) 0.15s;
}

/* ---- 球员卡倾斜光泽（JS 设置 --mx/--my） ---- */
.js-motion .player-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(22rem 22rem at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.13), transparent 55%);
  transition: opacity 0.25s ease;
}
.js-motion .player-card.is-tilting .player-card__photo::after { opacity: 1; }
.js-motion .player-card.is-tilting { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }

/* ---- reduced-motion：动效层全部关闭（全局降级规则之外的兜底） ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal-armed { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scorers-board.reveal-armed .scorers-board__bar-fill { transform: scaleX(1) !important; transition: none !important; }
  .timeline__item.reveal-armed .timeline__year { opacity: 1 !important; transform: none !important; }
  .js-motion .player-card__photo::after { display: none; }
}

/* ---------- 12. 文案体系补充组件 ---------- */
/* 以球会友：印章式小签 */
.seal {
  display: inline-block;
  margin-top: var(--sp-4);
  padding: 0.2rem 0.65rem;
  border: 1px solid var(--red-border);
  border-radius: var(--radius-sm);
  color: var(--red-500);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-indent: 0.35em; /* 平衡末字间距 */
}

/* 加入我们：卖点事实行 */
.join-fact {
  margin-top: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* 球队之约块与试训卡间距 */
.join-code { margin-bottom: var(--sp-7); }
.join-code .section-head { margin-bottom: var(--sp-5); }

/* ---------- 13. 博客文章页（blog/*.html 复用本文件 + 以下补充） ---------- */
.stories-more { display: flex; justify-content: center; margin-top: var(--sp-6); }

.post-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 15, 17, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.post-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: 3.6rem;
}
.post-topbar .brand__crest { width: 1.9rem; height: 1.9rem; }
.post-topbar .brand__name { font-size: 1.1rem; }
.post-topbar__back {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-mut);
  transition: color 0.15s ease;
}
.post-topbar__back:hover { color: var(--text-hi); }

.post-main { padding: var(--sp-8) 0 var(--sp-9); }
.post-head { margin-bottom: var(--sp-6); }
.post-tag { margin-bottom: var(--sp-4); }
.post-title {
  font-size: var(--text-h2);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-hi);
  letter-spacing: -0.01em;
}
.post-meta {
  margin-top: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}

.post-body { font-size: 1.05rem; line-height: 1.95; color: var(--text); }
.post-body > * + * { margin-top: var(--sp-5); }
.post-body h2 {
  margin-top: var(--sp-7);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-hi);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line);
}
.post-body h3 { margin-top: var(--sp-6); font-size: var(--text-lg); font-weight: 700; color: var(--text-hi); }
.post-body strong { color: var(--text-hi); }
.post-body a { color: var(--red-500); }
.post-body a:hover { color: #ff6b6b; }
.post-body ul { list-style: none; }
.post-body ul li {
  position: relative;
  padding-left: 1.2em;
  margin-top: var(--sp-2);
}
.post-body ul li::before { content: '●'; position: absolute; left: 0; top: 0.72em; font-size: 0.45em; color: var(--red-500); }
.post-body blockquote {
  margin: var(--sp-6) 0;
  padding: var(--sp-4) var(--sp-5);
  border-left: 3px solid var(--red-600);
  background: var(--surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text-hi);
}
.post-body figure { margin: var(--sp-6) 0; }
.post-body figure img { width: 100%; border-radius: var(--radius-lg); border: var(--border); }
.post-body figcaption { margin-top: var(--sp-2); font-size: var(--text-xs); color: var(--text-faint); text-align: center; }

/* 数据速览条（文章内） */
.post-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin: var(--sp-6) 0;
}
@media (min-width: 40rem) { .post-stats { grid-template-columns: repeat(4, 1fr); } }

/* 视频内嵌（16:9） */
.post-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: var(--sp-6) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border);
  background: var(--surface-2);
}
.post-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.post-footer {
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--text-faint);
}

/* 博客索引页 */
.post-list { display: flex; flex-direction: column; gap: var(--sp-4); margin-top: var(--sp-6); }

/* =====================================================================
   14. 全平台交互与滚动优化（iOS / Android / Windows / macOS）
   ===================================================================== */
/* 防横向溢出（clip 不产生滚动容器，不影响 sticky） */
html, body { overflow-x: clip; }

/* 触控：去 300ms 双击缩放延迟与点击高亮 */
a, button, input, select, textarea, .segmented__btn { touch-action: manipulation; }
a, button { -webkit-tap-highlight-color: transparent; }

/* 触屏设备：hover 悬浮位移会"粘住"，统一关闭 transform 类 hover 反馈 */
@media (hover: none) {
  .btn:hover,
  .match-card:hover,
  .video-card:hover,
  .video-card:hover .video-card__play,
  .player-card:hover,
  .value-card:hover,
  .timeline__card:hover,
  .story-card:hover,
  .contact-item:hover,
  .hero-latest:hover,
  .hero-next:hover,
  .site-footer__social a:hover,
  .btn:hover .btn__arrow { transform: none !important; }
}

/* 粗指针（手机/平板）：加大小控件的可点面积（≥44px 触达目标） */
@media (pointer: coarse) {
  .segmented__btn { padding: 0.55rem 1.05rem; }
  .segmented--lg .segmented__btn { padding: 0.65rem 1.6rem; }
  .post-topbar__back { padding: 0.6rem 0.25rem; }
  .video-card__cta { padding: 0.7rem 1rem; }
}

/* 移动菜单：阻断滚动链（背后页面不跟着滚） */
.mobile-menu__panel { overscroll-behavior: contain; }

/* Windows / Firefox：深色细滚动条，避免默认亮色粗条破坏观感 */
html { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.22) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.28); }
