:root {
  color-scheme: light;
  --bg: #f7f8f4;
  --ink: #10211c;
  --muted: #5b6b63;
  --line: #dce4dc;
  --surface: #ffffff;
  --deep: #0b3b2e;
  --deep-2: #15543e;
  --accent: #d7f36b;
  --gold: #f2c14e;
  --blue: #2457a6;
  --shadow: 0 24px 70px rgba(14, 43, 34, 0.13);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans SC", "Noto Sans TC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  background: var(--accent);
  color: var(--deep);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 248, 244, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 228, 220, 0.72);
}

.nav,
.hero,
.section,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--accent);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2b4138;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  padding: 8px 0;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: 54px;
  padding: 56px 0 78px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 28px 0 0;
  max-width: 620px;
  color: #334940;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
}

.button.primary {
  background: var(--deep);
  color: white;
}

.button.secondary {
  border: 1px solid #b9c8bc;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.6);
}

.hero-panel {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 25%, rgba(215, 243, 107, 0.42), transparent 28%),
    linear-gradient(145deg, #0b3b2e 0%, #103e63 100%);
  box-shadow: var(--shadow);
  padding: 26px;
  color: white;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.45;
}

.score-card,
.hero-stats,
.pitch-visual {
  position: relative;
  z-index: 1;
}

.score-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
  backdrop-filter: blur(18px);
}

.match-label,
.section-tag {
  display: inline-flex;
  color: var(--deep);
  background: var(--accent);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  font-weight: 800;
}

.teams span:last-child {
  text-align: right;
}

.teams strong {
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
}

.score-card p {
  color: rgba(255, 255, 255, 0.74);
  margin: 18px 0 0;
}

.pitch-visual {
  margin: 42px auto;
  width: min(340px, 82%);
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.pitch-visual::before,
.pitch-visual::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.44);
}

.pitch-visual::before {
  width: 62%;
  height: 62%;
  border-radius: 50%;
}

.pitch-visual::after {
  width: 2px;
  height: 110%;
  border-width: 0 0 0 2px;
}

.pitch-visual span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    72px 42px 0 #ffffff,
    -78px -48px 0 var(--gold),
    28px -90px 0 #ffffff,
    -44px 92px 0 var(--accent);
}

.hero-stats {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stats div {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px;
}

.hero-stats strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.section {
  padding: 78px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr);
  gap: 18px;
}

.lead-story,
.story-card,
.region-grid article,
.analysis-note,
.about-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(20, 40, 33, 0.06);
}

.lead-story {
  grid-row: span 3;
  overflow: hidden;
}

.story-image {
  min-height: 292px;
}

.stadium-art {
  background:
    linear-gradient(0deg, rgba(11, 59, 46, 0.88), rgba(11, 59, 46, 0.12)),
    radial-gradient(circle at 50% 110%, rgba(215, 243, 107, 0.85), transparent 34%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.16) 0,
      rgba(255, 255, 255, 0.16) 8px,
      transparent 8px,
      transparent 32px
    ),
    linear-gradient(135deg, #1a5f46, #2457a6);
  position: relative;
}

.stadium-art::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 68%;
  height: 46%;
  transform: translateX(-50%);
  border: 3px solid rgba(255, 255, 255, 0.74);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.story-body,
.story-card {
  padding: 24px;
}

.story-body h3,
.story-card h3,
.region-grid h3,
.analysis-note h3,
.about-card h2 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.story-card h3 {
  font-size: 21px;
}

.story-body p,
.story-card p,
.region-grid p,
.analysis-note p,
.about-card p {
  margin: 0;
  color: var(--muted);
}

.league-band {
  width: 100%;
  max-width: none;
  background: var(--deep);
  color: white;
  padding-left: max(20px, calc((100% - 1120px) / 2));
  padding-right: max(20px, calc((100% - 1120px) / 2));
}

.league-band .section-heading,
.league-list {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.league-band .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.league-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.league-list article {
  min-height: 180px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.league-list strong {
  font-size: 24px;
}

.league-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.fixture-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
}

.fixture-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.fixture-row {
  display: grid;
  grid-template-columns: 0.65fr 1.45fr 0.9fr 0.65fr;
  gap: 16px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.fixture-row:last-child {
  border-bottom: 0;
}

.fixture-head {
  background: #eaf0ea;
  color: #31483f;
  font-size: 13px;
  font-weight: 900;
}

.fixture-row span {
  min-width: 0;
}

.analysis-note {
  padding: 24px;
}

.analysis-note h3 {
  margin-top: 0;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.region-grid article {
  padding: 26px;
}

.region-grid h3 {
  margin-top: 0;
}

.region-grid a {
  display: inline-flex;
  margin-top: 18px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--deep);
  color: white;
  font-weight: 800;
}

.about-section {
  padding-top: 20px;
}

.about-card {
  padding: clamp(26px, 6vw, 54px);
  background:
    linear-gradient(90deg, rgba(215, 243, 107, 0.2), transparent),
    white;
}

.about-card h2 {
  margin-top: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 0 56px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 560px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #2e473d;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-panel {
    min-height: 470px;
  }

  .section-heading,
  .news-grid,
  .fixture-layout,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .league-list {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .nav,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-panel {
    min-height: 430px;
    padding: 18px;
  }

  .teams {
    grid-template-columns: 1fr;
  }

  .teams span:last-child {
    text-align: left;
  }

  .hero-stats {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
  }

  .pitch-visual {
    margin-top: 30px;
    width: 220px;
  }

  .section {
    padding: 54px 0;
  }

  .story-image {
    min-height: 220px;
  }

  .league-list {
    grid-template-columns: 1fr;
  }

  .fixture-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
