:root {
  --night: #07090d;
  --ink: #13171d;
  --ink-soft: #242a33;
  --paper: #fffaf0;
  --white: #ffffff;
  --muted: #68717d;
  --line: #e7dfd0;
  --gold: #f0b54a;
  --gold-soft: #fff0c7;
  --red: #c7362f;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 26px 70px rgb(12 16 22 / 14%);
  --glow: 0 0 0 1px rgb(240 181 74 / 28%), 0 24px 55px rgb(240 181 74 / 24%);
  --container: 1400px;
}

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

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  overflow-wrap: anywhere;
}

main {
  min-width: 0;
}

body::selection,
::selection {
  background: var(--gold);
  color: var(--night);
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #100f0d;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #100f0d;
  border-radius: 999px;
  background: linear-gradient(var(--gold), #f8dc87);
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  max-width: 100%;
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(255 255 255 / 13%);
  background: rgb(7 9 13 / 72%);
  color: #fff;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

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

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

.brand span {
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 10px 30px rgb(0 0 0 / 24%);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-weight: 900;
}

.brand small {
  color: rgb(255 255 255 / 66%);
  font-size: .78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav a {
  border-radius: 999px;
  padding: .56rem .82rem;
  color: rgb(255 255 255 / 72%);
  font-size: .92rem;
  font-weight: 800;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: rgb(255 255 255 / 10%);
  color: #fff;
}

.nav-toggle {
  display: none;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  background: rgb(255 255 255 / 8%);
  color: #fff;
  cursor: pointer;
}

.nav-toggle:hover {
  background: rgb(255 255 255 / 13%);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.header.is-menu-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.header.is-menu-open .nav-toggle-lines::before {
  transform: translateY(0) rotate(90deg);
}

.header.is-menu-open .nav-toggle-lines::after {
  opacity: 0;
  transform: translateY(-2px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero,
.page-hero,
.dark-band,
.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
  color: #fff;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: end;
  margin-top: -76px;
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.62) contrast(1.08) saturate(.95);
}

.hero::before,
.page-hero::before,
.dark-band::before,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(80% 70% at 74% 18%, rgb(240 181 74 / 18%), transparent 50%),
    radial-gradient(60% 80% at 8% 12%, rgb(255 255 255 / 8%), transparent 48%),
    linear-gradient(90deg, rgb(7 9 13 / 94%) 0%, rgb(7 9 13 / 68%) 45%, rgb(7 9 13 / 60%) 100%);
}

.hero::after,
.page-hero::after,
.dark-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .11;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-content {
  padding: 160px 0 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
h4,
.brand strong {
  font-family: 'Outfit', ui-sans-serif, system-ui, -apple-system, sans-serif;
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.65rem, 7vw, 6.7rem);
  font-weight: 950;
}

h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 4.15rem);
  font-weight: 920;
}

h3 {
  font-size: 1.28rem;
  font-weight: 900;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgb(255 255 255 / 78%);
  font-size: 1.18rem;
}

.hero p:not(.eyebrow) {
  margin-top: 24px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .82rem 1.25rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #17110a;
  box-shadow: var(--glow);
}

.button-secondary {
  border-color: rgb(255 255 255 / 28%);
  background: rgb(255 255 255 / 8%);
  color: #fff;
}

.section .button-secondary,
.seo-intro .button-secondary,
.band .button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.next-game,
.glass-card {
  border: 1px solid rgb(255 255 255 / 15%);
  border-top-color: rgb(255 255 255 / 30%);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgb(255 255 255 / 13%), rgb(255 255 255 / 5%));
  box-shadow: 0 30px 70px rgb(0 0 0 / 32%), inset 0 1px 0 rgb(255 255 255 / 12%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.next-game {
  width: 100%;
  max-width: 480px;
  margin-top: 36px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.next-game:hover {
  transform: translateY(-4px);
  box-shadow: 0 38px 90px rgb(0 0 0 / 40%), inset 0 1px 0 rgb(255 255 255 / 18%);
}

.next-game-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.live-dot {
  width: 7px;
  height: 7px;
  background-color: #38bdf8;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #38bdf8;
  animation: pulse-live 1.8s infinite;
}

@keyframes pulse-live {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(56, 189, 248, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

.next-game-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.next-game-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.next-game-flag {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgb(0 0 0 / 25%);
  border: 1px solid rgb(255 255 255 / 15%);
}

.next-game-name {
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
}

.next-game-vs {
  font-size: 0.72rem;
  font-weight: 950;
  color: var(--gold);
  border: 1px solid rgb(240 181 74 / 30%);
  background: rgb(240 181 74 / 8%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.next-game-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.next-game-info strong {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 800;
}

.next-game-info small {
  font-size: 0.82rem;
  color: rgb(255 255 255 / 72%);
}

.section,
.section-tight {
  padding: clamp(58px, 7vw, 108px) 0;
}

.section-tight {
  padding-block: clamp(48px, 5vw, 76px);
}

.band {
  background: #f4efe4;
  border-block: 1px solid var(--line);
}

.seo-intro {
  background:
    radial-gradient(70% 90% at 0% 0%, rgb(240 181 74 / 16%), transparent 42%),
    var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split > *,
.grid-2 > *,
.grid-3 > *,
.content-layout > *,
.footer-grid > *,
.article-shell,
.prose,
.card,
.card-body,
.sidebar-stack,
.source-list,
.form {
  min-width: 0;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 22px;
}

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

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.lead + .lead,
.lead + p,
p + .button-row {
  margin-top: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(19 23 29 / 8%);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgb(19 23 29 / 7%);
}

.card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, #111, var(--red), var(--gold));
  opacity: 0;
  transition: opacity 180ms ease;
}

a.card,
.visual-card {
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

a.card:hover,
.visual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

a.card:hover::after,
.visual-card:hover::after {
  opacity: 1;
}

.card-body {
  padding: clamp(18px, 2vw, 28px);
}

.card-icon {
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.card p,
.prose p,
.prose li {
  color: var(--muted);
}

.card-media,
.image-frame img,
.split > img.card {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--night);
  box-shadow: var(--shadow);
}

.top-location-card {
  min-height: 100%;
}

.status-badge,
.pill,
.tier {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: .36rem .66rem;
  font-size: .78rem;
  font-weight: 900;
}

.status-badge {
  margin-bottom: 14px;
  background: var(--gold-soft);
  color: #5f3b00;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.pill {
  border: 1px solid rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 9%);
  color: rgb(255 255 255 / 82%);
}

.tier {
  margin-bottom: 12px;
  background: var(--ink);
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tier.featured {
  background: var(--gold);
  color: #201307;
}

.site-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  padding: .52rem .78rem;
  color: rgb(255 255 255 / 78%);
  background: rgb(255 255 255 / 8%);
  font-weight: 800;
}

.site-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.page-hero {
  padding-top: 76px;
}

.page-hero::before {
  background:
    radial-gradient(90% 70% at 20% 0%, rgb(240 181 74 / 17%), transparent 50%),
    linear-gradient(90deg, rgb(7 9 13 / 92%), rgb(7 9 13 / 70%));
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

.page-hero p:not(.eyebrow) {
  margin-top: 18px;
}

.prose {
  max-width: 820px;
}

.prose h2,
.prose h3 {
  margin-top: 2rem;
}

.prose p,
.prose ul {
  margin-top: .9rem;
}

.prose a {
  color: #6b3f00;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
}

.article-shell {
  max-width: 920px;
}

.status-box {
  margin-bottom: 28px;
  border: 1px solid rgb(199 54 47 / 18%);
  border-left: 6px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  background: #fff7ea;
  color: #392412;
  box-shadow: 0 12px 34px rgb(19 23 29 / 6%);
}

.status-box strong {
  display: inline;
  margin-right: 4px;
  color: #7b1f1b;
}

.sidebar-stack {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  color: #3f2700;
  font-weight: 900;
}

.link-list a::after {
  content: ">";
  flex: 0 0 auto;
  color: var(--red);
}

.link-pill {
  border-color: rgb(19 23 29 / 12%);
  background: #fff;
  color: #4b2e00;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.link-pill:hover {
  background: var(--gold-soft);
  border-color: rgb(240 181 74 / 40%);
  transform: translateY(-2px);
}

.source-list {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.source-list ul {
  padding-left: 1.2rem;
}

.source-list a,
.prose a,
.card a,
.status-box,
.team-pill,
.ko-card strong,
.ko-card span {
  overflow-wrap: anywhere;
}

.info-table-wrap {
  margin: 1.2rem 0 1.8rem;
}

.info-table a {
  color: #4c2c00;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.faq-section h3 {
  font-size: 1.18rem;
}

/* FAQ Accordion Styling */
.faq-accordion {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-item[open] {
  border-color: var(--gold);
  border-left-width: 4px;
  box-shadow: 0 10px 30px rgb(19 23 29 / 5%);
}

.faq-item[open] .faq-question {
  background: rgb(240 181 74 / 5%);
}

.faq-question {
  list-style: none;
  padding: 16px 20px;
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: background 0.18s ease;
}

.faq-question:hover {
  background: rgb(240 181 74 / 6%);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2313171d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 0.96rem;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0 !important;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(18px, 3vw, 34px);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .86rem .95rem;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.bracket-preview {
  display: grid;
  overflow: hidden;
}

.bracket-preview div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.bracket-preview div:last-child {
  border-bottom: 0;
  background: var(--ink);
  color: #fff;
}

.schedule-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.schedule-legend {
  gap: 8px;
}

.legend-label {
  align-self: center;
  margin-right: 4px;
  color: rgb(255 255 255 / 72%);
  font-size: .78rem;
  font-weight: 900;
}

.schedule-nav a {
  max-width: 100%;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  padding: .45rem .72rem;
  color: #fff;
  background: rgb(255 255 255 / 8%);
  font-weight: 800;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgb(16 24 32 / 6%);
}

.schedule-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: #fff;
}

.schedule-table th,
.schedule-table td {
  padding: .75rem .85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.schedule-table tbody tr {
  transition: background 0.15s ease;
}

.schedule-table tbody tr:hover {
  background: #fffbf2;
}

.schedule-table td {
  color: var(--ink);
}

.schedule-table td a {
  color: #4c2c00;
}

.match-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
  text-decoration-color: rgba(76, 44, 0, 0.3);
  text-underline-offset: 3px;
  font-weight: 800;
}

.match-link:hover {
  text-decoration-color: #4c2c00;
}

.match-team-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.match-team-wrap .flag-icon {
  margin: 0;
  vertical-align: middle;
}

.match-vs {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.82rem;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 158px), 1fr));
  gap: 12px;
  margin-top: 8px;
}

.district-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.district-tile:hover,
.district-tile:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 10px 26px rgb(16 24 32 / 12%);
}

.district-tile-name {
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.district-tile-meta {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.25;
}

.spot-list {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}

.spot-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgb(16 24 32 / 8%);
}

.spot-card-head h3 {
  margin: 10px 0 4px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.spot-card-area {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.spot-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 8px 32px;
  margin: 14px 0;
}

.spot-card-grid h4 {
  margin: 0 0 8px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}

.spot-card-grid ul {
  margin: 0;
  padding-left: 18px;
}

.spot-card-grid li {
  margin-bottom: 4px;
  line-height: 1.4;
}

.spot-card-note {
  margin: 8px 0 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff8e8;
  font-weight: 700;
  font-size: .92rem;
}

.schedule-table th {
  background: var(--ink);
  color: #fff;
  font-size: .84rem;
  text-transform: uppercase;
}

.bracket-scroll {
  overflow-x: auto;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgb(5 12 8 / 24%);
}

.visual-bracket {
  position: relative;
  min-width: 980px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgb(240 181 74 / 38%);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgb(6 14 10 / 8%), rgb(6 14 10 / 16%)),
    url("/assets/visuals/turnierbaum-bg.webp") center / cover no-repeat;
}

.visual-bracket::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 22%, rgb(5 10 8 / 10%) 40%, rgb(5 10 8 / 26%) 100%),
    linear-gradient(90deg, rgb(0 0 0 / 12%), transparent 28%, transparent 72%, rgb(0 0 0 / 12%));
}

.bracket-title,
.bracket-slot,
.bracket-final-label {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #1b1308;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.bracket-title {
  top: 4.5%;
  color: var(--gold);
  font-size: clamp(.7rem, 1.05vw, .95rem);
  text-shadow: 0 2px 12px rgb(0 0 0 / 60%);
}

.bracket-title-left { left: 3.5%; width: 14%; }
.bracket-title-mid-left { left: 22.5%; width: 11%; }
.bracket-title-center { left: 43%; width: 14%; }
.bracket-title-mid-right { right: 22.5%; width: 11%; }
.bracket-title-right { right: 3.5%; width: 14%; }

.bracket-slot {
  width: 12.7%;
  height: 5.7%;
  border-radius: 7px;
  background: rgb(255 248 226 / 92%);
  box-shadow: inset 0 0 0 1px rgb(40 25 8 / 20%);
  font-size: .78rem;
}

.slot-l1 { left: 3.5%; top: 11.6%; }
.slot-l2 { left: 3.5%; top: 20.2%; }
.slot-l3 { left: 3.5%; top: 29.0%; }
.slot-l4 { left: 3.5%; top: 37.8%; }
.slot-l5 { left: 3.5%; top: 56.6%; }
.slot-l6 { left: 3.5%; top: 66.4%; }
.slot-l7 { left: 3.5%; top: 76.4%; }
.slot-l8 { left: 3.5%; top: 86.0%; }

.slot-r1 { right: 3.5%; top: 11.6%; }
.slot-r2 { right: 3.5%; top: 20.2%; }
.slot-r3 { right: 3.5%; top: 29.0%; }
.slot-r4 { right: 3.5%; top: 37.8%; }
.slot-r5 { right: 3.5%; top: 56.6%; }
.slot-r6 { right: 3.5%; top: 66.4%; }
.slot-r7 { right: 3.5%; top: 76.4%; }
.slot-r8 { right: 3.5%; top: 86.0%; }

.slot-q1,
.slot-q2,
.slot-q3,
.slot-q4,
.slot-q5,
.slot-q6,
.slot-q7,
.slot-q8 {
  width: 9.2%;
}

.slot-q1 { left: 23.1%; top: 18.4%; }
.slot-q2 { left: 23.1%; top: 36.4%; }
.slot-q3 { left: 23.1%; top: 66.0%; }
.slot-q4 { left: 23.1%; top: 84.0%; }
.slot-q5 { right: 23.1%; top: 18.4%; }
.slot-q6 { right: 23.1%; top: 36.4%; }
.slot-q7 { right: 23.1%; top: 66.0%; }
.slot-q8 { right: 23.1%; top: 84.0%; }

.bracket-final-label {
  left: 42.4%;
  top: 50.3%;
  width: 15.2%;
  height: 6.8%;
  border-radius: 8px;
  background: rgb(255 248 226 / 94%);
  line-height: 1.05;
  box-shadow: 0 0 28px rgb(240 181 74 / 34%);
}

.bracket-final-label small {
  margin-top: 2px;
  font-size: .58rem;
  letter-spacing: 0;
  text-transform: none;
}

.bracket-grid {
  display: grid;
  gap: 28px;
}

.knockout-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.bracket-matches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.match-card {
  border: 1px solid rgb(240 181 74 / 40%);
  border-radius: var(--radius-sm);
  background: var(--gold);
  padding: 14px;
}

.match-card small {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.match-card strong {
  display: block;
  color: var(--night);
}

.match-card p {
  margin-top: 7px;
  color: rgb(10 13 18 / 76%);
  font-size: .9rem;
}

.tournament-section {
  background: #07100c;
  color: #fff;
}

.tournament-section .section-head p {
  color: rgba(255, 255, 255, 0.74);
}

.tournament-scroll {
  overflow-x: auto;
  border-radius: 26px;
  border: 1px solid rgba(240, 181, 74, 0.26);
  box-shadow: 0 30px 80px rgba(2, 8, 5, 0.34);
  scrollbar-color: rgba(240, 181, 74, 0.7) rgba(255, 255, 255, 0.08);
}

.tournament-poster {
  position: relative;
  min-width: 2200px;
  min-height: 1240px;
  padding: 34px;
  display: grid;
  grid-template-columns: 330px 1fr 330px;
  grid-template-rows: auto 1fr;
  gap: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 16, 12, 0.82), rgba(7, 16, 12, 0.52) 26%, rgba(7, 16, 12, 0.28) 50%, rgba(7, 16, 12, 0.52) 74%, rgba(7, 16, 12, 0.82)),
    linear-gradient(180deg, rgba(7, 16, 12, 0.58), rgba(7, 16, 12, 0.12) 42%, rgba(7, 16, 12, 0.72)),
    url("/assets/visuals/turnierbaum-full-bg.webp") center / cover no-repeat;
}

.poster-title {
  grid-column: 1 / -1;
  text-align: center;
  display: grid;
  gap: 4px;
}

.poster-title span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.poster-title h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 4.2rem);
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
}

.poster-title p {
  max-width: 760px;
  margin: 6px auto 0;
  color: rgba(255, 255, 255, 0.76);
}

.poster-groups {
  display: grid;
  gap: 10px;
  align-content: start;
}

.poster-group {
  padding: 7px;
  border: 1px solid rgba(240, 181, 74, 0.24);
  border-radius: 15px;
  background: rgba(5, 12, 8, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.poster-group h4,
.ko-round h4 {
  margin: 0 0 5px;
  color: #f9efd4;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.poster-group h4 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.poster-group h4 span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.group-games {
  display: grid;
  gap: 3px;
}

.group-game {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 16px minmax(0, 1fr);
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.game-time {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.54rem;
  font-weight: 850;
  white-space: nowrap;
}

.team-pill {
  min-width: 0;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255, 248, 226, 0.9);
  color: #151007;
  font-size: 0.58rem;
  font-weight: 920;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flag-icon {
  display: inline-block;
  width: 24px;
  height: 18px;
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 10%);
  object-fit: cover;
}

.team-pill .flag-icon {
  width: 16px;
  height: 12px;
  margin-right: 3px;
  vertical-align: baseline;
}

.card-body .flag-icon {
  margin-right: 4px;
  vertical-align: text-bottom;
}

.eyebrow .flag-icon {
  width: 20px;
  height: 15px;
  margin-right: 4px;
}

.versus {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 950;
  text-align: center;
}

.poster-knockout {
  min-height: 1060px;
  display: grid;
  grid-template-columns: 1fr 250px 1fr;
  gap: 18px;
  align-items: center;
}

.ko-side {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.86fr 0.74fr;
  gap: 12px;
  align-items: center;
}

.ko-side-right {
  direction: rtl;
}

.ko-side-right * {
  direction: ltr;
}

.ko-round {
  display: grid;
  gap: 8px;
  align-content: center;
}

.ko-round h4 {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
}

.ko-card {
  min-height: 50px;
  padding: 7px 8px;
  border: 1px solid rgba(240, 181, 74, 0.16);
  border-radius: 11px;
  background: rgba(255, 248, 226, 0.92);
  color: #141007;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.ko-card small {
  display: block;
  margin-bottom: 3px;
  color: rgba(72, 54, 21, 0.78);
  font-size: 0.58rem;
  font-weight: 900;
  white-space: nowrap;
}

.ko-card strong,
.ko-card span {
  display: block;
  min-width: 0;
  color: #151007;
  font-size: 0.66rem;
  font-weight: 950;
  line-height: 1.22;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ko-card span {
  color: rgba(21, 16, 7, 0.74);
}

.ko-center-stage {
  display: grid;
  gap: 16px;
  justify-items: center;
  align-content: center;
}

.center-mark {
  width: 172px;
  height: 172px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  border: 1px solid rgba(240, 181, 74, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(240, 181, 74, 0.95), rgba(75, 53, 18, 0.92));
  box-shadow: 0 0 52px rgba(240, 181, 74, 0.24);
  color: #160f04;
  font-size: 3.3rem;
  font-weight: 950;
}

.center-mark img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.center-mark span {
  color: #160f04;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ko-final,
.ko-third {
  width: 100%;
  padding: 15px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.ko-final {
  background: linear-gradient(135deg, #f0b54a, #fff3ca);
  color: #141007;
}

.ko-third {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 13, 10, 0.72);
  color: #fff;
}

.ko-final small,
.ko-third small {
  display: block;
  margin-bottom: 7px;
  font-weight: 950;
  text-transform: uppercase;
}

.ko-final strong,
.ko-third strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 950;
}

.ko-third small,
.ko-third strong,
.ko-third span {
  color: #fff;
}

.spot-banner {
  position: fixed;
  z-index: 65;
  top: 50%;
  right: clamp(12px, 1.8vw, 26px);
  width: min(282px, calc(100vw - 28px));
  transform: translateY(-50%);
}

.spot-banner a {
  display: block;
  border: 1px solid rgb(240 181 74 / 34%);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgb(7 9 13 / 88%);
  color: #fff;
  box-shadow: 0 18px 48px rgb(0 0 0 / 22%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.spot-banner span {
  display: block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .02em;
}

.spot-banner strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: .96rem;
  line-height: 1.22;
}

.affiliate-section {
  padding: 44px 0;
  background: var(--paper);
}

.affiliate-section--leaderboard {
  padding-bottom: 18px;
}

.affiliate-section--medium {
  padding-top: 26px;
}

.affiliate-banner {
  display: grid;
  max-width: 100%;
  margin-inline: auto;
  gap: 8px;
  justify-items: center;
}

.affiliate-label {
  color: rgb(19 23 29 / 56%);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.affiliate-frame {
  display: grid;
  max-width: 100%;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgb(19 23 29 / 10%);
  border-radius: 8px;
  background: rgb(255 255 255 / 52%);
  box-shadow: 0 14px 40px rgb(0 0 0 / 8%);
}

.affiliate-link {
  display: block;
  width: 100%;
}

.affiliate-image {
  display: block;
  width: 100%;
  height: auto;
}

.affiliate-banner--leaderboard {
  width: 100%;
}

.affiliate-banner--leaderboard .affiliate-frame {
  width: min(960px, 100%);
}

.affiliate-banner--medium .affiliate-frame,
.affiliate-banner--skyscraper .affiliate-frame {
  width: min(340px, 100%);
}

.sidebar-stack .affiliate-banner {
  width: 100%;
  margin: 0;
}

.sidebar-stack .affiliate-frame {
  width: min(340px, 100%);
}

.footer {
  padding: 56px 0 24px;
}

.footer::before {
  background:
    radial-gradient(70% 70% at 0% 0%, rgb(240 181 74 / 13%), transparent 50%),
    radial-gradient(70% 70% at 100% 0%, rgb(255 255 255 / 7%), transparent 52%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 28px;
}

.footer p {
  color: rgb(255 255 255 / 70%);
}

.footer nav {
  display: grid;
  gap: 8px;
}

.footer nav a {
  color: rgb(255 255 255 / 76%);
  font-weight: 800;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 60%);
  font-size: .88rem;
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .section-head,
    .card,
    .image-frame,
    .prose h2,
    .prose h3 {
      animation: reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 36%;
    }

    @keyframes reveal {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: none;
      }
    }
  }
}

@media (min-width: 960px) {
  .hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    padding-top: 190px;
    padding-bottom: 100px;
  }
  .next-game {
    margin-top: 0;
    justify-self: end;
  }
}

@media (max-width: 1024px) {
  body {
    padding-bottom: 88px;
  }

  .spot-banner {
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    transform: none;
  }
}

@media (max-width: 960px) {
  .split,
  .grid-2,
  .grid-3,
  .content-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-stack {
    position: static;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .info-table-wrap {
    overflow: visible;
    box-shadow: none;
  }

  .info-table {
    display: block;
    min-width: 0;
    border: 0;
    background: transparent;
  }

  .info-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .info-table tbody,
  .info-table tr,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table tr {
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgb(16 24 32 / 7%);
  }

  .info-table tr:last-child {
    margin-bottom: 0;
  }

  .info-table td {
    display: grid;
    grid-template-columns: minmax(86px, 30%) minmax(0, 1fr);
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding: .72rem .85rem;
  }

  .info-table td::before {
    content: attr(data-label);
    color: rgb(19 23 29 / 58%);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .info-table td:first-child {
    grid-template-columns: 1fr;
    background: #fff8e8;
    font-size: 1.02rem;
  }

  .info-table td:last-child {
    border-bottom: 0;
  }

  .info-table td[data-label="Hinweis"] {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 64px;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 10px;
  }

  .brand {
    flex: 1 1 calc(100% - 58px);
  }

  .brand strong {
    font-size: .94rem;
  }

  .brand small {
    font-size: .72rem;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .nav {
    display: none;
    flex-basis: 100%;
    width: 100%;
    padding: 8px 0 4px;
  }

  .header.is-menu-open .nav,
  .nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav a {
    border-radius: 10px;
    padding: .78rem .85rem;
    background: rgb(255 255 255 / 7%);
  }

  .hero {
    min-height: min-content;
    padding-bottom: 16px;
    margin-top: 0;
  }

  .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 100px;
    padding-bottom: 52px;
  }

  .next-game {
    max-width: 100%;
    margin-top: 0;
  }

  .grid-3,
  .form-grid,
  .knockout-summary {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .button-row .button {
    width: 100%;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .eyebrow {
    max-width: 100%;
    gap: .5rem;
  }

  .eyebrow::before {
    width: 22px;
    flex: 0 0 auto;
  }

  .page-hero h1,
  h1 {
    font-size: clamp(2rem, 14vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
  }

  .page-hero p:not(.eyebrow),
  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .bracket-scroll,
  .tournament-scroll,
  .table-scroll {
    border-radius: 14px;
    margin-inline: -4px;
  }

  .spot-banner a {
    padding: 12px 14px;
  }

  .spot-banner strong {
    font-size: .9rem;
  }

  .affiliate-section {
    padding: 36px 0;
  }

}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--night);
  color: #fff;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.cookie-banner-inner p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cookie-banner-actions .button {
  min-height: 44px;
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .cookie-banner-inner p {
    max-width: 70%;
  }
}
