:root {
  --ink: #050505;
  --smoke: #141414;
  --paper: #f4f1e8;
  --white: #ffffff;
  --gold: #ffd64a;
  --acid: #00ff19;
  --volt: #00e5ff;
  --hot: #ff244d;
  --violet: #7b3dff;
  --meme-green: #9dff4e;
  --track: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

[id] {
  scroll-margin-top: calc(var(--header-height) + 40px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  font-family: "Space Grotesk", system-ui, sans-serif;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 22%, rgba(0, 255, 25, 0.035) 56%, transparent),
    repeating-linear-gradient(0deg, rgba(0, 255, 25, 0.04) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 50% -20%, rgba(0, 255, 25, 0.18), transparent 32%),
    var(--ink);
}

body::selection {
  color: var(--ink);
  background: var(--acid);
}

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

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

button,
input {
  font: inherit;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image:
    linear-gradient(transparent 0 50%, rgba(255, 255, 255, 0.11) 50% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px);
  background-size: 100% 4px, 4px 100%;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--acid), var(--meme-green), var(--white));
  box-shadow: 0 0 24px rgba(0, 255, 25, 0.85);
}

.music-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 91;
  min-height: 42px;
  padding: 0 14px;
  border: 2px solid var(--acid);
  border-radius: 0;
  background: #000;
  color: var(--acid);
  cursor: pointer;
  font: 900 0.78rem/1 "Space Grotesk", system-ui, sans-serif;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(0, 255, 25, 0.22);
}

.music-toggle.is-muted {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.45);
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 28px), 1180px);
  min-height: var(--header-height);
  padding: 10px 12px;
  border: 1px solid rgba(0, 255, 25, 0.55);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 30px rgba(0, 255, 25, 0.16);
  transform: translateX(-50%);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 172px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 25, 0.75);
  border-radius: 0;
  background: #000;
}

.brand-mark img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: contrast(1.25) brightness(1.25);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.9);
  font: 700 1.05rem/1 "Teko", "Space Grotesk", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button-primary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  color: #060606;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-cta,
.button-primary {
  background: var(--acid);
  box-shadow: 0 0 30px rgba(0, 255, 25, 0.5), 7px 7px 0 rgba(255, 255, 255, 0.16);
}

.button-ghost {
  color: var(--paper);
  border: 2px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.04);
}

.button-primary:hover,
.button-ghost:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  align-items: end;
  min-height: 92svh;
  padding: calc(var(--header-height) + 84px) clamp(18px, 5vw, 70px) 42px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 6px solid var(--acid);
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 255, 25, 0.12), transparent 28%),
    linear-gradient(180deg, #000 0%, #000 72%, #050505 100%);
}

.clean-hero {
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 88svh;
  padding-bottom: 70px;
}

.clean-hero .hero-content {
  width: min(860px, 100%);
}

.clean-hero .hero-style-players {
  right: clamp(12px, 6vw, 88px);
  bottom: clamp(80px, 14vh, 150px);
  width: min(42vw, 600px);
  opacity: 0.42;
}

.clean-hero .hero-athlete {
  opacity: 0.28;
}

.clean-hero .hero-athlete-left {
  left: auto;
  right: min(52vw, 680px);
  width: min(34vw, 440px);
}

.clean-hero .hero-athlete-right {
  right: -80px;
  bottom: 10vh;
  width: min(35vw, 500px);
}

.hero::before {
  position: absolute;
  inset: auto -10vw -16vh;
  z-index: -3;
  height: 48vh;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(198, 255, 0, 0.22), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 2px, transparent 2px 48px);
  transform: perspective(560px) rotateX(62deg);
  transform-origin: bottom;
}

.hero-arena {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-arena::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.6) 42%, rgba(0, 0, 0, 0.88)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), #000 88%);
}

.hero-style-poster,
.hero-style-players {
  position: absolute;
  max-width: none;
  pointer-events: none;
  user-select: none;
  filter: saturate(1.15) contrast(1.18);
}

.hero-style-poster {
  top: 0;
  right: -3vw;
  width: min(58vw, 760px);
  height: 100%;
  object-fit: cover;
  object-position: 50% 4%;
  opacity: 0.34;
  mix-blend-mode: screen;
}

.hero-style-players {
  right: clamp(18px, 5vw, 72px);
  bottom: 11vh;
  width: min(46vw, 690px);
  border: 10px solid var(--acid);
  background: #000;
  opacity: 0.22;
  transform: rotate(-2deg);
}

.hero-athlete {
  position: absolute;
  bottom: -28px;
  width: min(44vw, 620px);
  max-width: none;
  filter: saturate(1.2) contrast(1.08) drop-shadow(0 28px 40px rgba(0, 0, 0, 0.62));
}

.hero-athlete-left {
  left: max(-110px, -6vw);
  opacity: 0.56;
}

