:root {
  --ink: #11100f;
  --ink-soft: #1b1917;
  --paper: #f3e7c9;
  --paper-2: #fff9ea;
  --orange: #f15a00;
  --orange-bright: #ff6a00;
  --steel: #9b978b;
  --muted: #bbb3a3;
  --line: rgba(243, 231, 201, 0.17);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% -10%, rgba(241, 90, 0, 0.23), transparent 31rem),
    linear-gradient(180deg, #141210 0%, #0d0c0b 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 16, 15, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 36px));
  min-height: 78px;
  margin: 0 auto;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.brand img {
  width: 74px;
  height: auto;
  object-fit: contain;
}

.brand span {
  max-width: 105px;
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  gap: 2px;
}

.nav-links a {
  position: relative;
  flex: 0 0 auto;
  padding: 10px 9px;
  color: #d8ceba;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper-2);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 4px;
  left: 11px;
  height: 3px;
  background: var(--orange);
  transform: skewX(-24deg);
}

.nav-cta {
  padding: 11px 16px !important;
  color: var(--ink) !important;
  background: var(--orange);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.nav-cta::after {
  display: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 2px;
  margin-left: 6px;
  padding-left: 8px;
  border-left: 1px solid var(--line);
}

.language-switcher a {
  min-width: 32px;
  padding: 8px 6px;
  text-align: center;
  font-size: 11px;
}

.language-switcher a[aria-current="true"] {
  color: var(--ink);
  background: var(--paper);
}

.language-switcher a[aria-current="true"]::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

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

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 52px 0;
}

.section-paper {
  color: var(--ink);
  background: var(--paper);
}

.section-orange {
  color: var(--ink);
  background: var(--orange);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--orange-bright);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 5px;
  background: currentColor;
  transform: skewX(-28deg);
}

