@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --red: #c90000;
  --red-dark: #9f0000;
  --ink: #111;
  --paper: #f7f5f0;
  --white: #fff;
  --muted: #666;
  --line: #d7d3cc;
  --soft: #ece9e3;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.45;
}

a { color: inherit; }

.masthead {
  background: var(--red);
  color: var(--white);
  border-bottom: 5px solid var(--ink);
}

.masthead-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px 18px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-name {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: .86;
  letter-spacing: .01em;
}

.brand-tagline {
  margin-top: 10px;
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-nav {
  background: var(--ink);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
}

.nav-inner a {
  flex: 0 0 auto;
  padding: 14px 20px 12px;
  color: var(--white);
  text-decoration: none;
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 4px solid transparent;
}

.nav-inner a:hover,
.nav-inner a.active {
  background: #252525;
  border-bottom-color: var(--red);
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 30px auto 70px;
}

.narrow-page { max-width: 900px; }

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.status-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--ink);
  padding: 18px 20px;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.status-card strong {
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.leader-card {
  border-top-color: var(--red);
}

.eyebrow,
.section-kicker {
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.eyebrow {
  font-size: .82rem;
  color: var(--muted);
}

.section-block {
  margin: 28px 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.section-heading {
  padding: 18px 20px;
  border-bottom: 4px solid var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--muted);
  font-size: .78rem;
  text-align: right;
}

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th, td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: var(--soft);
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}

td {
  font-size: .95rem;
  font-weight: 500;
}

tbody tr:first-child td {
  font-weight: 700;
}

tbody tr:last-child td { border-bottom: 0; }

.pos { width: 70px; }
.num { text-align: right; font-variant-numeric: tabular-nums; }

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

.headline-item {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.headline-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.headline {
  margin: 0;
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  font-size: 1.3rem;
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  margin: 4px 20px 20px;
  color: var(--red-dark);
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.page-title {
  border-bottom: 6px solid var(--ink);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.page-title h1 {
  margin: 3px 0 4px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: .9;
  text-transform: uppercase;
}

.page-title p {
  margin: 12px 0 0;
  max-width: 700px;
  color: #444;
  font-size: 1.05rem;
}

.news-grid {
  display: grid;
  gap: 16px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 7px solid var(--red);
  padding: 20px 22px;
}

.news-card .gw {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--red-dark);
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 0 0 7px;
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  font-size: 1.8rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.news-card p { margin: 0; color: #444; }

.action-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 10px solid var(--red);
  padding: clamp(28px, 6vw, 60px);
  text-align: center;
}

.action-panel h1 {
  margin: 6px 0 12px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .9;
  text-transform: uppercase;
}

.action-panel p {
  max-width: 600px;
  margin: 0 auto 26px;
  color: #444;
  font-size: 1.05rem;
}

.big-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  border: 3px solid var(--red);
}

.big-button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.small-note {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  font-size: .8rem !important;
  color: var(--muted) !important;
}

.rules {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 28px;
}

.rules section {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.rules section:last-child { border-bottom: 0; }

.rules h2 {
  margin: 0 0 7px;
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.rules p { margin: 0; color: #444; }

.site-footer {
  padding: 26px 20px 40px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  display: block;
  font-family: Anton, Impact, sans-serif;
  font-size: 1.8rem;
  color: var(--ink);
}

.site-footer span {
  font-family: "Barlow Condensed", Arial Narrow, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
}

.loading, .error {
  padding: 22px;
  color: var(--muted);
}

@media (max-width: 700px) {
  .masthead-inner { padding: 18px 16px 15px; }
  .brand-name { font-size: 3.5rem; }
  .brand-tagline { font-size: .85rem; }
  .nav-inner a { padding: 12px 14px 10px; font-size: .9rem; }
  .page { width: min(100% - 20px, 1180px); margin-top: 20px; }
  .status-grid { grid-template-columns: 1fr; }
  .status-card { min-height: 92px; }
  .section-heading { display: block; }
  .section-kicker { display: block; margin-top: 7px; text-align: left; }
  .headline-list { grid-template-columns: 1fr; }
  .headline-item:nth-child(odd) { border-right: 0; }
  .headline-item:last-child { border-bottom: 0; }
  .optional-col { display: none; }
  table { min-width: 0; }
  th, td { padding: 11px 10px; }
  .pos { width: 50px; }
}