.hero-athlete-right {
  right: max(-130px, -7vw);
  bottom: 7vh;
  width: min(43vw, 650px);
  opacity: 0.76;
  transform: rotate(-2deg);
}

.goof-badge {
  position: absolute;
  z-index: 1;
  max-width: 190px;
  padding: 10px 12px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font: 900 clamp(0.9rem, 1.8vw, 1.28rem)/0.95 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 rgba(255, 36, 77, 0.8);
}

.goof-badge-left {
  left: clamp(150px, 22vw, 340px);
  top: 21vh;
  transform: rotate(-10deg);
}

.goof-badge-right {
  right: clamp(150px, 16vw, 280px);
  top: 28vh;
  background: var(--volt);
  box-shadow: 8px 8px 0 rgba(198, 255, 0, 0.8);
  transform: rotate(8deg);
}

.fake-lab-props {
  position: absolute;
  right: 38%;
  bottom: 15vh;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: end;
  transform: rotate(-6deg);
}

.fake-lab-props span {
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  color: var(--ink);
  font: 900 0.8rem/1 "Space Grotesk", sans-serif;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.42);
}

.prop-vial {
  width: 42px;
  height: 92px;
  border-radius: 8px 8px 14px 14px;
  background: linear-gradient(180deg, var(--paper) 0 22%, var(--acid) 23% 100%);
}

.prop-pill {
  width: 76px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hot) 0 50%, var(--paper) 51% 100%);
  transform: translateY(-18px) rotate(18deg);
}

.prop-syringe {
  width: 104px;
  height: 24px;
  border-radius: 999px 8px 8px 999px;
  background: linear-gradient(90deg, var(--volt), var(--paper));
  transform: translateY(-42px) rotate(-18deg);
}

.arena-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 68%, transparent);
}

.arena-rings {
  position: absolute;
  top: 20vh;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, 92px);
  gap: 10px;
  transform: translateX(-50%) rotate(-9deg);
  opacity: 0.34;
}

.arena-rings span {
  width: 92px;
  aspect-ratio: 1;
  border: 9px solid var(--ring-color, var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 28px currentColor;
}

.arena-rings span:nth-child(2) {
  --ring-color: var(--volt);
}

.arena-rings span:nth-child(3) {
  --ring-color: var(--hot);
}

.arena-rings span:nth-child(4) {
  --ring-color: var(--acid);
  margin-left: 50px;
}

.arena-rings span:nth-child(5) {
  --ring-color: var(--violet);
}

.arena-rings span:nth-child(6) {
  --ring-color: var(--paper);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--acid);
  font: 900 0.9rem/1.1 "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 8px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(5.4rem, 15vw, 14rem);
  line-height: 0.8;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 #151515,
    0 8px 0 rgba(0, 255, 25, 0.68),
    0 18px 60px rgba(255, 255, 255, 0.28);
}

h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-family: "Teko", "Anton", Impact, sans-serif;
  font-size: clamp(3.7rem, 8vw, 7.8rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-family: "Russo One", "Anton", Impact, sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 2.1rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--white);
  font: 700 clamp(2.4rem, 6vw, 5.8rem)/0.75 "Teko", "Anton", Impact, sans-serif;
  text-shadow: 0 6px 0 rgba(0, 255, 25, 0.45);
  text-transform: uppercase;
}

.hero-copy {
  max-width: 660px;
  color: rgba(244, 241, 232, 0.82);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  line-height: 1.45;
}