.section-paper .eyebrow,
.section-orange .eyebrow {
  color: var(--ink);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.display {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: .015em;
  line-height: .95;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 10vw, 8.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
}

.accent {
  color: var(--orange-bright);
}

.lede {
  max-width: 700px;
  color: #c9c0ae;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.section-paper .lede {
  color: #3a342d;
}

.section-orange .lede {
  color: var(--ink);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 22px;
  border: 2px solid var(--orange);
  color: var(--ink);
  background: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform .18s ease, filter .18s ease;
}

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

.button-secondary {
  color: var(--paper);
  background: transparent;
}

.section-paper .button-secondary,
.section-orange .button-secondary {
  color: var(--ink);
  border-color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8vw -20vw auto;
  z-index: -1;
  width: min(72vw, 850px);
  aspect-ratio: 1;
  border: clamp(30px, 6vw, 86px) solid rgba(241, 90, 0, .1);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  align-items: center;
  min-height: calc(100svh - 78px);
  gap: 56px;
  padding: 64px 0 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.hero-logo-wrap::before,
.hero-logo-wrap::after {
  content: "";
  position: absolute;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(243, 231, 201, .18);
  transform: rotate(12deg) skew(-6deg);
}

.hero-logo-wrap::after {
  width: 58%;
  height: 58%;
  border-color: rgba(241, 90, 0, .7);
  transform: rotate(-9deg) skew(5deg);
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(580px, 100%);
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  filter: drop-shadow(0 34px 35px rgba(0,0,0,.4));
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(17, 16, 15, .18);
  color: var(--ink);
  background: var(--orange);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 15px 0;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  padding-right: 36px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ticker-track span::after {
  content: "✦";
  padding-left: 36px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-live {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(145, 70, 255, .18), transparent 26rem),
    linear-gradient(135deg, #171311 0%, #0d0c0b 68%);
}

.section-live::after {
  content: "LIVE";
  position: absolute;
  right: -1rem;
  bottom: -3rem;
  z-index: 0;
  color: rgba(243, 231, 201, .035);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: min(24vw, 18rem);
  line-height: .8;
  pointer-events: none;
}

.live-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(400px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.stream-channel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--orange-bright);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stream-channel::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9146ff;
  box-shadow: 0 0 0 6px rgba(145, 70, 255, .16);
}

.live-copy h2 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.live-copy .lede {
  margin-top: 20px;
}

.twitch-shell {
  position: relative;
  min-width: 400px;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(145, 70, 255, .55);
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.twitch-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.twitch-gate {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(100deg, rgba(10, 8, 11, .98), rgba(28, 17, 34, .9)),
    radial-gradient(circle at 90% 15%, rgba(145, 70, 255, .35), transparent 42%);
}

.twitch-gate[hidden] {
  display: none;
}

.twitch-gate h3 {
  margin: 14px 0 8px;
  color: var(--paper);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.twitch-gate p {
  max-width: 34rem;
  margin: 0 0 22px;
  color: var(--muted);
}

.twitch-mobile-fallback {
  display: none;
  padding: 30px;
  border: 1px solid rgba(145, 70, 255, .55);
  background: #18131f;
  box-shadow: var(--shadow);
}

.twitch-mobile-fallback p {
  color: var(--muted);
}

.twitch-shell.is-unavailable {
  display: none;
}

.twitch-mobile-fallback.is-visible {
  display: block;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px;
}

.feature-card,
.news-card,
.panel,
.result-card,
.partner-card {
  border: 1px solid var(--line);
  color: var(--paper);
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(.88) contrast(1.05);
}

.feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 5vw, 52px);
  background: linear-gradient(180deg, transparent 20%, rgba(10,9,8,.94) 92%);
}

.feature-overlay h2 {
  max-width: 720px;
  margin-bottom: 10px;
}

.stats-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #171411;
}

.stat-number {
  color: var(--orange);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: .9;
}

.stat-label {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

.news-card {
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}

.news-card:hover {
  border-color: rgba(241,90,0,.72);
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-card .logo-image {
  padding: 38px;
  object-fit: contain;
  background: #181514;
}

.news-body {
  padding: 24px;
}

.news-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-bright);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.news-body p,
.panel p,
.partner-card p,
.result-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--orange-bright);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform .15s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.section-paper .agenda-card .text-link,
.section-paper .event-link-card .text-link,
.section-paper .guide-card .text-link,
.section-paper .info-card .text-link {
  color: #8f3600;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 82px;
}

.page-hero::after {
  content: attr(data-ghost);
  position: absolute;
  right: -1vw;
  bottom: -2.5rem;
  z-index: -1;
  color: rgba(243, 231, 201, .035);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: min(25vw, 19rem);
  line-height: .78;
  white-space: nowrap;
}

.page-hero h1 {
  max-width: 1050px;
  font-size: clamp(4.2rem, 11vw, 9rem);
}

.event-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: stretch;
  gap: 22px;
}

.event-banner {
  min-height: 470px;
  width: 100%;
  object-fit: cover;
  background: #000;
}

.event-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  color: var(--ink);
  background: var(--orange);
}

.event-copy p {
  max-width: 560px;
}

.comeback-feature {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--paper);
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.comeback-poster-wrap {
  display: grid;
  min-width: 0;
  place-items: center;
  background: #090707;
}

.comeback-poster {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #090707;
}

.comeback-copy {
  min-width: 0;
  padding: clamp(30px, 5vw, 64px);
}

.event-status {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.comeback-copy h2 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
}

.comeback-copy .lede {
  max-width: 680px;
  margin-top: 18px;
}

.section-paper .comeback-copy .lede {
  color: #d8cfbd;
}

.section-paper .comeback-feature .button-secondary {
  color: var(--paper);
  border-color: var(--orange);
}

.section-paper .comeback-feature .button-secondary:hover {
  color: var(--ink);
  background: var(--orange);
}

.comeback-meta {
  display: grid;
  grid-template-columns: .8fr .8fr 1.4fr 1fr;
  gap: 1px;
  margin: 28px 0;
  background: rgba(243, 231, 201, .18);
}

.comeback-meta > div {
  min-width: 0;
  padding: 16px;
  background: #13110f;
}

.comeback-meta strong,
.comeback-meta span {
  display: block;
}

