:root {
  --ink: #101713;
  --ink-2: #213229;
  --grass: #0f6b3d;
  --grass-2: #0a4a31;
  --lime: #c6ff4a;
  --line: #d7dfd4;
  --paper: #f7f4ea;
  --white: #fffdf6;
  --gold: #f0c24b;
  --red: #d83b2e;
  --muted: #697268;
  --shadow: 0 24px 60px rgba(18, 29, 23, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 23, 19, 0.035) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(0deg, rgba(16, 23, 19, 0.03) 1px, transparent 1px) 0 0 / 36px 36px,
    var(--paper);
  color: var(--ink);
  font-family:
    "Avenir Next",
    "Segoe UI",
    "Helvetica Neue",
    sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  background: var(--lime);
  color: var(--ink);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 234, 0.9);
  border-bottom: 1px solid rgba(16, 23, 19, 0.12);
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 14px clamp(16px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-ball {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 28%, var(--ink) 29% 34%, transparent 35%),
    conic-gradient(from 22deg, var(--white), var(--white) 15%, var(--ink) 15% 22%, var(--white) 22% 38%, var(--ink) 38% 46%, var(--white) 46%);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: inline-block;
  height: 30px;
}

.site-nav {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.site-nav a,
.quick-tools a,
.mini-actions a,
.mini-actions button,
.utility-button,
.spoiler-toggle {
  border: 1px solid rgba(16, 23, 19, 0.18);
  border-radius: var(--radius);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.site-nav a {
  color: var(--ink-2);
  font-size: 14px;
  padding: 9px 11px;
}

.site-nav a:hover,
.quick-tools a:hover,
.mini-actions a:hover,
.mini-actions button:hover,
.utility-button:hover,
.spoiler-toggle:hover {
  transform: translateY(-1px);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: end;
}

.language-picker {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.language-picker select {
  appearance: none;
  background-color: #fffef9;
  min-height: 40px;
  min-width: 144px;
  padding: 8px 42px 8px 14px;
}

.language-picker::after {
  border-bottom: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  content: "";
  height: 8px;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 8px;
}

.spoiler-toggle {
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 14px;
}

.spoiler-toggle[aria-pressed="true"] {
  background: var(--red);
  border-color: var(--red);
}

.hero {
  padding: clamp(22px, 5vw, 56px) clamp(16px, 4vw, 56px) 0;
}

.hero-grid {
  display: grid;
  gap: clamp(18px, 4vw, 42px);
  grid-template-columns: minmax(320px, 0.88fr) minmax(320px, 1.12fr);
}

.live-panel,
.watch-tool,
.checklist-panel,
.scam-tool,
.side-note,
.match-card,
.format-grid article,
.format-card,
.seo-card {
  background: rgba(255, 253, 246, 0.92);
  border: 1px solid rgba(16, 23, 19, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.live-panel {
  overflow: hidden;
  position: relative;
}

.live-panel::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 46px 46px,
    radial-gradient(circle at center, transparent 0 72px, rgba(255, 255, 255, 0.45) 73px 75px, transparent 76px),
    var(--grass);
  content: "";
  display: block;
  height: 176px;
}

.live-panel::after {
  border: 2px solid rgba(255, 255, 255, 0.7);
  content: "";
  height: 116px;
  left: 50%;
  position: absolute;
  top: 30px;
  transform: translateX(-50%);
  width: 116px;
}

.panel-header,
.matchup,
.countdown,
.mini-actions {
  position: relative;
  z-index: 2;
}

.panel-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
}

.status-pill,
.eyebrow {
  color: var(--grass-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-header .status-pill {
  background: var(--lime);
  border-radius: 999px;
  color: var(--ink);
  padding: 7px 10px;
}

.panel-header span:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.matchup {
  padding: 6px 20px 22px;
}

.team-line {
  align-items: center;
  border-bottom: 1px solid rgba(16, 23, 19, 0.1);
  display: flex;
  gap: 12px;
  padding: 13px 0;
}

.team-code {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--lime);
  display: inline-flex;
  flex: 0 0 42px;
  font-size: 13px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
}

.team-name {
  display: block;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.match-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  margin-top: 16px;
}

.countdown {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 20px;
}

.countdown div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 10px;
}

.countdown strong {
  color: var(--lime);
  display: block;
  font-size: clamp(22px, 4vw, 36px);
  line-height: 1;
}

.countdown span {
  color: rgba(255, 253, 246, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  padding: 18px 20px 20px;
}

.mini-actions a,
.mini-actions button,
.quick-tools a,
.utility-button {
  align-items: center;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  padding: 12px 14px;
  text-align: center;
}

.mini-actions button {
  width: 100%;
}

.mini-actions a {
  background: var(--lime);
}

.hero-copy {
  align-self: center;
  max-width: 820px;
}

.hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 92px);
  letter-spacing: 0;
  line-height: 0.92;
  margin: 12px 0 22px;
  max-width: 900px;
}

.hero-copy p {
  color: var(--ink-2);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 760px;
}

.quick-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.quick-tools a {
  background: transparent;
}

.quick-tools a:first-child {
  background: var(--ink);
  color: var(--white);
}

.tournament-strip {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(22px, 5vw, 48px);
}

.tournament-strip div {
  border-left: 1px solid rgba(255, 253, 246, 0.14);
  padding: 18px clamp(12px, 2vw, 24px);
}

.tournament-strip strong {
  color: var(--gold);
  display: block;
  font-size: clamp(26px, 5vw, 52px);
  line-height: 1;
}

.tournament-strip span {
  color: rgba(255, 253, 246, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(44px, 7vw, 86px) clamp(16px, 4vw, 56px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 0.7fr);
  margin-bottom: 26px;
}

.section-heading.compact {
  align-items: start;
  display: block;
}

.section-heading h2,
.side-note h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: 0;
  line-height: 1;
  margin: 6px 0 0;
}

.side-note h3 {
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading p,
.side-note p,
.format-grid p,
.seo-card p {
  color: var(--muted);
  margin: 0;
}

.tool-bar {
  align-items: end;
  background: var(--white);
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.8fr 0.7fr auto;
  padding: 14px;
}

label {
  display: grid;
  gap: 7px;
}

label span,
.country-picker span {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  background: #fffef9;
  border: 1px solid rgba(16, 23, 19, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(198, 255, 74, 0.95);
  outline-offset: 2px;
}

.utility-button.dark,
.utility-button:hover {
  background: var(--ink);
  color: var(--white);
}

.ad-slot {
  align-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(16, 23, 19, 0.06) 0 8px, transparent 8px 16px),
    rgba(255, 253, 246, 0.72);
  border: 1px dashed rgba(16, 23, 19, 0.22);
  border-radius: var(--radius);
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  margin: 18px 0;
  min-height: 74px;
  text-align: center;
}

.match-list {
  display: grid;
  gap: 12px;
}

.schedule-list-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.schedule-list-actions > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  margin-right: auto;
}

.schedule-list-actions .section-link {
  margin-top: 0;
}

.schedule-expand-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
}

.schedule-expand-button::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 7px;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
  width: 7px;
}