.clean-hype {
  width: min(620px, 100%);
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.intro-band,
.game-section,
.clean-finale {
  position: relative;
  overflow: hidden;
}

.section-header,
.why-manifesto,
.game-copy,
.game-shell,
.finale-content {
  position: relative;
  z-index: 2;
}

.steroid-sticker {
  --rot: -3deg;
  position: absolute;
  z-index: 1;
  display: block;
  width: min(44vw, 620px);
  border: 0;
  opacity: 0.68;
  filter:
    saturate(1.18)
    contrast(1.08)
    drop-shadow(0 0 22px rgba(0, 255, 25, 0.22))
    drop-shadow(0 22px 34px rgba(0, 0, 0, 0.62));
  mix-blend-mode: screen;
  transform: rotate(var(--rot));
  transition: opacity 160ms ease, transform 180ms ease, filter 180ms ease;
}

.steroid-sticker img {
  width: 100%;
  pointer-events: none;
  user-select: none;
}

.steroid-sticker::after {
  position: absolute;
  right: 8%;
  bottom: 8%;
  padding: 8px 10px;
  border: 2px solid var(--acid);
  background: #000;
  color: var(--acid);
  content: "JOIN TG";
  font: 900 0.75rem/1 "Space Grotesk", sans-serif;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.steroid-sticker:hover,
.steroid-sticker:focus-visible {
  opacity: 0.96;
  outline: none;
  filter:
    saturate(1.35)
    contrast(1.14)
    drop-shadow(0 0 32px rgba(0, 255, 25, 0.48))
    drop-shadow(0 30px 42px rgba(0, 0, 0, 0.7));
  transform: rotate(var(--rot)) translateY(-7px) scale(1.035);
}

.steroid-sticker:hover::after,
.steroid-sticker:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.sticker-pepe {
  --rot: 2deg;
  right: clamp(-80px, -2vw, 12px);
  bottom: clamp(104px, 15vh, 170px);
  width: min(42vw, 590px);
}

.sticker-syringe-dark {
  --rot: -12deg;
  top: -74px;
  right: clamp(-170px, -8vw, -70px);
  width: min(44vw, 560px);
  opacity: 0.5;
}

.sticker-syringe-lab {
  --rot: 10deg;
  left: clamp(-180px, -10vw, -90px);
  bottom: clamp(62px, 12vh, 150px);
  width: min(42vw, 560px);
  opacity: 0.46;
}

.sticker-dex {
  --rot: -2deg;
  right: clamp(-130px, -5vw, -40px);
  top: clamp(16px, 4vw, 54px);
  width: min(50vw, 660px);
  opacity: 0.6;
}

.broadcast-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    rgba(0, 0, 0, 0.58);
  box-shadow: var(--shadow);
}

.panel-label {
  margin-bottom: 14px;
  color: var(--hot);
  font: 900 1.1rem/1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-row span {
  color: rgba(244, 241, 232, 0.68);
}

.stat-row strong {
  color: var(--white);
  text-align: right;
  text-transform: uppercase;
}

.hype-output {
  min-height: 44px;
  margin: 16px 0 0;
  padding: 12px;
  border-left: 4px solid var(--acid);
  background: rgba(198, 255, 0, 0.09);
  color: var(--acid);
  font-weight: 800;
}

.ticker-strip {
  overflow: hidden;
  border-block: 4px solid var(--acid);
  background: #000;
  color: var(--acid);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 23s linear infinite;
}

.ticker-track span {
  padding: 16px 30px;
  font: 700 clamp(1.8rem, 4vw, 3.2rem)/0.82 "Teko", "Anton", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span::after {
  padding-left: 30px;
  content: "/";
}

.section {
  padding: clamp(72px, 11vw, 140px) clamp(18px, 5vw, 70px);
}

.short-section {
  padding-block: clamp(56px, 8vw, 92px);
}

.section-header {
  display: grid;
  gap: 8px;
  max-width: 1060px;
  margin-bottom: clamp(28px, 6vw, 62px);
}

.intro-band {
  background:
    repeating-linear-gradient(90deg, rgba(0, 255, 25, 0.05) 0 2px, transparent 2px 22px),
    #000;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.manifesto-copy {
  display: grid;
  gap: 22px;
  max-width: 840px;
  color: rgba(244, 241, 232, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.manifesto-copy p:last-child {
  color: var(--gold);
  font-weight: 800;
}

.medal-board {
  display: grid;
  gap: 10px;
}

.medal-board div,
.token-line,
.headline-stack article,
.event-card,
.judge-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.medal-board div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.medal-board span,
.token-line span,
.headline-stack span,
.judge-role {
  color: var(--acid);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.medal-board strong {
  font: 900 2.05rem/0.9 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

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

.vibe-grid article {
  min-height: 220px;
  padding: 22px;
  border: 5px solid var(--acid);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 36%),
    #000;
  box-shadow: 10px 10px 0 rgba(0, 255, 25, 0.2);
}

.vibe-grid strong {
  color: var(--acid);
  font: 700 5.2rem/0.75 "Teko", "Anton", Impact, sans-serif;
}

.vibe-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.why-manifesto {
  max-width: 980px;
  padding: clamp(22px, 4vw, 42px);
  border: 6px solid var(--acid);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 35%),
    #000;
  box-shadow: 12px 12px 0 rgba(0, 255, 25, 0.2);
}

.why-manifesto p {
  margin-bottom: 28px;
  color: var(--white);
  font: 700 clamp(2rem, 5vw, 4.6rem)/0.82 "Teko", "Anton", Impact, sans-serif;
  text-transform: uppercase;
}

.why-manifesto strong {
  display: block;
  color: var(--acid);
  font: 700 clamp(2.4rem, 6vw, 5.4rem)/0.78 "Teko", "Anton", Impact, sans-serif;
  text-transform: uppercase;
}

.game-section {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  min-height: 100svh;
  padding: clamp(66px, 8vw, 112px) clamp(12px, 3vw, 46px);
  background:
    linear-gradient(180deg, #000 0%, #050505 100%),
    repeating-linear-gradient(90deg, rgba(0, 255, 25, 0.08) 0 2px, transparent 2px 24px);
  border-block: 6px solid var(--acid);
}

.game-copy {
  width: min(1480px, 100%);
  max-width: none;
  margin: 0 auto;
}

.game-copy h2 {
  font-size: clamp(4.4rem, 10vw, 12rem);
}

.game-copy p:last-child {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.45;
}

.game-shell {
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(0, 1.55fr) minmax(220px, 310px);
  gap: clamp(14px, 2vw, 26px);
  align-items: stretch;
  width: min(1480px, 100%);
  margin: 0 auto;
}

.game-player-select {
  display: grid;
  gap: 12px;
}

.player-card,
.game-judge-card {
  display: grid;
  gap: 8px;
  align-content: end;
  min-height: 150px;
  padding: 8px;
  border: 6px solid var(--acid);
  border-radius: 0;
  background: #000;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.player-card {
  box-shadow: 0 0 0 1px #000, 10px 10px 0 rgba(0, 255, 25, 0.2);
  transition: transform 160ms ease, border-color 160ms ease;
}

.game-judge-card {
  border-color: var(--white);
  cursor: default;
  box-shadow: 0 0 0 1px #000, 10px 10px 0 rgba(255, 255, 255, 0.12);
}

.player-card:hover,
.player-card:focus-visible,
.player-card.is-active {
  border-color: var(--white);
  transform: translate(-3px, -3px);
}

.player-card img,
.game-judge-card img,
.mini-bryan {
  width: 100%;
  height: 100px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 72%, rgba(0, 255, 25, 0.28), transparent 42%),
    #030303;
  filter: drop-shadow(0 0 14px rgba(0, 255, 25, 0.35));
}

.game-judge-card img {
  object-fit: cover;
  object-position: 50% 16%;
}

.player-card[data-player="missile"] img {
  object-position: 50% 22%;
}

.mini-bryan {
  display: grid;
  place-items: center;
  color: var(--acid);
  font: 700 4.2rem/0.82 "Teko", "Anton", Impact, sans-serif;
  border: 2px solid rgba(0, 255, 25, 0.5);
}

.player-card span:last-child,
.game-judge-card span {
  font: 700 1.65rem/0.82 "Teko", "Anton", Impact, sans-serif;
  text-transform: uppercase;
}

.game-judge-card small {
  color: rgba(255, 255, 255, 0.76);
  font: 900 0.72rem/1 "Space Grotesk", sans-serif;
  text-transform: uppercase;
}

.judge-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.judge-chip-row b {
  padding: 4px 6px;
  border: 1px solid rgba(0, 255, 25, 0.55);
  color: var(--acid);
  font: 900 0.58rem/1 "Space Grotesk", sans-serif;
  text-transform: uppercase;
}

.game-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 10px solid var(--acid);
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 255, 25, 0.16), transparent 38%),
    #000;
  box-shadow: 0 0 44px rgba(0, 255, 25, 0.22);
}

#juice-game {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--white);
  text-align: center;
  pointer-events: none;
}

.game-overlay.is-hidden {
  opacity: 0;
}

.game-overlay strong {
  color: var(--acid);
  font: 700 clamp(4rem, 9vw, 8rem)/0.75 "Teko", "Anton", Impact, sans-serif;
  text-shadow: 0 7px 0 rgba(255, 255, 255, 0.2);
}

.game-overlay span {
  font-weight: 900;
  text-transform: uppercase;
}

.game-hud {
  display: grid;
  gap: 12px;
}

.monitor {
  min-height: 102px;
  padding: 14px;
  border: 4px solid var(--acid);
  background: #030303;
  color: var(--white);
  box-shadow: inset 0 0 22px rgba(0, 255, 25, 0.11);
}

.monitor span {
  display: block;
  margin-bottom: 8px;
  color: var(--acid);
  font: 900 0.78rem/1 "Space Grotesk", sans-serif;
  text-transform: uppercase;
}

.monitor strong {
  font: 700 clamp(2rem, 3.6vw, 3rem)/0.78 "Teko", "Anton", Impact, sans-serif;
}

.monitor-heart strong.is-redline {
  color: var(--hot);
  text-shadow: 0 0 18px rgba(255, 36, 77, 0.8);
}

.ekg-line {
  height: 32px;
  margin-top: 12px;
  background:
    linear-gradient(90deg, transparent 0 6%, var(--acid) 6% 10%, transparent 10% 18%, var(--acid) 18% 21%, transparent 21% 28%, var(--acid) 28% 32%, transparent 32%),
    repeating-linear-gradient(90deg, rgba(0, 255, 25, 0.12) 0 1px, transparent 1px 12px);
  background-size: 120px 100%, 12px 100%;
  animation: ekg 600ms linear infinite;
}

.command-grid {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 4px solid rgba(0, 255, 25, 0.65);
  color: rgba(255, 255, 255, 0.82);
  background: #000;
  font-weight: 900;
  text-transform: uppercase;
}

.command-grid span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

kbd {
  min-width: 32px;
  padding: 6px 8px;
  border: 2px solid var(--acid);
  border-radius: 0;
  background: #111;
  color: var(--white);
  font: 900 0.8rem/1 "Space Grotesk", sans-serif;
  text-align: center;
  box-shadow: 0 3px 0 var(--acid);
}

.touch-controls {
  grid-column: 1 / -1;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.touch-controls button {
  min-height: 48px;
  border: 3px solid var(--acid);
  background: #050505;
  color: var(--white);
  font: 700 1.35rem/0.8 "Teko", "Anton", Impact, sans-serif;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 rgba(0, 255, 25, 0.22);
  touch-action: manipulation;
}

.touch-controls button:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 rgba(0, 255, 25, 0.22);
}

.stack-section {
  background:
    linear-gradient(180deg, #151515, #050505),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px);
}

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

.stack-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    #111;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.stack-image {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 214, 74, 0.34), rgba(0, 229, 255, 0.18)),
    #111;
}

.stack-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.08);
}

