/* ============================================================
   华体会体育赛 · 共享样式表 /assets/site.css
   深墨绿底 + 看台暗蓝面 + 荧光青数字 + 补时琥珀刻度
   ============================================================ */

/* --- 1. 设计令牌 --- */
:root{
  --ink:#0B1F1A;
  --navy:#0E1B2B;
  --ink-soft:#14271F;
  --paper:#F2E8D8;
  --paper-ink:#15130F;
  --cyan:#3FD9C2;
  --amber:#F0A63A;
  --yellow:#F2CE3A;
  --home:#E05A3C;
  --away:#5B93E8;
  --muted:#93A29B;
  --text:#E9F1EC;
  --line:#1F3A31;
  --line-strong:#2C4E42;

  --font-display:'Alibaba PuHuiTi 3','Source Han Sans SC','Noto Sans SC',system-ui,sans-serif;
  --font-body:'Source Han Sans SC','Noto Sans SC',system-ui,'PingFang SC',sans-serif;
  --font-num:'DIN Alternate','Roboto Mono','JetBrains Mono',ui-monospace,SFMono-Regular,monospace;

  --dur-fast:120ms;
  --dur-base:200ms;
  --dur-slow:320ms;
  --ease:cubic-bezier(.22,.61,.36,1);

  --gutter:16px;
  --maxw:1400px;
  --radius-pill:999px;
  --radius-hard:2px;
}
@media (min-width:900px){ :root{ --gutter:40px; } }

/* --- 2. 重置 --- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body,h1,h2,h3,h4,p,ul,ol,figure,blockquote,dl,dd{ margin:0; }
ul,ol{ 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; cursor:pointer; }
table{ border-collapse:collapse; width:100%; }

/* --- 3. 中文排版与全局底色 --- */
body{
  min-height:100vh;
  background-color:var(--ink);
  background-image:
    radial-gradient(1100px 520px at 76% -6%, rgba(14,27,43,.9), rgba(11,31,26,0) 72%),
    repeating-linear-gradient(90deg, rgba(31,58,49,.42) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(31,58,49,.28) 0 1px, transparent 1px 88px);
  color:var(--text);
  font-family:var(--font-body);
  font-size:1rem;
  font-weight:400;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:800;
  font-stretch:88%;
  letter-spacing:.01em;
  line-height:1.2;
}
h1{ font-size:clamp(2.2rem,4.6vw,3.6rem); }
h2{ font-size:clamp(1.5rem,2.8vw,2.1rem); }
h3{ font-size:1.2rem; }
p{ max-width:42ch; }

.hth-display{ font-family:var(--font-display); font-weight:800; font-stretch:88%; letter-spacing:.01em; line-height:1.14; font-size:clamp(2.2rem,4.6vw,3.6rem); }
.hth-round{ font-family:var(--font-num); font-weight:700; font-variant-numeric:tabular-nums; font-size:clamp(3.6rem,9vw,7rem); line-height:1; color:var(--cyan); letter-spacing:.01em; }
.hth-num{ font-family:var(--font-num); font-weight:700; font-variant-numeric:tabular-nums; letter-spacing:.02em; }
.hth-label{ font-size:.78rem; font-weight:500; letter-spacing:.08em; color:var(--muted); }
.hth-muted{ color:var(--muted); }
.hth-lead{ font-size:1.02rem; line-height:1.75; color:var(--muted); max-width:42ch; }
.hth-prose{ max-width:38em; line-height:1.75; }