.comeback-meta strong {
  font-size: clamp(.95rem, 1.7vw, 1.22rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.comeback-meta span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.confirmed-title {
  margin: 30px 0 16px;
  font-size: 1.65rem;
}

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

.mini-game {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  padding: 9px;
  border: 1px solid var(--line);
  color: var(--paper-2);
  background: #12100f;
}

.mini-game img {
  width: 42px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
  background: #000;
}

.mini-game span {
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.niche-callout {
  margin-top: 22px;
  padding: 16px;
  border-left: 5px solid var(--orange);
  color: #d8cfbd;
  background: rgba(255, 255, 255, .035);
}

.social-announcements {
  margin-top: 20px;
}

.social-announcements .button {
  padding: 11px 16px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  background: rgba(17,16,15,.24);
}

.fact {
  min-width: 0;
  padding: 18px;
  background: rgba(241,90,0,.97);
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  font-size: 22px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.fact span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

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

.game-tile {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #171513;
}

.game-tile img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform .35s ease;
}

.game-tile:hover img {
  transform: scale(1.045);
}

.game-tile span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 16px 14px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.panel {
  padding: clamp(24px, 4vw, 42px);
}

.panel-orange {
  color: var(--ink);
  background: var(--orange);
}

.panel-orange p {
  color: var(--ink);
}

.filters {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 32px;
}

.field {
  display: grid;
  min-width: 220px;
  gap: 7px;
}

.field label {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.field select,
.field input {
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid rgba(17,16,15,.3);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper-2);
}

.source-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 850;
}

.source-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3aa96a;
  box-shadow: 0 0 0 5px rgba(58,169,106,.14);
}

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

.result-card {
  overflow: hidden;
}

.result-game-media {
  position: relative;
  width: 100%;
  aspect-ratio: 616 / 353;
  overflow: hidden;
  background: #080807;
}

.result-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-game-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(58%, 280px);
  max-height: 54%;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.62));
  transform: translate(-50%, -50%);
}

.result-body {
  padding: 22px;
}

.result-body h2 {
  min-height: 2em;
  margin-bottom: 6px;
  font-size: 2rem;
}

.standings-count,
.result-summary {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.standings-count {
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.result-summary {
  min-height: 1.5em;
  margin-top: 18px;
}

.section-paper .result-summary {
  color: #62594c;
}

.podium-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1px;
  list-style: none;
  background: var(--line);
}

.podium-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  min-height: 48px;
  padding: 8px 12px;
  color: var(--paper);
  background: #151311;
}

.podium-list li.standing-match {
  border-left: 3px solid var(--orange-bright);
  background: #211b16;
}

.podium-place {
  color: var(--orange-bright);
  font-weight: 950;
}

.podium-player {
  overflow-wrap: anywhere;
  font-weight: 780;
}

.standings-toggle {
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}

.standings-toggle:hover,
.standings-toggle:focus-visible {
  border-color: var(--orange-bright);
  color: var(--orange-bright);
}

.result-body .text-link {
  display: inline-block;
  margin-top: 16px;
}

.empty-state {
  padding: clamp(36px, 7vw, 80px);
  border: 1px solid var(--line);
  text-align: center;
  background: rgba(255,255,255,.025);
}

.empty-state strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.ranking-shell {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.ranking-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

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

.ranking-table th {
  color: var(--orange-bright);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ranking-empty-row td {
  padding: 34px 18px;
  color: var(--muted);
  text-align: center;
}

.collective-intro {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 48px;
}

.collective-intro img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

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

.value-card {
  padding: 28px;
  border-top: 7px solid var(--orange);
  color: var(--ink);
  background: var(--paper-2);
}

.value-card h3 {
  font-size: 1.75rem;
}

.oni-feature {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) 1.28fr;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: #171313;
}

.oni-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 40px;
  background: #201b1b;
}