.stack-missile .stack-image img {
  object-position: 54% center;
}

.dunce-cap {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  border-right: 52px solid transparent;
  border-bottom: 132px solid var(--gold);
  border-left: 52px solid transparent;
  filter: drop-shadow(8px 8px 0 rgba(255, 36, 77, 0.78));
  transform: translateX(-50%) rotate(-8deg);
}

.dunce-cap::after {
  position: absolute;
  top: 70px;
  left: -36px;
  width: 72px;
  content: "DUMB";
  color: var(--ink);
  font: 900 1rem/1 "Barlow Condensed", sans-serif;
  text-align: center;
  transform: rotate(90deg);
}

.goofy-sticker,
.judge-dumb-label {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  max-width: min(82%, 260px);
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--acid);
  color: var(--ink);
  font: 900 1rem/0.96 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.56);
  transform: rotate(-2deg);
}

.stack-copy {
  padding: 22px;
}

.stack-copy p:not(.judge-role) {
  color: rgba(244, 241, 232, 0.76);
  line-height: 1.45;
}

.dumb-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.dumb-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(244, 241, 232, 0.82);
  font-weight: 700;
}

.dumb-list li::before {
  position: absolute;
  left: 0;
  content: "!";
  color: var(--hot);
  font-weight: 900;
}