/* --- 4. 布局容器与网格 --- */
.hth-container,
.hth-header__inner{
  width:min(var(--maxw), 100% - (var(--gutter) * 2));
  margin-inline:auto;
}
.hth-section{ padding-block:clamp(36px,6vw,72px); }
.hth-section__head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px 24px;
  padding-bottom:14px;
  margin-bottom:24px;
  border-bottom:1px solid var(--line);
}
.hth-section__title{
  font-family:var(--font-display);
  font-weight:800;
  font-stretch:88%;
  font-size:clamp(1.5rem,2.8vw,2.1rem);
}
.hth-grid{ display:grid; grid-template-columns:repeat(12,minmax(0,1fr)); gap:16px; }
.hth-span-3{ grid-column:span 3; }
.hth-span-4{ grid-column:span 4; }
.hth-span-6{ grid-column:span 6; }
.hth-span-8{ grid-column:span 8; }
.hth-span-12{ grid-column:span 12; }
.hth-divider{ height:1px; background:var(--line); border:0; margin:0; }

/* --- 5. 框景 --- */
.hth-frame{
  position:relative;
  border:1px solid var(--line);
  padding:clamp(18px,3vw,36px);
  background:rgba(14,27,43,.35);
}
.hth-frame::before,
.hth-frame::after{
  content:"";
  position:absolute;
  width:10px;
  height:10px;
  border:1px solid var(--cyan);
  pointer-events:none;
}
.hth-frame::before{ top:-1px; left:-1px; border-right:0; border-bottom:0; }
.hth-frame::after{ right:-1px; bottom:-1px; border-top:0; border-left:0; }

