:root {
  --bg: #ece8e1;
  --sheet: #f7f4ee;
  --ink: #16181d;
  --ink-2: #3d4a5c;
  --muted: #5c6b7e;
  --line: #d7dee8;
  --accent: #1a2744;
  --hk: #c81e3a;
  --good: #0f766e;
  --warn: #9a3412;
  --hot: #b42318;
  --track: #e6ebf2;
  --note: #fff7ed;
  --note-line: #fdba74;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Source Sans 3", "Noto Sans TC", "PingFang HK", "Segoe UI", sans-serif;
}
h1, h2, h3 {
  font-family: "Fraunces", "Source Serif 4", Georgia, serif;
}
body { min-height: 100vh; }
.topbar {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.02em;
}
.brand small {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.menu { display: flex; flex-wrap: wrap; gap: 6px; }
.menu a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 11px;
  border: 1px solid transparent;
}
.menu a:hover, .menu a.on { color: var(--accent); border-color: var(--line); background: #fff; }
.sheet {
  width: min(1120px, calc(100% - 28px));
  margin: 18px auto 72px;
  background: var(--sheet);
  border: 1px solid var(--line);
  box-shadow: none;
  padding: 28px 32px 40px;
}
.mast {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}
.kicker {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hk);
  font-weight: 700;
}
h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 650;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-top: 4px;
}
.home-hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -.045em;
  max-width: 11em;
}
.deck {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 10px;
  max-width: 42em;
}
.home-hero .deck { font-size: 18px; }
.rule { display: none; }
.issue {
  text-align: right;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  min-width: 170px;
}
.issue b { display: block; color: var(--ink); font-size: 14px; font-weight: 700; }
.issue-stamp {
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: #fff;
  text-align: left;
  min-width: 160px;
}
.issue-stamp b {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 16px;
  color: var(--ink);
}
.disclaimer {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--note-line);
  background: var(--note);
  color: #7c2d12;
  font-size: 14px;
  line-height: 1.5;
}
.disclaimer strong { margin-right: 6px; color: var(--warn); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 800px) { .cards { grid-template-columns: 1fr; } }
.card {
  border: 1px solid var(--line);
  padding: 22px 20px 20px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: block;
  min-height: 210px;
}
.card:hover { border-color: var(--accent); }
.card .n {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 13px;
  color: var(--hk);
  font-weight: 700;
  margin-bottom: 18px;
}
.card h3 { font-size: 22px; margin: 4px 0 8px; }
.card p { color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.card.feature {
  background: #1a2744;
  color: #f7f4ee;
  border-color: #1a2744;
}
.card.feature p { color: #cfd6e4; }
.card.feature:hover { border-color: var(--hk); }
.badge-hk {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9f1239;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  padding: 2px 7px;
}
.card.feature .badge-hk {
  color: #fff;
  background: var(--hk);
  border-color: var(--hk);
}
nav.sports {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  border-bottom: 1px solid var(--line);
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 650;
}
nav.sports button {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 12px 0 10px;
  cursor: pointer;
  font: inherit;
  color: var(--muted);
}
nav.sports button.on { color: var(--accent); border-bottom-color: var(--hk); }
.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  padding: 16px 0 18px;
  border-bottom: 1px solid var(--line);
}
label.field {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
select {
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
  border: 1px solid #b7c2d0;
  padding: 8px 10px;
  min-width: 240px;
}
button.reload {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
button.reload:hover { background: #10182c; }
.status { font-size: 13px; color: var(--muted); padding-bottom: 8px; }
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .72fr);
  gap: 32px;
  margin-top: 24px;
}
@media (max-width: 860px) {
  .sheet { padding: 20px; }
  .mast, .layout { grid-template-columns: 1fr; }
  .issue { text-align: left; }
}
h2 {
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
  padding-bottom: 8px;
}
h2.spaced { margin-top: 28px; }
.fixture { padding: 16px 0 18px; border-bottom: 1px solid var(--line); }
.when {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-weight: 600;
}
.mark {
  font-weight: 700;
  font-size: 11px;
  background: #eef2ff;
  color: var(--accent);
  border: 1px solid #c7d2fe;
  padding: 2px 8px;
}
.mark.live { background: #fef2f2; color: var(--hot); border-color: #fecaca; }
.mark.ft { background: #f1f5f9; color: var(--muted); border-color: var(--line); }
.mark.pred { background: #ecfdf5; color: var(--good); border-color: #a7f3d0; }
.mark.risk { background: #fff7ed; color: #9a3412; border-color: #fdba74; }
.names {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: baseline;
  margin: 8px 0 4px;
}
.names .club { font-size: 20px; font-weight: 700; }
.names .away { text-align: right; }
.names .mid {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 22px;
  min-width: 84px;
  text-align: center;
}
.score-label {
  display: block;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.rec { font-size: 13px; color: var(--muted); }
.line {
  display: grid;
  grid-template-columns: 92px 1fr 46px;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
  color: var(--ink-2);
}
.meter { height: 8px; background: var(--track); }
.meter > i { display: block; height: 100%; background: var(--accent); }
.meter.draw > i { background: #a16207; }
.meter.away > i { background: var(--hot); }
.wx, .wires, .why { font-size: 14px; line-height: 1.45; margin-top: 10px; color: var(--ink-2); }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-right: 8px;
  color: var(--accent);
}
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th {
  text-align: left;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  padding: 4px 6px 8px;
}
td { padding: 8px 6px; border-bottom: 1px solid var(--line); }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }
.cut { font-size: 14px; color: var(--ink-2); margin: 0 0 14px; }
.story { padding: 10px 0; border-bottom: 1px solid var(--line); }
.story time { display: block; font-size: 11px; color: var(--muted); font-weight: 700; }
.story a { color: var(--accent); text-decoration: none; font-weight: 700; }
.empty { padding: 18px 0; color: var(--muted); }
.method { margin-top: 32px; }
footer.col {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.view-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0 0 16px; }
.view-btn, .choice-btn {
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  border: 1px solid #b7c2d0;
  background: #fff;
  color: var(--ink-2);
  cursor: pointer;
}
.view-btn.on { border-color: var(--accent); color: var(--accent); background: #eef2ff; }
.choice-btn.alt { border-color: var(--warn); color: var(--warn); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
@media (max-width: 640px) { .choice-grid { grid-template-columns: 1fr; } }
.choice { border: 1px solid var(--line); padding: 10px 12px; background: #fff; }
.choice.on { border-color: var(--accent); background: #eef2ff; }
.choice.risk.on { border-color: #c2410c; background: #fff7ed; }
.choice-kicker { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.choice-pick { font-size: 16px; font-weight: 700; margin: 4px 0 2px; }
.choice-p { font-size: 12px; color: var(--ink-2); margin-bottom: 8px; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 16px 0 22px;
}
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat { border: 1px solid var(--line); padding: 14px; background: #fff; }
.stat b { display: block; font-size: 28px; letter-spacing: -.03em; font-family: "Fraunces", serif; }
.stat span { color: var(--muted); font-size: 12px; font-weight: 700; }
.ok { color: var(--good); font-weight: 800; }
.no { color: var(--hot); font-weight: 800; }
.spin {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.confidence { margin: 0 0 22px; padding: 16px 16px 8px; background: #fff; border: 1px solid var(--line); }
.conf-list { list-style: none; margin: 0 0 8px; }
.conf-list li {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.conf-rank { font-family: "Fraunces", serif; font-weight: 700; color: var(--hk); }
.conf-match { font-weight: 700; }
.conf-pick { color: var(--ink-2); font-size: 13px; }
.band {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border: 1px solid var(--line);
}
.band-high { background: #ecfdf5; color: var(--good); border-color: #a7f3d0; }
.band-medium { background: #fff7ed; color: var(--warn); border-color: #fdba74; }
.band-low { background: #f8fafc; color: var(--muted); }

.news-rail {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: stretch;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  min-height: 46px;
}
.news-rail-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 10px;
  background: var(--hk);
  color: #fff;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}
.news-rail-label b { display: block; font-size: 12px; letter-spacing: .16em; }
.news-rail-mask { overflow: hidden; }
.news-rail-run {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  min-height: 46px;
  color: var(--muted);
  font-size: 13px;
  padding: 0 12px;
}
.news-rail-run.on { animation: ticker 70s linear infinite; }
.news-rail:hover .news-rail-run.on { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.news-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 0 22px 0 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
  border-right: 1px solid var(--line);
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-chip:hover { color: var(--hk); }
.news-chip b {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.news-chip.hk b { color: #fff; background: var(--hk); border-color: var(--hk); }
.hk-body .news-rail { border-color: #3a151c; background: #16090c; margin: 0 auto 22px; width: min(1120px, calc(100% - 28px)); }
.hk-body .news-rail-label { background: #c81e3a; }
.hk-body .news-chip { color: #f4ece8; border-right-color: #3a151c; }
.hk-body .news-chip:hover { color: #fff; }
@media (max-width: 640px) {
  .news-rail { grid-template-columns: 64px 1fr; }
  .news-chip { max-width: 280px; }
}

.menu a { transition: color 180ms var(--ease), background 180ms var(--ease); }
.menu a:hover, .menu a.on { background: transparent; border-color: transparent; color: var(--hk); }
button.reload, .view-btn, .choice-btn, .menu a {
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), transform 150ms ease-out;
}
button.reload:active, .view-btn:active, .choice-btn:active { transform: scale(0.96); }
.folio {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 0;
  margin-top: 28px;
  border-top: 2px solid var(--ink);
}
.folio .lead, .folio-side a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.folio .lead {
  padding: 22px 28px 22px 0;
  border-right: 1px solid var(--line);
}
.folio .lead h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  border: 0;
  padding: 0;
  margin: 8px 0 10px;
  letter-spacing: -.03em;
}
.folio-side a {
  padding: 18px 0 18px 24px;
  border-bottom: 1px solid var(--line);
}
.folio-side a:last-child { border-bottom: 0; }
.folio-side h3 { font-size: 20px; margin: 4px 0 6px; }
.folio-side p, .folio .lead p { color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.folio .lead, .folio-side a, .card {
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.folio .lead:hover, .folio-side a:hover { background: rgba(255,255,255,.35); }
@media (max-width: 800px) {
  .folio { grid-template-columns: 1fr; }
  .folio .lead { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; }
  .folio-side a { padding-left: 0; }
}
.fixture {
  transition: background 180ms var(--ease);
}
.fixture:hover { background: rgba(255,255,255,.4); }
.news-chip { transition: color 180ms var(--ease); }
.choice { transition: border-color 180ms var(--ease), background 180ms var(--ease); }

@media (prefers-reduced-motion: no-preference) {
  .rise, .mast, .news-rail, .folio, .disclaimer, .hk-hero, .hk-wrap, .layout, .controls {
    animation: rise 520ms var(--ease) both;
  }
  .news-rail { animation-delay: 80ms; }
  .folio { animation-delay: 140ms; }
  .disclaimer { animation-delay: 200ms; }
  .fixture { animation: rise 420ms var(--ease) both; }
  .fixture:nth-child(1) { animation-delay: 40ms; }
  .fixture:nth-child(2) { animation-delay: 80ms; }
  .fixture:nth-child(3) { animation-delay: 120ms; }
  .fixture:nth-child(4) { animation-delay: 160ms; }
  .fixture:nth-child(5) { animation-delay: 200ms; }
  .hk-hero-copy h1 { animation: rise 700ms var(--ease) both; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .news-rail-run.on { animation: none; }
  .rise, .mast, .news-rail, .folio, .fixture, .hk-hero-copy h1 { animation: none; }
}

.ad-slot {
  margin: 18px 0;
  min-height: 90px;
  border: 1px dashed var(--line);
  background: #fff;
  padding: 10px 12px 12px;
  text-align: center;
}
.ad-label {
  display: block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 8px;
}
.ad-slot p { color: var(--muted); font-size: 13px; line-height: 1.45; }
.hk-body .ad-slot {
  background: #1d1d1b;
  border-color: #3a3333;
}
.hk-body .ad-label, .hk-body .ad-slot p { color: #b9a3a5; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", "Source Sans 3", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}
.brand .word { display: flex; flex-direction: column; gap: 3px; }
.brand small {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  color: #b8c0cc;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.logo {
  width: 36px;
  height: 36px;
  flex: none;
  display: block;
  border: 0;
  background: none;
  border-radius: 9px;
}
.topbar {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 12px max(14px, calc((100% - 1120px) / 2));
  background: #16181d;
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
.menu a { color: #c9d0da; }
.menu a:hover, .menu a.on {
  color: #fff;
  background: transparent;
  border-color: transparent;
  box-shadow: inset 0 -2px 0 #c81e3a;
}
body { border-top: 0; }
.hk-body .topbar { background: #1d1d1b; border-bottom: 2px solid #c02041; }
.hk-body .logo { background: none; border: 0; }

/* —— responsive + modern polish (same identity) —— */
html { overflow-x: clip; }
body {
  overflow-x: clip;
  -webkit-tap-highlight-color: transparent;
}
img, svg, video, iframe, .ad-slot, ins.adsbygoogle { max-width: 100%; }
.sheet, .layout, .layout > *, .fixture, #table, #matches, #news, #confidence { min-width: 0; }
#table, .confidence, nav.sports {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
nav.sports { flex-wrap: nowrap; gap: 0 16px; }
nav.sports button {
  flex: none;
  white-space: nowrap;
  min-height: 44px;
  padding: 10px 2px 8px;
}
select { min-width: 0; max-width: 100%; }
.names .club { overflow-wrap: anywhere; }
.topbar {
  background: rgba(22, 24, 29, .92);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  padding-top: calc(12px + env(safe-area-inset-top));
  padding-left: max(14px, calc((100% - 1120px) / 2), env(safe-area-inset-left));
  padding-right: max(14px, calc((100% - 1120px) / 2), env(safe-area-inset-right));
}
.menu a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.view-btn, .choice-btn, button.reload { min-height: 40px; }

@media (max-width: 1024px) {
  .layout { gap: 22px; }
  .sheet { padding: 22px 22px 36px; }
}

@media (max-width: 860px) {
  .sheet {
    width: 100%;
    margin: 0 0 0;
    border-left: 0;
    border-right: 0;
    padding: 18px 16px 48px;
  }
  .mast, .layout, .folio { grid-template-columns: 1fr; }
  .issue-stamp { min-width: 0; width: 100%; }
  .home-hero h1 { font-size: clamp(32px, 11vw, 52px); max-width: none; }
  .controls { flex-direction: column; align-items: stretch; }
  button.reload { margin-left: 0; width: 100%; }
  label.field, select { width: 100%; }
  .folio .lead { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--line); }
  .folio-side a { padding-left: 0; }
}

@media (max-width: 640px) {
  .topbar {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-bottom: 8px;
  }
  .brand { letter-spacing: .12em; font-size: 16px; }
  .menu {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 2px;
    padding-bottom: 2px;
  }
  .menu::-webkit-scrollbar { display: none; }
  .menu a { flex: none; padding: 8px 12px; }
  .news-rail { grid-template-columns: 54px 1fr; margin-left: 0; margin-right: 0; }
  .news-chip { max-width: 72vw; }
  .names {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .names .away, .names .mid { text-align: left; min-width: 0; }
  .names .club { font-size: 18px; }
  .line { grid-template-columns: 72px 1fr 40px; font-size: 12px; }
  .conf-list li {
    grid-template-columns: 22px 1fr auto;
    gap: 8px;
  }
  .conf-pick { grid-column: 2 / span 1; font-size: 12px; }
  .when { flex-wrap: wrap; }
  .stats { grid-template-columns: 1fr 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .view-row { flex-direction: column; align-items: stretch; }
  .tally { font-size: 13px; }
  .ad-slot { min-height: 70px; }
}

@media (max-width: 380px) {
  .brand small { display: none; }
  .logo { width: 32px; height: 32px; }
  h1 { font-size: 26px; }
  .names .club { font-size: 16px; }
}

@media (hover: none) {
  .news-rail:hover .news-rail-run.on { animation-play-state: running; }
}
@media (prefers-reduced-motion: reduce) {
  .topbar { backdrop-filter: none; }
}

/* —— modern product surface (ESTIPRO mark + HK red kept) —— */
:root {
  --bg: #eef0f3;
  --sheet: #ffffff;
  --ink: #0f1115;
  --ink-2: #3f4754;
  --muted: #6b7380;
  --line: #e6e8ec;
  --accent: #111318;
  --hk: #c81e3a;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(15,17,21,.06), 0 12px 32px rgba(15,17,21,.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
html, body {
  background:
    radial-gradient(800px 280px at 10% -10%, rgba(200,30,58,.06), transparent 55%),
    var(--bg);
}
h1, h2, h3, .issue-stamp b, .stat b, .conf-rank, .names .mid {
  font-family: "Syne", "Source Sans 3", sans-serif;
  font-weight: 800;
  letter-spacing: -.04em;
}
.sheet {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px 36px 44px;
  margin: 20px auto 64px;
}
.mast { border-bottom-color: var(--line); padding-bottom: 24px; }
.kicker {
  letter-spacing: .14em;
  font-size: 11px;
}
.issue-stamp {
  border-radius: var(--radius-sm);
  border-color: var(--line);
  background: #f7f8fa;
}
.disclaimer {
  border-radius: var(--radius-sm);
  border-color: #f0d9c8;
}
.news-rail {
  border-radius: 999px;
  overflow: hidden;
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(15,17,21,.04);
}
.news-rail-label { background: var(--hk); }
.folio {
  border-top: 0;
  gap: 14px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.35fr .9fr;
}
.folio .lead, .folio-side a {
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}
.folio .lead { border-right: 1px solid var(--line); }
.folio-side { display: flex; flex-direction: column; gap: 14px; }
.folio-side a { padding: 20px 22px; border-bottom: 1px solid var(--line); }
.folio .lead:hover, .folio-side a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #cfd3da;
  background: #fff;
}
.ad-slot {
  border-radius: var(--radius);
  border-style: solid;
  background: #f7f8fa;
}
nav.sports { border-bottom-color: transparent; gap: 8px; }
nav.sports button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid transparent;
  min-height: 40px;
}
nav.sports button.on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  border-bottom-color: var(--ink);
}
select, button.reload, .view-btn, .choice-btn {
  border-radius: 10px;
}
select {
  background: #f7f8fa;
  border-color: var(--line);
  min-height: 42px;
  padding: 8px 12px;
}
button.reload {
  background: var(--ink);
  border-radius: 10px;
}
.fixture {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  margin: 0 0 12px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.fixture:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  background: #fff;
}
.confidence, .choice, .stat {
  border-radius: var(--radius);
  background: #f7f8fa;
}
.choice.on { background: #eef2ff; }
.view-btn.on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.mark, .band, .badge-hk, .hk-chip { border-radius: 999px; }
.names .mid { font-size: 26px; }
table { font-variant-numeric: tabular-nums; }
.menu a {
  border-radius: 999px;
  padding: 8px 14px;
}
.menu a.on, .menu a:hover {
  box-shadow: none;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.topbar {
  background: rgba(15,17,21,.88);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

@media (max-width: 860px) {
  .sheet { border-radius: 0; margin: 0; box-shadow: none; }
  .folio { grid-template-columns: 1fr; }
  .folio .lead { border-right: 1px solid var(--line); }
  .news-rail { border-radius: 12px; }
}

.brand { gap: 0; }
.brand-lockup {
  height: 40px;
  width: auto;
  display: block;
  border: 0;
  background: none;
}
.brand .word { display: none; }
.logo, .hk-body .logo { display: none; }
@media (max-width: 640px) {
  .brand-lockup { height: 32px; }
}

.faq { margin-top: 36px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--ink-2); margin-top: 8px; max-width: 42em; }