.schedule-expand-button[aria-expanded="true"]::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.schedule-expand-button:hover {
  background: var(--lime);
}

.schedule-expand-button[hidden] {
  display: none;
}

.match-card {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 130px 1fr 220px auto;
  padding: 16px;
}

.date-lockup strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.date-lockup span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.match-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.05;
}

.match-detail {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 750;
  gap: 8px 12px;
  margin-top: 8px;
}

.local-time {
  color: var(--grass-2);
  font-size: 19px;
  font-weight: 950;
  text-align: right;
}

.badge {
  background: rgba(15, 107, 61, 0.1);
  border-radius: 999px;
  color: var(--grass-2);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 9px;
  white-space: nowrap;
}

.split {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
}

.watch-tool,
.checklist-panel,
.scam-tool,
.side-note {
  padding: clamp(18px, 3vw, 30px);
}

.country-picker {
  margin: 22px 0;
}

.watch-results {
  display: grid;
  gap: 12px;
}

.watch-card {
  background: #fffef9;
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: var(--radius);
  padding: 16px;
}

.watch-card h3 {
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 8px;
}

.watch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.watch-meta span,
.risk-tag {
  background: rgba(16, 23, 19, 0.06);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 850;
  padding: 7px 9px;
}

.watch-card a {
  color: var(--grass-2);
  display: inline-flex;
  font-weight: 950;
  margin-top: 12px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.source-callout {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 16px;
}

.source-callout span {
  color: rgba(255, 253, 246, 0.76);
}

.pitch-note {
  background: var(--grass-2);
  color: var(--white);
}

.pitch-note .eyebrow,
.pitch-note p {
  color: rgba(255, 253, 246, 0.76);
}

.checklist {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.checklist li {
  align-items: start;
  background: #fffef9;
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr;
  padding: 14px;
}

.checklist input {
  accent-color: var(--grass);
  min-height: 20px;
  width: 20px;
}

.format-grid,
.seo-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.format-grid article,
.format-card,
.seo-card {
  box-shadow: none;
  min-height: 180px;
  padding: 18px;
}

.format-grid span,
.format-card span,
.seo-card span {
  color: var(--red);
  display: block;
  font-weight: 950;
  margin-bottom: 28px;
}

.format-grid h3,
.format-card h3,
.seo-card h3 {
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.format-card {
  display: flex;
  flex-direction: column;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.format-card p {
  flex: 1;
}

.format-card strong {
  color: var(--grass-2);
  font-size: 13px;
  margin-top: 20px;
}

.format-card:hover {
  background: var(--lime);
  border-color: var(--ink);
  transform: translateY(-3px);
}

.section-link {
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  margin-top: 20px;
  padding: 12px 15px;
  transition: transform 160ms ease;
}

.section-link:hover {
  transform: translateX(3px);
}

.split-wide-link {
  grid-column: 1 / -1;
  justify-self: start;
}

.scam-tool label {
  margin: 20px 0 12px;
}

.risk-box {
  background: #fffef9;
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: var(--radius);
  display: none;
  margin-top: 14px;
  padding: 16px;
}

.risk-box.visible {
  display: block;
}

.risk-box h3 {
  margin: 0 0 10px;
}

.risk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.plain-list {
  color: var(--muted);
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(16px, 4vw, 56px);
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer span {
  color: rgba(255, 253, 246, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: end;
}

.site-footer a {
  color: var(--lime);
  font-weight: 900;
}

.footer-cookie-button {
  background: transparent;
  border: 0;
  color: var(--lime);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0;
}

.cookie-panel {
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  bottom: 18px;
  box-shadow: var(--shadow);
  left: 18px;
  max-width: 620px;
  padding: 20px;
  position: fixed;
  right: 18px;
  z-index: 100;
}

.cookie-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  margin: 0 0 8px;
}

.cookie-panel p {
  color: var(--muted);
}

.cookie-preferences {
  display: flex;
  gap: 20px;
  margin: 16px 0;
}

.cookie-preferences[hidden] {
  display: none;
}

.cookie-preferences label {
  align-items: center;
  display: flex;
  gap: 8px;
}

.cookie-preferences input {
  accent-color: var(--grass);
  min-height: 20px;
  width: 20px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions button {
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 12px;
}

.cookie-actions .primary-cookie {
  background: var(--ink);
  color: var(--white);
}

.not-found-page {
  margin: 0 auto;
  max-width: 900px;
  min-height: 80vh;
  padding: clamp(60px, 10vw, 140px) 20px;
}

.not-found-page > span {
  color: var(--red);
  font-size: 18px;
  font-weight: 950;
}

.not-found-page h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 9vw, 110px);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 18px 0 26px;
}

.not-found-page p {
  color: var(--muted);
  font-size: 20px;
}

.legal-main {
  margin: 0 auto;
  max-width: 860px;
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 40px);
}

.legal-main h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 76px);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 10px 0 26px;
}

.legal-main h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  margin: 34px 0 10px;
}

