:root {
  --bg: #f5f8f8;
  --surface: #ffffff;
  --surface-alt: #eaf3f3;
  --ink: #111a1d;
  --text: #3b4b50;
  --muted: #66787e;
  --line: rgba(17, 26, 29, 0.18);
  --heat: #a6192e;
  --hornets: #00788c;
  --purple: #1d1160;
  --gold: #c9982a;
  --shadow: 0 18px 42px rgba(17, 26, 29, 0.11);
}

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

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(800px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 248, 248, 0.96);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand,
.site-nav a,
.button {
  text-decoration: none;
}

.brand {
  color: var(--ink);
  font-weight: 850;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 760;
}

.site-nav a.active {
  color: var(--ink);
}

.hero,
.page-hero {
  padding: 72px 0 54px;
  background: linear-gradient(135deg, rgba(166, 25, 46, 0.12), rgba(0, 120, 140, 0.12)), var(--surface);
  border-bottom: 2px solid var(--line);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.15;
}

h1 {
  max-width: 13ch;
  font-size: clamp(34px, 5vw, 58px);
}

.lead {
  margin: 18px 0 0;
  max-width: 70ch;
  font-size: 18px;
}

.hero-actions,
.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--hornets);
  color: #fff;
  font-weight: 850;
  box-shadow: var(--shadow);
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
}

.section {
  padding: 54px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

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

.article-stack {
  display: grid;
  gap: 18px;
}

.panel,
.callout,
.stat-card {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.callout {
  border-left: 7px solid var(--hornets);
}

.panel p + p,
.callout p + p {
  margin-top: 12px;
}

.panel ul,
.panel ol,
.callout ul,
.callout ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.stat-card strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-image,
.article-image {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.article-image {
  margin-bottom: 18px;
}

.match-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.team-pill {
  display: grid;
  gap: 4px;
}

.team-pill strong {
  color: var(--ink);
  font-size: 22px;
}

.vs {
  color: var(--gold);
  font-weight: 900;
}

.site-footer {
  padding: 26px 0 36px;
  border-top: 2px solid var(--line);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 32px;
  text-align: center;
}

@media (max-width: 780px) {
  .grid,
  .three-grid,
  .hero-layout,
  .match-strip {
    grid-template-columns: 1fr;
  }

  .header-row,
  .footer-row {
    align-items: start;
    flex-direction: column;
    padding: 16px 0;
  }

  .lead {
    font-size: 16px;
  }
}
.adsterra-link-wrap {
  padding: 0 0 1.25rem;
  text-align: center;
}

.adsterra-link {
  color: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}