.stack-bryan-art {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(198, 255, 0, 0.32), rgba(123, 61, 255, 0.28)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px),
    #111;
}

.stack-bryan-art::before {
  width: 190px;
  height: 230px;
  content: "";
  border-radius: 48% 48% 44% 44%;
  background:
    linear-gradient(180deg, #f8e7c5 0 44%, #111 45% 100%);
  box-shadow:
    0 74px 0 16px #111,
    0 92px 0 62px rgba(255, 255, 255, 0.1);
}

.bryan-head {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 84px;
  aspect-ratio: 1;
  border: 5px solid var(--acid);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.76);
  color: var(--acid);
  font: 900 1.9rem/1 "Barlow Condensed", sans-serif;
}

.image-belt {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 6px solid var(--acid);
  background: #000;
  color: var(--white);
}

.image-belt figure {
  position: relative;
  min-height: clamp(280px, 44vw, 560px);
  margin: 0;
  overflow: hidden;
  border-right: 6px solid var(--acid);
}

.image-belt figure:last-child {
  border-right: 0;
}

.image-belt figure::before {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  content: "DUMB MODE";
  background: var(--gold);
  color: var(--ink);
  font: 900 1rem/1 "Barlow Condensed", sans-serif;
  transform: rotate(-5deg);
  box-shadow: 5px 5px 0 rgba(255, 36, 77, 0.8);
}

.image-belt img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.06);
  transition: transform 500ms ease;
}

.image-belt figure:hover img {
  transform: scale(1.06) rotate(-1deg);
}

.image-belt figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px;
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.8);
  color: var(--paper);
  font-weight: 900;
  text-transform: uppercase;
}

.event-section {
  background:
    repeating-linear-gradient(0deg, rgba(0, 255, 25, 0.04) 0 1px, transparent 1px 16px),
    #000;
}

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

.event-card {
  min-height: 330px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 50% 0%, rgba(255, 214, 74, 0.22), transparent 40%);
}

.event-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 50% 0%, rgba(255, 36, 77, 0.24), transparent 40%);
}

.event-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.24), transparent 40%);
}

.event-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 50% 0%, rgba(123, 61, 255, 0.24), transparent 40%);
}

.event-number {
  color: rgba(244, 241, 232, 0.28);
  font: 900 6rem/0.8 "Anton", Impact, sans-serif;
}

.event-card p {
  margin-bottom: 0;
  color: rgba(244, 241, 232, 0.74);
  line-height: 1.45;
}

.judges-section {
  background:
    repeating-linear-gradient(45deg, rgba(0, 255, 25, 0.05) 0 1px, transparent 1px 18px),
    #000;
}

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

.judge-card {
  min-height: 590px;
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto;
  overflow: hidden;
  background: #111;
}