.legal-main p {
  color: var(--ink-2);
  font-size: 18px;
}

.legal-main a {
  color: var(--grass-2);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legal-main .back-link {
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  display: inline-flex;
  margin-bottom: 34px;
  padding: 10px 14px;
  text-decoration: none;
  transition: transform 160ms ease;
}

.legal-main .back-link:hover {
  transform: translateX(-3px);
}

.legal-main section {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 2px;
}

.contact-form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  margin-top: 44px;
  padding-top: 32px;
}

.contact-form p {
  color: var(--muted);
  font-size: 14px;
}

.guide-hero {
  background: var(--ink);
  color: var(--white);
  padding: clamp(40px, 7vw, 92px) clamp(18px, 6vw, 80px) 0;
}

.guide-hero .back-link {
  color: var(--lime);
  display: inline-flex;
  font-weight: 900;
  margin-bottom: 48px;
}

.guide-hero .eyebrow {
  color: var(--gold);
}

.guide-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 12px 0 24px;
  max-width: 1080px;
}

.guide-hero > p:not(.eyebrow) {
  color: rgba(255, 253, 246, 0.75);
  font-size: clamp(18px, 2vw, 23px);
  max-width: 840px;
}

.guide-facts {
  border-top: 1px solid rgba(255, 253, 246, 0.18);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(34px, 6vw, 70px);
}