/* --- 6. 面板 --- */
.hth-panel{
  position:relative;
  background:var(--navy);
  border:1px solid var(--line);
  border-radius:var(--radius-hard);
  padding:18px;
  transition:background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.hth-panel:hover{ background:var(--ink-soft); border-color:var(--cyan); }
.hth-panel--surface{ background:var(--ink-soft); }
.hth-panel--paper{ background:var(--paper); border-color:#D8C9AC; color:var(--paper-ink); }
.hth-panel--paper .hth-panel__title,
.hth-panel--paper h2,
.hth-panel--paper h3{ color:var(--paper-ink); }
.hth-panel--paper .hth-muted,
.hth-panel--paper .hth-label,
.hth-panel--paper .hth-panel__body{ color:#5B5347; }
.hth-panel__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:10px;
  margin-bottom:14px;
  border-bottom:1px solid var(--line);
}
.hth-panel--paper .hth-panel__head{ border-bottom-color:#D8C9AC; }
.hth-panel__title{ font-family:var(--font-display); font-weight:800; font-stretch:88%; font-size:1.05rem; }
.hth-panel__body{ font-size:.95rem; color:var(--muted); }

/* --- 7. 按钮 --- */
.hth-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  border:1px solid var(--line-strong);
  border-radius:var(--radius-pill);
  background:transparent;
  color:var(--text);
  font-size:.88rem;
  font-weight:600;
  letter-spacing:.02em;
  line-height:1.4;
  transition:background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.hth-btn:hover{ background:var(--ink-soft); border-color:var(--cyan); color:var(--cyan); }
.hth-btn--primary{ background:var(--cyan); border-color:var(--cyan); color:#06231E; }
.hth-btn--primary:hover{ background:#5FE6D2; border-color:#5FE6D2; color:#06231E; }
.hth-btn--ghost{ border-color:var(--line); }
.hth-btn--quiet{ border-color:transparent; color:var(--muted); padding-inline:12px; }
.hth-btn--quiet:hover{ background:transparent; color:var(--cyan); }

/* --- 8. 标签与状态灯 --- */
.hth-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:3px 10px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  font-size:.72rem;
  font-weight:500;
  letter-spacing:.08em;
  color:var(--muted);
  white-space:nowrap;
}
.hth-tag--cyan{ color:var(--cyan); border-color:rgba(63,217,194,.45); }
.hth-tag--amber{ color:var(--amber); border-color:rgba(240,166,58,.45); }
.hth-tag--yellow{ color:var(--yellow); border-color:rgba(242,206,58,.45); }
.hth-tag--home{ color:#FFD9CE; background:rgba(224,90,60,.22); border-color:rgba(224,90,60,.5); }
.hth-tag--away{ color:#D6E5FF; background:rgba(91,147,232,.2); border-color:rgba(91,147,232,.5); }
.hth-lamp{ display:inline-block; width:6px; height:6px; border-radius:50%; background:var(--cyan); }
.hth-lamp--amber{ background:var(--amber); }
.hth-lamp--idle{ background:var(--muted); }

/* --- 9. 跳转链接与焦点 --- */
.hth-skip{
  position:fixed;
  top:10px;
  left:10px;
  z-index:300;
  padding:10px 16px;
  background:var(--cyan);
  color:#06231E;
  font-weight:700;
  font-size:.85rem;
  border-radius:var(--radius-hard);
  transform:translateY(-180%);
  transition:transform var(--dur-base) var(--ease);
}
.hth-skip:focus,
.hth-skip:focus-visible{ transform:translateY(0); outline:2px solid var(--text); outline-offset:2px; }
:where(a,button,[tabindex]):focus-visible{
  outline:2px solid var(--cyan);
  outline-offset:2px;
  border-radius:var(--radius-hard);
}

/* --- 10. 头部：悬浮胶囊导航 --- */
.hth-header{
  --hh:76px;
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(11,31,26,.88);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.hth-header[data-condensed]{ --hh:60px; }
.hth-header__inner{
  min-height:var(--hh);
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  transition:min-height var(--dur-base) var(--ease);
}
.hth-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  background:rgba(14,27,43,.72);
  transition:border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.hth-brand:hover{ border-color:var(--cyan); background:rgba(20,39,31,.9); }
.hth-brand__mark{
  font-family:var(--font-display);
  font-weight:800;
  font-stretch:88%;
  font-size:1.02rem;
  letter-spacing:.01em;
  color:var(--text);
  white-space:nowrap;
}
.hth-brand__tag{
  padding-left:10px;
  border-left:1px solid var(--line);
  font-size:.72rem;
  letter-spacing:.08em;
  color:var(--muted);
  white-space:nowrap;
}
.hth-nav{ justify-self:center; }
.hth-nav__list{
  display:flex;
  align-items:center;
  gap:2px;
  padding:4px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  background:rgba(14,27,43,.62);
}
.hth-nav__item{ display:block; }
.hth-nav__link{
  display:block;
  padding:8px 14px;
  border-radius:var(--radius-pill);
  font-size:.9rem;
  font-weight:500;
  color:var(--muted);
  white-space:nowrap;
  transition:background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.hth-nav__link:hover{ background:var(--ink-soft); color:var(--text); }
.hth-nav__link[aria-current="page"]{ background:var(--cyan); color:#06231E; font-weight:700; }
.hth-nav__link[aria-current="page"]:hover{ background:var(--cyan); color:#06231E; }
.hth-utility{ display:flex; align-items:center; gap:10px; justify-self:end; }
.hth-round-chip{
  display:inline-flex;
  align-items:baseline;
  gap:8px;
  padding:6px 12px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  background:rgba(11,31,26,.7);
  white-space:nowrap;
}
.hth-round-chip__label{ font-size:.7rem; letter-spacing:.08em; color:var(--muted); }
.hth-round-chip__num{ font-size:.92rem; color:var(--cyan); }
.hth-status{ display:inline-flex; align-items:center; gap:8px; font-size:.75rem; color:var(--muted); }
.hth-status__dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--cyan);
  box-shadow:0 0 0 3px rgba(63,217,194,.18);
}
.hth-status__text{ white-space:nowrap; }
.hth-nav-toggle{
  display:none;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  background:rgba(14,27,43,.72);
  color:var(--text);
  font-size:.82rem;
  letter-spacing:.06em;
  transition:border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.hth-nav-toggle:hover{ border-color:var(--cyan); color:var(--cyan); }
.hth-nav-toggle__bars{ display:inline-flex; flex-direction:column; gap:4px; width:16px; }
.hth-nav-toggle__bars i{
  display:block;
  height:1px;
  background:currentColor;
  transition:transform var(--dur-base) var(--ease);
}
.hth-header[data-open] .hth-nav-toggle__bars i:first-child{ transform:translateY(2.5px) rotate(45deg); }
.hth-header[data-open] .hth-nav-toggle__bars i:last-child{ transform:translateY(-2.5px) rotate(-45deg); }
.hth-nav-toggle__label{ white-space:nowrap; }
.hth-progress{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  background:transparent;
  pointer-events:none;
}
.hth-progress__bar{
  display:block;
  width:0;
  height:100%;
  background:var(--cyan);
  transition:width var(--dur-fast) linear;
}

/* --- 11. 页脚：与正文同底的细线分区 --- */
.hth-footer{
  position:relative;
  margin-top:clamp(48px,8vw,96px);
  border-top:1px solid var(--line);
  background:rgba(14,27,43,.28);
  padding-block:clamp(32px,5vw,56px) 24px;
}
.hth-footer__top{
  display:grid;
  grid-template-columns:minmax(220px,1.1fr) minmax(0,2.2fr) minmax(240px,1.2fr);
  gap:clamp(24px,4vw,56px);
  padding-bottom:28px;
  border-bottom:1px solid var(--line);
}
.hth-footer__brand{ display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
.hth-footer__mark{
  font-family:var(--font-display);
  font-weight:800;
  font-stretch:88%;
  font-size:1.08rem;
  letter-spacing:.01em;
  color:var(--text);
}
.hth-footer__tagline{ font-size:.8rem; letter-spacing:.08em; color:var(--cyan); max-width:none; }
.hth-footer__note{ font-size:.82rem; line-height:1.7; color:var(--muted); max-width:34ch; }
.hth-footer__nav{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.hth-footer__col{ min-width:0; }
.hth-footer__col-title{
  margin-bottom:12px;
  font-size:.78rem;
  font-weight:500;
  letter-spacing:.08em;
  color:var(--muted);
  font-family:var(--font-body);
  font-stretch:normal;
}
.hth-footer__links{ display:flex; flex-direction:column; gap:4px; }
.hth-footer__link{
  display:inline-block;
  padding:3px 0;
  font-size:.9rem;
  color:var(--text);
  transition:color var(--dur-fast) var(--ease);
}
.hth-footer__link::before{
  content:"";
  display:inline-block;
  width:8px;
  height:1px;
  margin-right:8px;
  vertical-align:middle;
  background:var(--line-strong);
  transition:background var(--dur-fast) var(--ease);
}
.hth-footer__link:hover{ color:var(--cyan); }
.hth-footer__link:hover::before{ background:var(--cyan); }
.hth-footer__contact{ display:flex; flex-direction:column; gap:4px; }
.hth-contact-list{ display:flex; flex-direction:column; gap:12px; margin:8px 0 12px; }
.hth-contact-list__item{ display:flex; flex-direction:column; gap:2px; }
.hth-contact-list__label{ font-size:.72rem; letter-spacing:.08em; color:var(--muted); }
.hth-contact-list__value{ font-size:.88rem; line-height:1.6; color:var(--text); word-break:break-word; }
.hth-footer__meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:8px 24px;
  padding-top:18px;
  font-size:.78rem;
  color:var(--muted);
}
.hth-footer__closing{ max-width:none; color:var(--muted); }
.hth-footer__copyright{ max-width:none; }
.hth-footer__legal{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 20px;
  margin-top:10px;
  padding-top:10px;
  border-top:1px solid var(--line);
  font-size:.78rem;
  max-width:none;
}
.hth-footer__icp{ color:var(--text); font-weight:600; letter-spacing:.02em; }
.hth-footer__region{ color:var(--muted); }

/* --- 12. 数据组件：比分条 / 时间轴 / 表格 / 面包屑 / 媒体 --- */
.hth-scorebar{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:stretch;
  border:1px solid var(--line);
  border-radius:var(--radius-hard);
  background:var(--navy);
  overflow:hidden;
}
.hth-scorebar__side{ display:flex; align-items:center; gap:12px; padding:14px 16px; min-width:0; }
.hth-scorebar__side--home{ justify-content:flex-start; border-left:3px solid var(--home); }
.hth-scorebar__side--away{ justify-content:flex-end; text-align:right; border-right:3px solid var(--away); }
.hth-scorebar__team{ font-family:var(--font-display); font-weight:800; font-stretch:88%; font-size:1rem; }
.hth-scorebar__meta{ font-size:.76rem; letter-spacing:.08em; color:var(--muted); }
.hth-scorebar__axis{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  padding:8px 18px;
  border-inline:1px solid var(--line);
  background:rgba(11,31,26,.65);
}
.hth-scorebar__score{
  font-family:var(--font-num);
  font-weight:700;
  font-variant-numeric:tabular-nums;
  font-size:clamp(1.4rem,3vw,2rem);
  line-height:1;
  color:var(--cyan);
}
.hth-timeline{ display:grid; gap:0; }
.hth-timeline__item{ position:relative; padding:14px 0 14px 26px; }
.hth-timeline__item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:1px;
  background:var(--line);
  transition:background var(--dur-slow) var(--ease);
}
.hth-timeline__marker{
  position:absolute;
  left:-3px;
  top:24px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--line-strong);
}
.hth-timeline__item--current::before{ background:var(--amber); }
.hth-timeline__item--current .hth-timeline__marker{
  background:var(--amber);
  box-shadow:0 0 0 4px rgba(240,166,58,.16);
}
.hth-timeline__round{
  font-family:var(--font-num);
  font-weight:700;
  font-variant-numeric:tabular-nums;
  font-size:1rem;
  color:var(--text);
}
.hth-timeline__item--current .hth-timeline__round{ color:var(--amber); }
.hth-timeline__body{ font-size:.9rem; line-height:1.7; color:var(--muted); }
.hth-table{ width:100%; font-size:.92rem; }
.hth-table caption{
  padding-bottom:10px;
  text-align:left;
  font-size:.78rem;
  letter-spacing:.08em;
  color:var(--muted);
}
.hth-table th{
  padding:10px 12px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-size:.78rem;
  font-weight:500;
  letter-spacing:.08em;
  color:var(--muted);
  white-space:nowrap;
}
.hth-table td{
  padding:12px;
  border-bottom:1px solid var(--line);
  vertical-align:middle;
}
.hth-table tbody tr{ transition:background var(--dur-fast) var(--ease); }
.hth-table tbody tr:hover{ background:var(--ink-soft); }
.hth-table__num{
  font-family:var(--font-num);
  font-weight:700;
  font-variant-numeric:tabular-nums;
  color:var(--cyan);
}
.hth-breadcrumb{ padding-block:16px; font-size:.78rem; color:var(--muted); }
.hth-breadcrumb__list{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; }
.hth-breadcrumb__item{ display:inline-flex; align-items:center; gap:8px; }
.hth-breadcrumb__item + .hth-breadcrumb__item::before{ content:"/"; color:var(--line-strong); }
.hth-breadcrumb__link{ color:var(--muted); transition:color var(--dur-fast) var(--ease); }
.hth-breadcrumb__link:hover{ color:var(--cyan); }
.hth-breadcrumb__item[aria-current="page"]{ color:var(--text); }
.hth-media{
  position:relative;
  display:block;
  width:100%;
  overflow:hidden;
  background:var(--navy);
  border:1px solid var(--line);
  border-radius:var(--radius-hard);
}
.hth-media::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.08;
  background-image:
    repeating-linear-gradient(90deg, var(--text) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(0deg, var(--text) 0 1px, transparent 1px 14px);
}
.hth-media--16x9{ aspect-ratio:16 / 9; }
.hth-media--4x3{ aspect-ratio:4 / 3; }
.hth-media--1x1{ aspect-ratio:1 / 1; }
.hth-media__img{ display:block; width:100%; height:100%; object-fit:cover; }
.hth-media__caption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:1;
  padding:10px 12px;
  background:linear-gradient(180deg, rgba(11,31,26,0), rgba(11,31,26,.9));
  font-size:.78rem;
  letter-spacing:.06em;
  color:var(--text);
}
.hth-media__badge{
  position:absolute;
  top:10px;
  left:10px;
  z-index:1;
  padding:3px 10px;
  border:1px solid rgba(63,217,194,.45);
  border-radius:var(--radius-pill);
  background:rgba(11,31,26,.82);
  color:var(--cyan);
  font-family:var(--font-num);
  font-weight:700;
  font-variant-numeric:tabular-nums;
  font-size:.72rem;
  letter-spacing:.06em;
}

/* --- 13. 进入视口的层次显现 --- */
html[data-js="on"] [data-reveal]{
  opacity:0;
  transform:translateY(6px);
  transition:opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
html[data-js="on"] [data-reveal].is-visible{ opacity:1; transform:none; }

/* --- 14. 响应式 --- */
@media (max-width:1180px){
  .hth-brand__tag{ display:none; }
  .hth-status__text{ display:none; }
  .hth-nav__link{ padding:8px 11px; font-size:.86rem; }
}
@media (max-width:980px){
  .hth-span-3,.hth-span-4{ grid-column:span 6; }
  .hth-footer__top{ grid-template-columns:minmax(0,1fr) minmax(0,1fr); }
  .hth-footer__brand{ grid-column:1 / -1; }
  .hth-footer__contact{ grid-column:1 / -1; }
}
@media (max-width:920px){
  .hth-header{ --hh:64px; }
  .hth-header__inner{ grid-template-columns:minmax(0,1fr) auto auto; gap:10px; }
  .hth-brand{ grid-column:1; justify-self:start; padding:7px 12px; }
  .hth-brand__mark{ font-size:.96rem; }
  .hth-utility{ grid-column:2; justify-self:end; gap:0; }
  .hth-status{ display:none; }
  .hth-round-chip{ padding:6px 10px; }
  .hth-round-chip__label{ display:none; }
  .hth-nav-toggle{ display:inline-flex; grid-column:3; justify-self:end; }
  .hth-nav{
    position:absolute;
    left:var(--gutter);
    right:var(--gutter);
    top:calc(100% + 8px);
    display:none;
    justify-self:stretch;
  }
  .hth-header[data-open] .hth-nav{ display:block; }
  .hth-nav__list{
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:8px;
    border-radius:4px;
    background:rgba(14,27,43,.97);
    box-shadow:0 20px 44px rgba(0,0,0,.5);
  }
  .hth-nav__item + .hth-nav__item{ border-top:1px solid var(--line); }
  .hth-nav__link{ padding:13px 14px; border-radius:var(--radius-hard); font-size:.95rem; color:var(--text); }
  .hth-nav__link[aria-current="page"]{ border-radius:var(--radius-hard); }
}
@media (max-width:640px){
  .hth-span-3,.hth-span-4,.hth-span-6,.hth-span-8{ grid-column:span 12; }
  .hth-footer__nav{ grid-template-columns:minmax(0,1fr) minmax(0,1fr); }
  .hth-footer__meta{ flex-direction:column; align-items:flex-start; }
  .hth-scorebar{ grid-template-columns:1fr; }
  .hth-scorebar__side--home{ border-left:3px solid var(--home); border-bottom:1px solid var(--line); }
  .hth-scorebar__side--away{ border-right:3px solid var(--away); }
  .hth-scorebar__axis{ flex-direction:row; gap:10px; border-inline:0; border-block:1px solid var(--line); }
}

/* --- 15. 降低动效 --- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  html[data-js="on"] [data-reveal]{ opacity:1; transform:none; }
  .hth-progress__bar{ transition:none; }
}
