:root {
  --pitch: #0b6b3a;
  --pitch-dark: #084f2b;
  --gold: #ffd23f;
  --ink: #1a2b1a;
  --muted: #607060;
  --paper: #fafbf7;
  --card: #ffffff;
  --line: #e5e9e0;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.page-header {
  background: var(--pitch);
  color: #fff;
  padding: 14px 20px;
  border-bottom: 3px solid var(--gold);
}
.back-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.back-link:hover { text-decoration: underline; }
.page-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}
.stadium-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10, 40, 20, 0.06);
  border: 1px solid var(--line);
}
.stadium-photo {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--pitch-dark);
}
.no-photo {
  height: 120px;
  background: linear-gradient(135deg, var(--pitch) 0%, var(--pitch-dark) 100%);
}
.stadium-body { padding: 24px 28px 28px; }
.crumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--pitch); text-decoration: underline; }
.crumbs span { margin: 0 6px; }
h1 {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 4px;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
h1 img { height: 26px; border-radius: 3px; }
.stadium-sub {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 20px;
}
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.fact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}
.fact-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
}
.clubs-block, .notable-block { margin: 20px 0; }
.clubs-block h2, .notable-block h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pitch-dark);
}
.club-chip {
  display: inline-block;
  padding: 5px 12px;
  margin: 3px 4px 3px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  background: #f6f8f2;
}
.club-chip .league {
  color: var(--muted);
  font-size: 11px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.notable-list { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.notable-list li { padding: 4px 0; border-bottom: 1px dotted var(--line); }
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.links a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.12s ease;
}
.links a.primary {
  background: var(--pitch);
  color: #fff;
}
.links a.secondary {
  background: #fff;
  color: var(--pitch-dark);
  border: 1px solid var(--pitch);
}
.links a:hover { transform: translateY(-1px); }
.footer-note {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin-top: 24px;
}
.footer-note a { color: var(--pitch); }
@media (max-width: 640px) {
  .stadium-body { padding: 20px 20px 24px; }
  h1 { font-size: 32px; }
  .stadium-photo { height: 220px; }
}
/* Index page */
.index-list {
  columns: 2;
  column-gap: 28px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.index-list li { break-inside: avoid; padding: 3px 0; }
.index-list a { color: var(--pitch-dark); text-decoration: none; }
.index-list a:hover { text-decoration: underline; }
.index-list .meta { color: var(--muted); font-size: 12px; margin-left: 6px; }
@media (max-width: 640px) { .index-list { columns: 1; } }