.guide-facts div {
  border-left: 1px solid rgba(255, 253, 246, 0.18);
  padding: 20px 16px;
}

.guide-facts strong {
  color: var(--lime);
  display: block;
  font-size: clamp(22px, 4vw, 44px);
  line-height: 1;
}

.guide-facts span {
  color: rgba(255, 253, 246, 0.67);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-sections {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(40px, 7vw, 90px) clamp(18px, 5vw, 48px);
}

.guide-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 90px minmax(0, 1fr);
  padding: clamp(34px, 6vw, 74px) 0;
  scroll-margin-top: 130px;
}

.guide-index {
  color: var(--red);
  font-size: 16px;
  font-weight: 950;
}

.guide-section h2,
.guide-faq h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0;
  line-height: 1;
  margin: 8px 0 20px;
}

.guide-body {
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 900px;
}

.guide-section ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 24px 0 0;
  max-width: 840px;
  padding: 0;
}

.guide-section li {
  background: var(--white);
  border-left: 4px solid var(--grass);
  padding: 13px 15px;
}

.guide-faq {
  background: var(--grass-2);
  color: var(--white);
  padding: clamp(44px, 7vw, 86px) clamp(18px, 6vw, 80px);
}

.guide-faq .eyebrow {
  color: var(--gold);
}

.guide-faq details {
  border-top: 1px solid rgba(255, 253, 246, 0.24);
  max-width: 980px;
  padding: 18px 0;
}

.guide-faq summary {
  cursor: pointer;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 900;
}

.guide-faq details p {
  color: rgba(255, 253, 246, 0.74);
  max-width: 840px;
}

.guide-faq .section-link {
  background: var(--lime);
  color: var(--ink);
}

.directory-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 50px 50px,
    var(--grass-2);
  color: var(--white);
  padding: clamp(44px, 7vw, 90px) clamp(18px, 6vw, 80px);
}

.directory-hero .back-link {
  color: var(--lime);
  display: inline-flex;
  font-weight: 900;
  margin-bottom: 44px;
}

.directory-hero .eyebrow {
  color: var(--gold);
}

.directory-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 98px);
  letter-spacing: 0;
  line-height: 0.92;
  margin: 10px 0 22px;
  max-width: 1100px;
}

.directory-hero > p:not(.eyebrow) {
  color: rgba(255, 253, 246, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 850px;
}

.directory-section {
  margin: 0 auto;
  max-width: 1320px;
  padding: clamp(40px, 7vw, 86px) clamp(16px, 4vw, 56px);
}

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

.directory-card {
  background: var(--white);
  border: 1px solid rgba(16, 23, 19, 0.14);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 20px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.directory-card:hover {
  background: var(--lime);
  border-color: var(--ink);
  transform: translateY(-3px);
}

article.directory-card:hover {
  background: var(--white);
  transform: none;
}

.directory-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.directory-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 40px);
  letter-spacing: 0;
  line-height: 1;
  margin: 22px 0 14px;
}

.directory-card h2 small {
  color: var(--muted);
  font-family: "Avenir Next", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.directory-card p {
  color: var(--muted);
  margin: 4px 0;
}

.directory-card strong,
.directory-card > a {
  color: var(--grass-2);
  font-weight: 950;
  margin-top: auto;
  padding-top: 18px;
}

.data-notice,
.empty-state,
.format-note {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  margin-bottom: 24px;
  padding: 20px;
}

.data-notice p,
.empty-state,
.format-note p {
  color: rgba(255, 253, 246, 0.72);
}

.data-notice a,
.empty-state a,
.format-note a {
  color: var(--lime);
  font-weight: 900;
}

.detail-layout {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 1fr);
}