.oni-logo-wrap img {
  width: min(420px, 100%);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.oni-copy {
  padding: clamp(30px, 6vw, 78px);
}

.oni-copy .eyebrow {
  color: var(--orange-bright);
}

.oni-copy .lede {
  color: var(--muted);
}

.role-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.role-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.role-list li::before {
  content: "◆";
  color: var(--orange-bright);
  font-size: 12px;
  transform: translateY(5px);
}

.gallery-grid {
  columns: 4 240px;
  column-gap: 12px;
}

.gallery-button {
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  break-inside: avoid;
}

.gallery-button img {
  width: 100%;
  border: 1px solid var(--line);
  filter: saturate(.86) contrast(1.04);
  transition: filter .2s ease, transform .2s ease;
}

.gallery-button:hover img {
  filter: saturate(1.07) contrast(1.08);
  transform: translateY(-2px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(5,5,4,.94);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1300px, 92vw);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  color: var(--paper);
  background: #171513;
  font-size: 28px;
  cursor: pointer;
}

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

.partner-card {
  padding: 28px;
}

.partner-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: #1d1918;
}

.partner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  color: var(--paper);
  background: var(--ink-soft);
}

.contact-card-orange {
  color: var(--ink);
  background: var(--orange);
}

.contact-card-orange .eyebrow {
  color: var(--ink);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(380px, 1.22fr);
  align-items: start;
  gap: clamp(28px, 6vw, 90px);
}

.contact-form-layout .lede a {
  color: var(--orange);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(17, 16, 15, .28);
  background: #fff8e8;
  box-shadow: 12px 12px 0 rgba(17, 16, 15, .08);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 16, 15, .42);
  border-radius: 0;
  color: var(--ink);
  background: #fffdf7;
  font: inherit;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 10px 14px;
}

.form-field textarea {
  min-height: 155px;
  padding: 14px;
  line-height: 1.5;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(241, 90, 0, .28);
  outline-offset: 2px;
  border-color: var(--orange);
}

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

.form-privacy {
  color: #4c453c;
  font-size: 13px;
}

.form-privacy a {
  color: #8f3600;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-intro {
  max-width: 54rem;
}

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

.legal-card,
.privacy-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  color: var(--paper);
  background: var(--ink-soft);
}

.section-paper .legal-card {
  border-color: rgba(17, 16, 15, .22);
  color: var(--ink);
  background: #fff8e8;
  box-shadow: 10px 10px 0 rgba(17, 16, 15, .08);
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.legal-card h2,
.privacy-card h3 {
  margin-bottom: 16px;
}

.legal-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.legal-details {
  margin: 0;
}

.legal-details > div {
  display: grid;
  grid-template-columns: minmax(150px, .55fr) minmax(0, 1.45fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 16, 15, .16);
}

.legal-details > div:last-child {
  border-bottom: 0;
}

.legal-details dt {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.legal-details a,
.legal-copy a,
.privacy-card a {
  color: var(--orange-bright);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-paper .legal-details a {
  color: #9a3900;
}

.privacy-card p:last-child,
.legal-card p:last-child {
  margin-bottom: 0;
}

.privacy-card ul,
.legal-card ul {
  padding-left: 1.2rem;
}

.legal-update {
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

.section-paper .legal-update {
  color: #62594c;
}

.form-notice {
  margin: 0;
  padding: 14px 16px;
  border-left: 5px solid var(--orange);
  color: var(--ink);
  background: #f2e5c9;
  font-weight: 750;
}

.form-notice.is-error {
  border-left-color: #a51f18;
  background: #f8d9d4;
}

.contact-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 1px;
  list-style: none;
  background: var(--line);
}

.contact-list > li > a,
.contact-list > li > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 14px;
  background: #151311;
}

.contact-list a:hover {
  color: var(--orange-bright);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--paper);
}

.breadcrumbs a:hover {
  color: var(--orange-bright);
}

.event-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
}

.event-detail-hero::before {
  content: "";
  position: absolute;
  top: -14rem;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  border: 5rem solid rgba(241, 90, 0, .08);
  border-radius: 50%;
  pointer-events: none;
}

.event-detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.event-detail-visual {
  overflow: hidden;
  border: 1px solid rgba(241, 90, 0, .62);
  background: #090807;
  box-shadow: 18px 18px 0 rgba(241, 90, 0, .12), var(--shadow);
}

.event-detail-visual img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.event-detail-visual.is-landscape img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.event-detail-copy h1 {
  max-width: 760px;
  font-size: clamp(4.1rem, 9vw, 8rem);
}

