/* ── 走一日球迷 共用文章樣式 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:    #D42B2B;
  --red-dk: #A51E1E;
  --navy:   #0F1F3D;
  --gold:   #F5A623;
  --white:  #FFFFFF;
  --gray:   #F4F4F4;
  --text:   #1A1A1A;
  --muted:  #666;
  --radius: 10px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans TC', sans-serif; color: var(--text); background: var(--white); }

/* ── SCORES BAR ── */
.scores-bar {
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow-x: auto;
  scrollbar-width: none;
}
.scores-bar::-webkit-scrollbar { display: none; }
.scores-inner {
  display: flex; align-items: center;
  min-width: max-content;
  padding: 0 5%;
  gap: 0;
}
.score-game {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  font-size: .8rem; color: rgba(255,255,255,.85);
  white-space: nowrap; cursor: default;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .5px;
}
.score-game:first-child { padding-left: 0; }
.score-game .team { font-weight: 700; }
.score-game .vs { color: rgba(255,255,255,.35); font-size: .7rem; }
.score-game .num { color: var(--gold); font-weight: 700; font-size: 1rem; }
.score-game .status { font-size: .68rem; color: rgba(255,255,255,.45); margin-left: 4px; }
.score-game.live .status { color: #4ade80; }
.scores-bar-label {
  font-family: 'Oswald', sans-serif; font-size: .7rem; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
  padding: 8px 20px 8px 0;
  white-space: nowrap; flex-shrink: 0;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  width: 42px; height: 42px; background: var(--red);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 22px;
}
.nav-logo-text {
  font-family: 'Oswald', sans-serif; font-size: 1.25rem;
  font-weight: 700; color: var(--white); letter-spacing: 1px;
}
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: .9rem; font-weight: 700; letter-spacing: .5px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--red); color: var(--white);
  padding: 8px 20px; border-radius: 6px;
  font-weight: 700; font-size: .9rem; text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: var(--red-dk); }

/* ── ARTICLE HERO ── */
.article-hero {
  position: relative;
  padding: 72px 5% 60px;
  min-height: 320px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.article-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a0a20 100%);
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.6) 0%, rgba(0,0,0,.1) 100%);
}
.article-hero-content { position: relative; z-index: 2; max-width: 840px; color: var(--white); }
.article-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: var(--white);
  font-family: 'Oswald', sans-serif; font-size: .72rem;
  font-weight: 700; letter-spacing: 2px;
  padding: 4px 14px; border-radius: 4px;
  text-transform: uppercase; margin-bottom: 16px;
}
.article-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 14px;
}
.article-hero h1 em { color: var(--gold); font-style: normal; }
.article-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: .82rem; color: rgba(255,255,255,.6);
}
.article-meta .dot { color: var(--red); }

/* ── STATS CARD ── */
.stats-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px 32px;
  color: var(--white);
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .72rem; color: rgba(255,255,255,.55);
  letter-spacing: 1px; font-weight: 700; text-transform: uppercase;
}
.stat-divider {
  width: 1px; background: rgba(255,255,255,.1);
}

/* ── ARTICLE BODY ── */
.article-wrap { max-width: 820px; margin: 0 auto; padding: 56px 5%; }
.article-body p {
  font-size: 1.05rem; line-height: 1.9;
  margin-bottom: 24px; color: #222;
}
.article-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  margin: 48px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--red);
}
.article-body h3 {
  font-size: 1.1rem; font-weight: 700;
  margin: 32px 0 12px; color: var(--navy);
}
.article-body strong { color: var(--red); }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: #fffbf2;
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
  font-style: italic; color: #444;
  font-size: .98rem; line-height: 1.8;
}
.article-body .highlight-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
}
.article-body .highlight-box p { color: rgba(255,255,255,.85); margin-bottom: 0; }
.article-body .highlight-box strong { color: var(--gold); }

/* ── BACK LINK ── */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); text-decoration: none;
  font-weight: 700; font-size: .9rem;
  margin-bottom: 40px;
  transition: gap .2s;
}
.back-link:hover { gap: 12px; }

/* ── FOOTER ── */
footer {
  background: #080E1C;
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 28px 5%;
  font-size: .82rem;
}
footer strong { color: var(--white); }

/* ── MAP CTA BUTTON ── */
.map-cta-btn {
  display: block;
  background: linear-gradient(135deg, #1a4020, #0a2010);
  border: 2px solid var(--gold);
  color: var(--gold);
  text-align: center;
  padding: 18px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  margin: 32px 0;
  transition: background .2s, color .2s;
}
.map-cta-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  nav { padding: 0 4%; }
  .article-hero { padding: 52px 4% 40px; }
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .article-wrap { padding: 40px 4%; }
}