.judge-photo {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 214, 74, 0.4), rgba(255, 36, 77, 0.28)),
    #111;
}

.judge-photo img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.05);
}

.judge-photo:not(.judge-silhouette)::before {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  border-right: 44px solid transparent;
  border-bottom: 112px solid var(--gold);
  border-left: 44px solid transparent;
  content: "";
  filter: drop-shadow(7px 7px 0 rgba(255, 36, 77, 0.75));
  transform: translateX(-50%) rotate(-8deg);
}

.judge-photo:not(.judge-silhouette)::after {
  position: absolute;
  top: 70px;
  left: calc(50% - 29px);
  z-index: 3;
  width: 58px;
  content: "DUMB";
  color: var(--ink);
  font: 900 0.86rem/1 "Barlow Condensed", sans-serif;
  text-align: center;
  transform: rotate(82deg);
}

.judge-missile .judge-photo img {
  object-position: 54% center;
}

.judge-card > div:last-child {
  padding: 24px;
}

.judge-card p:not(.judge-role) {
  color: rgba(244, 241, 232, 0.74);
  line-height: 1.45;
}

.judge-silhouette {
  display: grid;
  place-items: center;
  position: relative;
  background:
    linear-gradient(135deg, rgba(198, 255, 0, 0.38), rgba(0, 229, 255, 0.24)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 2px, transparent 2px 16px),
    #0f1611;
}

.judge-silhouette .dunce-cap {
  top: 20px;
}

.judge-silhouette::before {
  width: 46%;
  max-width: 220px;
  aspect-ratio: 1 / 1.28;
  content: "";
  border-radius: 50% 50% 42% 42%;
  background:
    linear-gradient(180deg, #f8e7c5 0 46%, #111 47% 100%);
  box-shadow:
    0 72px 0 20px #111,
    0 92px 0 64px rgba(255, 255, 255, 0.1);
}

.judge-silhouette span {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  border: 4px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
  font: 900 2rem/1 "Barlow Condensed", sans-serif;
  background: rgba(5, 5, 5, 0.75);
}

.judge-silhouette .judge-dumb-label {
  font-style: normal;
}

.token-section {
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 255, 25, 0.12), transparent 34%),
    #000;
}

.token-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: center;
}

.coin-stage {
  display: grid;
  place-items: center;
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
}

.coin-orbit {
  display: grid;
  place-items: center;
  width: min(62vw, 340px);
  aspect-ratio: 1;
  border: 3px dashed rgba(198, 255, 0, 0.52);
  border-radius: 50%;
  animation: spin 13s linear infinite;
}

.coin-face {
  width: 78%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 8px solid var(--gold);
  border-radius: 50%;
  background: #000;
  box-shadow:
    inset 0 0 30px rgba(255, 214, 74, 0.38),
    0 0 70px rgba(198, 255, 0, 0.25);
  animation: pulseCoin 1500ms ease-in-out infinite alternate;
}

.coin-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.45);
}

.token-board {
  display: grid;
  gap: 12px;
}

.token-line {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  padding: 18px 20px;
}

.token-line strong {
  font: 900 clamp(1.5rem, 3.2vw, 3rem)/0.92 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.press-section {
  background:
    repeating-linear-gradient(90deg, rgba(0, 255, 25, 0.05) 0 2px, transparent 2px 24px),
    #000;
  color: var(--white);
  border-block: 6px solid var(--acid);
}

.press-section .eyebrow {
  color: var(--acid);
}

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

.headline-stack article {
  min-height: 230px;
  padding: 24px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.74)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 15px);
}

.headline-stack article:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.9), rgba(42, 15, 60, 0.8)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 15px);
}

.headline-stack h3 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.chaos-lab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: clamp(24px, 6vw, 86px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.13), transparent 38%, rgba(255, 214, 74, 0.18)),
    #090909;
}

.lab-copy p:last-child {
  max-width: 680px;
  color: rgba(244, 241, 232, 0.78);
  font-size: 1.14rem;
  line-height: 1.5;
}

.enhancement-meter {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.enhancement-meter label {
  color: var(--acid);
  font-weight: 900;
  text-transform: uppercase;
}

.enhancement-meter input {
  width: 100%;
  accent-color: var(--acid);
}

.meter-readout {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.meter-readout span {
  font: 900 clamp(2.6rem, 6vw, 5.2rem)/0.88 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.meter-readout strong {
  color: var(--gold);
  font-size: 2rem;
}

.finale {
  position: relative;
  min-height: 86svh;
  display: grid;
  place-items: center;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 5vw, 70px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), #050505 88%),
    linear-gradient(125deg, rgba(255, 36, 77, 0.5), rgba(5, 5, 5, 0.48) 48%, rgba(198, 255, 0, 0.42));
}

.clean-finale {
  min-height: auto;
  padding-block: clamp(64px, 9vw, 110px);
  border-top: 6px solid var(--acid);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 255, 25, 0.16), transparent 30%),
    #000;
}