.event-detail-copy .lede {
  margin-top: 22px;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--line);
}

.event-fact {
  min-width: 0;
  padding: 18px;
  background: #151311;
}

.event-fact strong,
.event-fact span {
  display: block;
}

.event-fact strong {
  color: var(--paper-2);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.event-fact span {
  margin-top: 5px;
  color: var(--orange-bright);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.event-link-cards,
.guide-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.event-link-card,
.guide-card,
.info-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  color: var(--paper);
  background: var(--ink-soft);
}

.event-link-card h3,
.guide-card h3,
.info-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.event-link-card p,
.guide-card p,
.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-paper .event-link-card,
.section-paper .guide-card,
.section-paper .info-card {
  border-color: rgba(17, 16, 15, .2);
  color: var(--ink);
  background: #fff8e8;
  box-shadow: 8px 8px 0 rgba(17, 16, 15, .07);
}

.fgc-game-strip {
  margin-top: 34px;
}

.agenda-intro {
  max-width: 880px;
}

[data-event-expiry][hidden],
[data-event-after][hidden] {
  display: none !important;
}

.agenda-filter-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 30px;
  gap: 18px 28px;
  flex-wrap: wrap;
}

.agenda-filter-label {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.agenda-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.agenda-game-field {
  min-width: min(280px, 100%);
}

.agenda-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 15px 9px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  gap: 9px;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background-color .16s ease, color .16s ease, opacity .16s ease, transform .16s ease;
}

.agenda-filter-button::before {
  width: 28px;
  height: 18px;
  border: 1px solid rgba(17, 16, 15, .34);
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
  content: "";
  flex: 0 0 auto;
}

.agenda-filter-button[aria-pressed="true"] {
  color: var(--paper-2);
  background: var(--ink);
}

.agenda-filter-button[aria-pressed="false"] {
  opacity: .54;
}

.agenda-filter-button:hover,
.agenda-filter-button:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.agenda-filter-button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.agenda-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 0;
  padding: 22px;
  border: 1px solid rgba(17, 16, 15, .22);
  gap: 14px 24px;
  color: var(--ink);
  background: #fff8e8;
  font-weight: 850;
  flex-wrap: wrap;
}

.agenda-empty p {
  margin: 0;
}

.agenda-reset {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 2px solid var(--orange);
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.agenda-reset:hover,
.agenda-reset:focus-visible {
  color: var(--orange-deep);
}

.agenda-empty[hidden] {
  display: none;
}

.past-events-list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.past-event-item {
  display: grid;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 16, 15, .24);
  gap: 18px 32px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.past-event-copy h3 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.past-event-meta {
  display: flex;
  margin: 0;
  gap: 8px 18px;
  color: var(--muted);
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.past-event-meta span::before {
  margin-right: 18px;
  color: var(--orange);
  content: "•";
}

.past-event-item .button {
  min-width: 156px;
  text-align: center;
}

.past-event-actions {
  display: flex;
  justify-content: end;
  gap: 10px;
  flex-wrap: wrap;
}

.agenda-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.agenda-card[hidden] {
  display: none;
}

.agenda-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  gap: 12px 18px;
  flex-wrap: wrap;
}

.agenda-pagination[hidden] {
  display: none;
}

.agenda-pagination-button {
  min-width: 132px;
}

.agenda-pagination-button:disabled {
  cursor: not-allowed;
  opacity: .45;
  transform: none;
}

.agenda-pagination-status {
  min-width: 110px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.agenda-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(17, 16, 15, .22);
  color: var(--ink);
  background: #fff8e8;
  box-shadow: 9px 9px 0 rgba(17, 16, 15, .08);
}

.agenda-card-featured {
  border-color: var(--orange);
}

.agenda-date {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  color: var(--paper-2);
  background: var(--ink);
  flex-direction: column;
  text-align: center;
}

.agenda-card-featured .agenda-date {
  color: var(--ink);
  background: var(--orange);
}

.agenda-date strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .95;
}

.agenda-date span {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  line-height: 1.15;
}

