/* ============================================================
   style-base.css — fifaonline.space 專屬版面/字體基礎
   字體與間距慣例萃取自該站現有頁面（Roboto + Bebas Neue）
   ============================================================ */
:root {
  --container: 1200px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --font-editorial: 'Bebas Neue', sans-serif;
  --font-mono: 'Roboto', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--black);
  color: var(--silver);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
.bn { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── 站頭／站尾（沿用該站既有頂部橫向nav語彙，簡化為單欄文章頁可用的 header/footer） ── */
.site-header {
  background: var(--black-panel);
  border-bottom: 1px solid var(--gold);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-5) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo { font-size: 19px; font-weight: 900; color: var(--silver); font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; }
.header-nav { display: flex; gap: var(--space-5); }
.nav-link { font-size: 13px; font-weight: 500; color: var(--silver-dim); }
.nav-link.active, .nav-link:hover { color: var(--gold); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-6) 0 80px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
  font-size: 12px;
  color: var(--silver-dim);
}