.gigachad-plate {
  border-radius: 0;
}

.game-stage,
.monitor,
.command-grid,
.contract-shell,
.contract-shell span,
.hype-output,
.vibe-grid article,
.player-card,
.site-header,
.brand-mark,
.nav-cta,
.button-primary,
.button-ghost {
  border-radius: 0;
}

.game-section,
.intro-band,
.clean-finale {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 30%, rgba(0, 255, 25, 0.04)),
    repeating-linear-gradient(90deg, rgba(0, 255, 25, 0.045) 0 2px, transparent 2px 30px),
    #000;
}

.clean-hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 34px;
  z-index: 1;
  content: "GIGACHAD MODE";
  color: rgba(0, 255, 25, 0.18);
  font: 700 clamp(4rem, 11vw, 10rem)/0.75 "Teko", "Anton", Impact, sans-serif;
  text-transform: uppercase;
  pointer-events: none;
}

.finale-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0.36;
}

.finale-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.25) contrast(1.18);
}

.finale-content {
  width: min(920px, 100%);
  text-align: center;
}

.finale-content p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px auto;
  color: rgba(244, 241, 232, 0.84);
  font-size: 1.16rem;
  line-height: 1.5;
}

.contract-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: min(720px, 100%);
  min-height: 64px;
  margin: 34px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.76);
  text-align: left;
}

.contract-shell span {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 900;
}