.agenda-region-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 6px 9px 6px 7px;
  border: 1px solid rgba(243, 231, 201, .3);
  border-radius: 999px;
  gap: 7px;
  color: var(--paper-2);
  background: rgba(255, 255, 255, .07);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.agenda-region-badge::before {
  width: 28px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .28);
  content: "";
  flex: 0 0 auto;
}

.agenda-region-fr::before,
.agenda-filter-fr::before {
  background: linear-gradient(90deg, #0055a4 0 33.333%, #fff 33.333% 66.666%, #ef4135 66.666%);
}

.agenda-region-be::before,
.agenda-filter-be::before {
  background: linear-gradient(90deg, #111 0 33.333%, #ffd90c 33.333% 66.666%, #ef3340 66.666%);
}

.agenda-region-online::before,
.agenda-filter-online::before {
  display: grid;
  height: 22px;
  border-color: #ffcc00;
  place-items: center;
  color: #fff;
  background: #003399;
  content: "🌐";
  font-size: 15px;
  line-height: 1;
}

.agenda-card-featured .agenda-region-badge {
  border-color: rgba(17, 16, 15, .28);
  color: var(--ink);
  background: rgba(255, 248, 232, .72);
}

.agenda-body {
  padding: clamp(24px, 4vw, 42px);
}

.agenda-body h3 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.agenda-body > p:not(.agenda-meta) {
  max-width: 900px;
  color: #4c463d;
}

.agenda-meta {
  display: flex;
  margin: 20px 0 16px;
  gap: 10px 24px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.agenda-meta span {
  color: #62594c;
}

.section-paper .event-link-card p,
.section-paper .guide-card p,
.section-paper .info-card p {
  color: #4a4238;
}

.guide-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  font-size: 12px;
  font-weight: 950;
}

.check-list,
.plain-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding: 11px 0 11px 24px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 1px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  transform: rotate(45deg);
}

.section-paper .check-list li,
.section-paper .plain-list li {
  border-color: rgba(17, 16, 15, .16);
}

.faq-list {
  display: grid;
  max-width: 920px;
  margin-top: 36px;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: #171513;
}

.faq-list summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  color: var(--paper-2);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--orange-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 28px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 780px;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.discord-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, .7fr);
  overflow: hidden;
  border: 1px solid rgba(241, 90, 0, .6);
  background:
    linear-gradient(120deg, rgba(241, 90, 0, .2), transparent 45%),
    #171412;
  box-shadow: var(--shadow);
}

.discord-card::after {
  content: "DISCORD";
  position: absolute;
  right: -1rem;
  bottom: -2.1rem;
  color: rgba(243, 231, 201, .035);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(6rem, 16vw, 13rem);
  line-height: .8;
  pointer-events: none;
}

.discord-copy,
.discord-side {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 5vw, 56px);
}

.discord-copy h2 {
  max-width: 680px;
}

.discord-copy .lede {
  max-width: 650px;
}

.discord-side {
  display: grid;
  align-content: center;
  gap: 16px;
  border-left: 1px solid var(--line);
  background: rgba(0, 0, 0, .2);
}

.discord-server-name {
  margin: 0;
  color: var(--paper-2);
  font-size: 1.15rem;
  font-weight: 900;
}

.discord-live {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.discord-live[hidden] {
  display: none;
}

.discord-stat {
  padding: 18px;
  background: #11100f;
}

.discord-stat strong,
.discord-stat span {
  display: block;
}

.discord-stat strong {
  color: var(--paper-2);
  font-size: 1.65rem;
  line-height: 1;
}

.discord-stat span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.discord-online strong {
  color: #45d483;
}

.discord-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0b0a09;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 46px;
  padding: 58px 0 36px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 430px;
  color: var(--muted);
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--orange-bright);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #d3cab7;
}

.footer-links a:hover {
  color: var(--orange-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--line);
  color: #8f887c;
  font-size: 12px;
}

.note {
  padding: 16px 18px;
  border-left: 5px solid var(--orange);
  color: var(--muted);
  background: rgba(255,255,255,.035);
}