.detail-sidebar {
  align-self: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  padding: 22px;
  position: sticky;
  top: 128px;
}

.detail-sidebar h2,
.directory-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1;
  margin: 8px 0 18px;
}

.detail-sidebar > a:not(.section-link) {
  border-top: 1px solid var(--line);
  color: var(--grass-2);
  font-weight: 900;
  padding: 10px 0;
}

.versus-board {
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 1fr;
  padding: clamp(22px, 5vw, 54px);
  text-align: center;
}

.versus-board a {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 5vw, 60px);
  line-height: 1;
}

.versus-board span {
  color: var(--gold);
  font-weight: 950;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.action-row .secondary {
  background: var(--white);
  border: 1px solid var(--ink);
  color: var(--ink);
}

.group-team-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
}

.group-team-row a {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  padding: 16px;
}

.group-team-row span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--lime);
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
}

.standings-table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
}

.standings-table {
  border-collapse: collapse;
  min-width: 560px;
  width: 100%;
}

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

.standings-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.standings-table td:first-child {
  color: var(--red);
  font-weight: 950;
}

.standings-table a {
  color: var(--grass-2);
  font-weight: 900;
}

.group-standings {
  margin: 24px 0 44px;
}

.standings-groups {
  display: grid;
  gap: 30px;
  min-width: 0;
}

.standings-group {
  background: rgba(255, 253, 246, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  padding: 18px;
}

.standings-group-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.standings-group-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  margin: 0 0 14px;
}

.standings-group-head a {
  color: var(--grass-2);
  font-weight: 900;
}

.standings-table input {
  min-height: 38px;
  padding: 6px 8px;
  width: 72px;
}

.search-page-input {
  margin-bottom: 24px;
}

.search-page-input input {
  font-size: 20px;
  min-height: 58px;
}

.predictor-panel {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.prediction-card {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  margin-top: 10px;
  padding: 28px;
  text-align: center;
}

.prediction-card h2 {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1;
  margin: 12px 0;
}

.daily-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.daily-switch a {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
  padding: 10px 14px;
}

.daily-switch a:hover {
  background: var(--lime);
}

.match-result {
  color: var(--red);
  display: block;
  font-size: 24px;
  font-weight: 950;
  margin: 8px 0;
}

.bracket-board {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(6, minmax(270px, 1fr));
  overflow-x: auto;
  padding-bottom: 24px;
}

.bracket-stage {
  min-width: 270px;
}

.bracket-stage > h2 {
  border-bottom: 3px solid var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 16px;
  padding-bottom: 10px;
}

.bracket-stage .directory-card {
  margin-bottom: 12px;
}

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

.source-ledger article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
}

.source-ledger h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin-top: 0;
}

.source-ledger a {
  color: var(--grass-2);
  font-weight: 900;
}

body.spoiler-free .score,
body.spoiler-free .result-word {
  background: var(--ink);
  border-radius: 4px;
  color: transparent;
  display: inline-block;
  min-width: 54px;
  user-select: none;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero-grid,
  .section-heading,
  .split,
  .split.reverse,
  .tool-bar {
    grid-template-columns: 1fr;
  }

  .format-grid,
  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .group-team-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .match-card {
    grid-template-columns: 100px 1fr;
  }

  .local-time {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .spoiler-toggle {
    padding: 9px 10px;
  }

  .header-actions,
  .language-picker {
    align-items: stretch;
    flex-direction: column;
  }

  .language-picker select,
  .spoiler-toggle {
    width: 100%;
  }

  .hero,
  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .mini-actions,
  .tournament-strip,
  .format-grid,
  .seo-grid,
  .countdown {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }

  .guide-section {
    grid-template-columns: 1fr;
  }

  .directory-grid,
  .group-team-row,
  .versus-board {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }

  .match-card {
    grid-template-columns: 1fr;
  }

  .schedule-list-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .schedule-list-actions > span {
    margin-right: 0;
  }

  .schedule-expand-button,
  .schedule-list-actions .section-link {
    justify-content: center;
    width: 100%;
  }

  .source-ledger {
    grid-template-columns: 1fr;
  }

  .date-lockup strong {
    font-size: 22px;
  }
}