.contract-shell code {
  overflow-wrap: anywhere;
  color: var(--paper);
  font-size: clamp(0.82rem, 2vw, 1.05rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: #020202;
  color: rgba(244, 241, 232, 0.7);
}

.site-footer p {
  max-width: 920px;
  margin-bottom: 0;
  line-height: 1.45;
}

.site-footer a {
  color: var(--acid);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseCoin {
  from {
    transform: scale(0.96);
  }
  to {
    transform: scale(1.03);
  }
}

@keyframes ekg {
  to {
    background-position: 120px 0, 12px 0;
  }
}

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

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

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .broadcast-panel {
    width: min(560px, 100%);
  }

  .hero-athlete {
    width: 54vw;
  }

  .hero-athlete-right {
    width: 56vw;
  }

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

  .judges-grid .judge-card:last-child,
  .stack-grid .stack-card:last-child {
    grid-column: 1 / -1;
  }

  .manifesto-grid,
  .token-layout,
  .game-shell,
  .chaos-lab {
    grid-template-columns: 1fr;
  }

  .token-layout {
    gap: 28px;
  }

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

  .player-card,
  .game-judge-card {
    min-height: 132px;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 58px;
  }

  body {
    background:
      repeating-linear-gradient(0deg, rgba(0, 255, 25, 0.035) 0 1px, transparent 1px 10px),
      #000;
  }

  .noise {
    opacity: 0.11;
  }

  .site-header {
    top: 6px;
    grid-template-columns: auto minmax(112px, 1fr);
    gap: 8px;
    width: calc(100% - 12px);
    min-height: var(--header-height);
    padding: 6px;
  }

  .brand-mark {
    width: min(44vw, 142px);
    height: 42px;
  }

  .nav-cta {
    justify-self: stretch;
    min-height: 42px;
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: calc(var(--header-height) + 42px) 14px 38px;
  }

  .hero-content,
  .clean-hero .hero-content {
    width: 100%;
    max-width: 344px;
    min-width: 0;
  }

  .hero-athlete-left {
    left: -150px;
    width: 78vw;
  }

  .hero-athlete-right {
    right: -150px;
    bottom: 28vh;
    width: 82vw;
  }

  .arena-rings {
    grid-template-columns: repeat(3, 54px);
    gap: 6px;
    opacity: 0.28;
  }

  .arena-rings span {
    width: 54px;
    border-width: 5px;
  }

  .arena-rings span:nth-child(4) {
    margin-left: 30px;
  }

  h1 {
    font-size: clamp(2.9rem, 15.5vw, 4rem);
    line-height: 0.82;
    text-shadow:
      0 2px 0 #151515,
      0 5px 0 rgba(0, 255, 25, 0.68),
      0 12px 42px rgba(255, 255, 255, 0.24);
  }

  h2 {
    font-size: clamp(2.55rem, 12.4vw, 3.35rem);
    line-height: 0.82;
    overflow-wrap: anywhere;
  }

  h3 {
    font-size: clamp(1.15rem, 7vw, 1.6rem);
  }

  .eyebrow {
    font-size: 0.74rem;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: clamp(2rem, 12vw, 3.8rem);
    line-height: 0.76;
  }

  .hero-copy {
    width: 100%;
    max-width: 344px;
    font-size: 0.98rem;
  }

  .clean-hype {
    width: 100%;
    max-width: 344px;
    min-height: 0;
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .hero-actions,
  .site-footer,
  .meter-readout {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary,
  .button-ghost {
    width: 100%;
  }

  .ticker-track span {
    padding: 12px 18px;
    font-size: 1.75rem;
  }

  .section {
    padding: 54px 14px;
  }

  .short-section {
    padding-block: 48px;
  }

  .section-header {
    max-width: 344px;
    margin-bottom: 22px;
  }

  .image-belt,
  .event-grid,
  .stack-grid,
  .vibe-grid,
  .judges-grid,
  .game-player-select,
  .game-hud,
  .headline-stack {
    grid-template-columns: 1fr;
  }

  .judges-grid .judge-card:last-child,
  .stack-grid .stack-card:last-child {
    grid-column: auto;
  }

  .goof-badge {
    max-width: 140px;
    padding: 8px 9px;
  }

  .goof-badge-left {
    left: 16px;
    top: 22vh;
  }

  .goof-badge-right {
    right: 16px;
    top: 36vh;
  }

  .fake-lab-props {
    right: 26px;
    bottom: 12vh;
    transform: scale(0.78) rotate(-6deg);
    transform-origin: right bottom;
  }

  .hero-style-poster {
    right: -36vw;
    width: 125vw;
    opacity: 0.24;
  }

  .hero-style-players {
    right: -38vw;
    bottom: 24vh;
    width: 112vw;
    opacity: 0.16;
  }

  .clean-hero .hero-style-players {
    right: -48vw;
    bottom: 18vh;
    width: 122vw;
    opacity: 0.14;
  }

  .clean-hero .hero-athlete-left {
    left: -130px;
    right: auto;
    width: 70vw;
    opacity: 0.18;
  }

  .clean-hero .hero-athlete-right {
    right: -160px;
    bottom: 28vh;
    width: 78vw;
    opacity: 0.14;
  }

  .steroid-sticker {
    width: 290px;
    opacity: 0.24;
    filter:
      saturate(1.12)
      contrast(1.08)
      drop-shadow(0 0 16px rgba(0, 255, 25, 0.28));
  }

  .steroid-sticker::after {
    display: none;
  }

  .sticker-pepe {
    top: 88px;
    right: -142px;
    bottom: auto;
    width: 330px;
  }

  .sticker-syringe-dark {
    top: 8px;
    right: -154px;
    width: 292px;
  }

  .sticker-syringe-lab {
    top: 26px;
    bottom: auto;
    left: -150px;
    width: 306px;
  }

  .sticker-dex {
    top: 0;
    right: -150px;
    width: 320px;
  }

  .clean-hero::after {
    display: none;
  }

  .vibe-grid article {
    min-height: 170px;
  }

  .why-manifesto {
    width: 100%;
    max-width: 344px;
    padding: 18px;
    border-width: 4px;
    box-shadow: 7px 7px 0 rgba(0, 255, 25, 0.2);
  }

  .why-manifesto p {
    margin-bottom: 18px;
    max-width: 100%;
    font-size: clamp(1.55rem, 7.6vw, 2.05rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .why-manifesto strong {
    max-width: 100%;
    font-size: clamp(1.9rem, 9.2vw, 2.65rem);
    line-height: 0.88;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .game-shell {
    width: 100%;
    max-width: 100%;
    gap: 14px;
  }

  .game-copy p:last-child {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .game-stage {
    border-width: 5px;
    margin-inline: 0;
  }

  .game-overlay strong {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .player-card,
  .game-judge-card {
    grid-template-columns: 72px 1fr;
    align-items: center;
    min-height: 84px;
    padding: 6px;
    border-width: 4px;
    box-shadow: 5px 5px 0 rgba(0, 255, 25, 0.2);
  }

  .player-card img,
  .game-judge-card img,
  .mini-bryan {
    height: 66px;
  }

  .player-card span:last-child,
  .game-judge-card span {
    font-size: 1.35rem;
  }

  .game-judge-card small {
    grid-column: 2;
  }

  .judge-chip-row {
    grid-column: 1 / -1;
  }

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

  .monitor {
    min-height: 82px;
    padding: 10px;
    border-width: 3px;
  }

  .monitor span {
    margin-bottom: 6px;
    font-size: 0.66rem;
  }

  .monitor strong {
    font-size: clamp(1.65rem, 10vw, 2.45rem);
  }

  .ekg-line {
    height: 22px;
    margin-top: 8px;
  }

  .command-grid {
    display: none;
  }

  .touch-controls {
    display: grid;
  }

  .contract-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contract-shell span {
    width: 100%;
    min-height: 42px;
    aspect-ratio: auto;
  }

  .site-footer {
    gap: 16px;
    padding: 22px 14px;
  }

  .event-card {
    min-height: 250px;
  }

  .judge-card {
    min-height: 500px;
  }

  .token-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .coin-stage {
    min-height: 330px;
  }

  .finale-media {
    grid-template-columns: 1fr;
  }

  .finale-media img:last-child {
    display: none;
  }
}