.loading {
  min-height: 320px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

@media (max-width: 1320px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    background: #12100f;
    flex-direction: column;
  }

  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 12px; }
  .nav-links a[aria-current="page"]::after { right: auto; width: 46px; }
  .nav-cta { margin-top: 6px; text-align: center; }
  .language-switcher { justify-content: center; margin: 6px 0 0; padding: 8px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .language-switcher a { padding: 10px 14px; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-copy { max-width: 820px; }
  .hero-logo-wrap { min-height: 360px; }
  .hero-logo { width: min(620px, 92%); }

  .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-link-cards,
  .guide-grid,
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .section { padding: 68px 0; }
  .feature-grid,
  .comeback-feature,
  .event-intro,
  .collective-intro,
  .oni-feature,
  .contact-form-layout,
  .contact-grid,
  .live-grid,
  .legal-grid,
  .privacy-grid,
  .event-detail-grid,
  .discord-card { grid-template-columns: 1fr; }

  .discord-side {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .live-grid,
  .live-grid > *,
  .live-copy,
  .twitch-shell,
  .twitch-gate {
    min-width: 0;
    max-width: 100%;
  }

  .live-copy h2 {
    width: 100%;
    font-size: clamp(2.75rem, 6.5vw, 3.6rem);
    overflow-wrap: break-word;
  }

  .twitch-shell {
    width: 100%;
  }

  .twitch-gate h3,
  .twitch-gate p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .legal-card-wide { grid-column: auto; }

  .stats-stack { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; }
  .news-grid,
  .values-grid,
  .partners-grid { grid-template-columns: 1fr; }
  .news-card { display: grid; grid-template-columns: minmax(210px, .8fr) 1.2fr; }
  .news-card img { height: 100%; min-height: 270px; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .panel-grid { grid-template-columns: 1fr; }
  .collective-intro img { min-height: 420px; }
  .oni-logo-wrap { min-height: 420px; }
  .comeback-poster { max-height: 760px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .agenda-card { grid-template-columns: 120px minmax(0, 1fr); }
}

@media (max-width: 600px) {
  .container,
  .nav-shell { width: min(100% - 24px, var(--max)); }
  .nav-shell { min-height: 70px; }
  .brand img { width: 64px; height: auto; }
  .brand span { display: none; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; gap: 28px; padding: 58px 0 50px; }
  .hero-logo-wrap { min-height: 250px; }
  h1 { font-size: clamp(3.5rem, 19vw, 6rem); }
  .page-hero { padding: 74px 0 62px; }
  .page-hero h1 { font-size: clamp(3.6rem, 19vw, 6.2rem); }
  .feature-card,
  .feature-card img { min-height: 430px; }
  .stats-stack { grid-template-columns: 1fr; }
  .stat-block { min-height: 120px; }
  .news-card { display: block; }
  .news-card img { min-height: 0; height: 230px; }
  .facts,
  .game-grid,
  .results-grid,
  .event-link-cards,
  .guide-grid,
  .info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .legal-details > div { grid-template-columns: 1fr; gap: 5px; }
  .comeback-meta { grid-template-columns: 1fr 1fr; }
  .game-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comeback-copy { padding: 28px 20px; }
  .comeback-copy h2 { font-size: clamp(3rem, 17vw, 4.9rem); }
  .game-tile,
  .game-tile img { min-height: 230px; }
  .source-status { width: 100%; margin: 8px 0 0; }
  .field { width: 100%; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .event-detail-hero { padding: 48px 0 64px; }
  .event-detail-copy h1 { font-size: clamp(3.5rem, 18vw, 5.4rem); }
  .agenda-card { grid-template-columns: 1fr; }
  .agenda-date { min-height: 118px; flex-direction: row; gap: 18px; }
  .agenda-date span { margin-top: 0; }
  .agenda-region-badge { margin-top: 0; }
  .past-event-item { align-items: start; grid-template-columns: 1fr; }
  .past-event-actions { justify-content: start; }
  .past-event-item .button { width: fit-content; }
}

@media (max-width: 424px) {
  .twitch-shell { display: none; }
  .twitch-mobile-fallback { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
