/* =========================================================
   Tyleranthony146 — "Cabinet" arcade design system
   Palette: CRT void + marquee amber + cabinet magenta.
   Cyan = interaction only. Green = LIVE only.
   ========================================================= */

:root {
  /* color */
  --void:      #0B0713;
  --void-2:    #140C22;   /* raised surface */
  --void-3:    #1C1230;   /* card surface */
  --marquee:   #FFC247;   /* primary, the "lit" amber */
  --marquee-d: #C8851A;
  --hot:       #FF2E8E;   /* cabinet-art magenta */
  --phosphor:  #19E3FF;   /* interaction / hover only */
  --credit:    #5BFF9B;   /* LIVE status only */
  --ash:       #B9AEC9;   /* body text */
  --ash-dim:   #8B7EA4;   /* muted labels (AA contrast on --void) */
  --line:      rgba(255, 255, 255, .08);

  /* type */
  --f-display: "Tourney", "Arial Narrow", sans-serif;
  --f-body:    "Space Grotesk", system-ui, sans-serif;
  --f-mono:    "Space Mono", ui-monospace, monospace;

  --t-hero:  clamp(3.2rem, 1rem + 13vw, 11rem);
  --t-h2:    clamp(2rem, 1rem + 4vw, 4rem);
  --t-lede:  clamp(1.1rem, 1rem + .6vw, 1.5rem);

  /* space */
  --pad-x:   clamp(1.25rem, 5vw, 6rem);
  --sec-y:   clamp(4rem, 3rem + 6vw, 9rem);

  /* motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --dur:  .45s;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--ash);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* radial atmosphere behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 46, 142, .14), transparent 60%),
    radial-gradient(90% 70% at 50% 110%, rgba(25, 227, 255, .10), transparent 60%),
    var(--void);
}

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

::selection { background: var(--marquee); color: var(--void); }

/* ---------- focus + skip link (quality floor) ---------- */
:focus-visible {
  outline: 3px solid var(--phosphor);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 100;
  background: var(--marquee);
  color: var(--void);
  padding: .6rem 1rem;
  font-family: var(--f-mono);
  font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- CRT overlay (decorative) ---------- */
.crt {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0) 2px,
      rgba(0, 0, 0, .22) 3px,
      rgba(0, 0, 0, 0) 4px
    );
  mix-blend-mode: multiply;
  opacity: .5;
}
.crt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 110% at 50% 50%, transparent 55%, rgba(0, 0, 0, .55) 100%);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .85rem var(--pad-x);
  background: rgba(11, 7, 19, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: inline-flex; align-items: center; gap: .55rem; }
.nav__coin { color: var(--marquee); font-size: 1.1rem; animation: spin 6s linear infinite; }
.nav__mark {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: #fff;
}
.nav__num { color: var(--hot); }

.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a {
  font-family: var(--f-mono);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ash);
  padding: .35rem 0;
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--phosphor);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); }

/* live pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  padding: .5rem .8rem;
  border-radius: 2px;
  border: 1px solid var(--line);
}
.pill--live { color: var(--credit); border-color: rgba(91, 255, 155, .4); }
.pill__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--credit);
  box-shadow: 0 0 0 0 rgba(91, 255, 155, .7);
  animation: blip 1.8s ease-out infinite;
}
.pill:hover { background: rgba(91, 255, 155, .08); }

/* mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .4rem;
}
.nav__toggle span { width: 26px; height: 2px; background: #fff; transition: .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: sticky;
  top: 58px;
  z-index: 39;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem var(--pad-x) 1.5rem;
  background: var(--void-2);
  border-bottom: 1px solid var(--line);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  font-family: var(--f-mono);
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: .04em;
}
.mobile-menu__live { color: var(--credit); }

/* =========================================================
   Shared section + headings
   ========================================================= */
.sec-head { text-align: center; max-width: 46rem; margin: 0 auto clamp(2rem, 4vw, 3.5rem); }
.sec-head--left { text-align: left; margin-left: 0; }
.sec-head__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--t-h2);
  line-height: .95;
  letter-spacing: .01em;
  color: #fff;
  text-transform: uppercase;
}
.sec-head__sub {
  margin-top: .9rem;
  color: var(--ash-dim);
  font-size: 1.02rem;
}

/* =========================================================
   HERO  (the power-on marquee — the signature)
   ========================================================= */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem var(--pad-x) 4rem;
  gap: 1.6rem;
}
.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ash-dim);
}
.hero__credit { color: var(--marquee); }

/* the marquee plate */
.marquee {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.6rem) clamp(1.6rem, 5vw, 4rem) clamp(1.1rem, 2.5vw, 2rem);
  border: 2px solid rgba(255, 194, 71, .35);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 194, 71, .07), rgba(255, 46, 142, .05)),
    var(--void-2);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .5) inset,
    0 30px 80px -30px rgba(255, 46, 142, .5);
}
.marquee__bolt {
  position: absolute;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--marquee-d));
  box-shadow: 0 0 10px rgba(255, 194, 71, .6);
}
.marquee__bolt--tl { top: 9px; left: 9px; }
.marquee__bolt--tr { top: 9px; right: 9px; }
.marquee__bolt--bl { bottom: 9px; left: 9px; }
.marquee__bolt--br { bottom: 9px; right: 9px; }

.marquee__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--t-hero);
  line-height: .82;
  letter-spacing: .02em;
  color: #fff;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255, 194, 71, .45),
    2px 0 0 rgba(255, 46, 142, .55),
    -2px 0 0 rgba(25, 227, 255, .35);
}
.marquee__line { display: block; }
.marquee__line:last-child { color: var(--marquee); }
.marquee__player {
  margin-top: .9rem;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: clamp(.8rem, .6rem + .6vw, 1.05rem);
  letter-spacing: .42em;
  color: var(--ash);
  text-indent: .42em;
}
.marquee__player-num { color: var(--hot); }

.hero__tag {
  max-width: 40rem;
  font-size: var(--t-lede);
  color: var(--ash);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: .4rem; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --bg: var(--marquee);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  padding: .95rem 1.6rem;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn__glyph { font-size: 1.05em; }
.btn--primary {
  background: var(--marquee);
  color: var(--void);
  box-shadow: 0 0 0 0 rgba(255, 194, 71, .5), 0 10px 30px -10px rgba(255, 194, 71, .6);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(255, 194, 71, .55), 0 16px 34px -12px rgba(255, 194, 71, .7);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--phosphor);
  color: var(--phosphor);
  transform: translateY(-3px);
}

/* =========================================================
   PLATFORM SELECT (cabinets)
   ========================================================= */
.select { padding: var(--sec-y) var(--pad-x); }
.cabinets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}
.cab {
  --accent: var(--marquee);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.5rem 1.4rem 1.3rem;
  background: var(--void-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
/* top "marquee strip" that lights up */
.cab::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent);
  opacity: .5;
  transition: opacity var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cab__platform { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: #fff; text-transform: uppercase; letter-spacing: .02em; }
.cab__role { color: var(--ash-dim); font-size: .95rem; }
.cab__go {
  margin-top: .6rem;
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--accent);
  opacity: .65;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.cab:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  background: var(--void-2);
}
.cab:hover::before { opacity: 1; box-shadow: 0 0 18px var(--accent); }
.cab:hover .cab__go { opacity: 1; transform: translateX(4px); }

/* per-platform accent (color used semantically, not decoratively) */
.cab--twitch    { --accent: #a970ff; }
.cab--youtube   { --accent: #ff4d4d; }
.cab--rumble    { --accent: #5bff9b; }
.cab--tiktok    { --accent: #19e3ff; }
.cab--instagram { --accent: #ff2e8e; }
.cab--facebook  { --accent: #4a8cff; }

/* =========================================================
   HIGH SCORES (leaderboard)
   ========================================================= */
.scores { padding: var(--sec-y) var(--pad-x); }
.board {
  max-width: 60rem;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--void-2);
}
.board__row {
  display: grid;
  grid-template-columns: 4.5rem 1fr 1.6fr 7rem;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.board__row:last-child { border-bottom: 0; }
.board__row--head {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash-dim);
  background: var(--void-3);
}
a.board__row .board__rank { color: var(--marquee); font-weight: 700; }
a.board__row .board__name { color: #fff; font-family: var(--f-display); font-weight: 800; font-size: 1.15rem; letter-spacing: .03em; }
a.board__row .board__role { color: var(--ash); font-size: .9rem; }
.board__score {
  justify-self: end;
  color: var(--phosphor);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
}
a.board__row:hover { background: rgba(25, 227, 255, .06); }
a.board__row:hover .board__name { color: var(--phosphor); }
.board__note { max-width: 60rem; margin: 1rem auto 0; text-align: center; color: var(--ash-dim); font-size: .85rem; }
.board__note code { font-family: var(--f-mono); color: var(--marquee); font-size: .85em; }

/* =========================================================
   WEEKLY ROTATION (schedule board)
   ========================================================= */
.rotation-sec { padding: var(--sec-y) var(--pad-x); }
.rotation {
  max-width: 60rem;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--void-2);
}
.rotation__row {
  display: grid;
  grid-template-columns: 10rem 11rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
}
.rotation__body .rotation__row:last-child { border-bottom: 0; }
.rotation__row--head {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash-dim);
  background: var(--void-3);
}
.rotation__day { color: #fff; font-weight: 700; letter-spacing: .1em; display: flex; align-items: center; gap: .6rem; }
.rotation__time { color: var(--ash); }
.rotation__game { color: var(--ash); }
.rotation__row--today {
  background: rgba(255, 194, 71, .07);
  box-shadow: inset 3px 0 0 var(--marquee);
}
.rotation__row--today .rotation__time,
.rotation__row--today .rotation__game { color: #fff; }
.rotation__chip {
  font-size: .66rem;
  letter-spacing: .12em;
  color: var(--void);
  background: var(--marquee);
  border-radius: 3px;
  padding: .15rem .45rem;
  font-weight: 700;
}

/* =========================================================
   NOW PLAYING (screen facade)
   ========================================================= */
.playing { padding: var(--sec-y) var(--pad-x); }
.screen {
  max-width: 56rem;
  margin: 0 auto;
  padding: 14px;
  background: var(--void-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 40px 90px -40px rgba(255, 46, 142, .4);
}
.screen__facade {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(255, 46, 142, .25), transparent 60%),
    radial-gradient(80% 120% at 50% 100%, rgba(25, 227, 255, .2), transparent 60%),
    #05030a;
  overflow: hidden;
}
.screen__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(0,0,0,.3) 3px 4px);
  pointer-events: none;
  opacity: .5;
}
.screen__play {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  width: clamp(4.5rem, 11vw, 6rem);
  height: clamp(4.5rem, 11vw, 6rem);
  display: grid;
  place-items: center;
  color: var(--void);
  background: var(--marquee);
  border-radius: 50%;
  padding-left: .25em;
  box-shadow: 0 0 36px rgba(255, 194, 71, .6);
  transition: transform var(--dur) var(--ease);
}
.screen__facade:hover .screen__play { transform: scale(1.08); }
.screen__title { font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; text-transform: uppercase; letter-spacing: .04em; }
.screen__sub { font-family: var(--f-mono); font-size: .8rem; color: var(--ash); }
.screen iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 8px; display: block; }
/* recent drops */
.drops {
  list-style: none;
  max-width: 56rem;
  margin: 1.2rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .8rem;
}
.drops__item a {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  height: 100%;
  padding: 1rem 1.1rem;
  background: var(--void-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--hot);
  border-radius: 5px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.drops__tag { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ash-dim); }
.drops__name { color: #fff; font-weight: 500; line-height: 1.3; }
.drops__item a:hover { transform: translateY(-3px); background: var(--void-3); border-left-color: var(--phosphor); }

.playing__alt { text-align: center; margin-top: 1.6rem; font-family: var(--f-mono); font-size: .9rem; color: var(--ash-dim); }
.playing__alt a { color: var(--marquee); border-bottom: 1px solid transparent; transition: border-color var(--dur) var(--ease); }
.playing__alt a:hover { border-color: var(--marquee); }

/* =========================================================
   INSTANT REPLAY (clips wall)
   ========================================================= */
.clips { padding: var(--sec-y) var(--pad-x); }
.clips__grid {
  max-width: 60rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.screen--mini {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 24px 60px -30px rgba(255, 46, 142, .35);
}
.screen--mini .screen__play { font-size: 1.6rem; width: 3rem; height: 3rem; padding-left: .2em; box-shadow: 0 0 20px rgba(255, 194, 71, .5); }
.screen--mini .screen__title { font-size: .78rem; letter-spacing: .06em; padding: 0 .8rem; text-align: center; }
.screen__rec {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--hot);
  pointer-events: none;
}

/* =========================================================
   PRESS START (work with me)
   ========================================================= */
.press { padding: var(--sec-y) var(--pad-x); }
.press__inner {
  max-width: 60rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem);
  background:
    linear-gradient(135deg, rgba(255, 46, 142, .1), rgba(25, 227, 255, .06)),
    var(--void-2);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.press__eyebrow { font-family: var(--f-mono); font-weight: 700; letter-spacing: .2em; color: var(--hot); font-size: .8rem; }
.press__lede { font-size: var(--t-lede); color: var(--ash); max-width: 44rem; margin-top: .4rem; }
.press__kit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  margin: 2.2rem 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.press__stat { background: var(--void-3); padding: 1.2rem 1.3rem; }
.press__stat dt { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ash-dim); }
.press__stat dd { margin-top: .4rem; color: #fff; font-weight: 500; }
.press__stat dd[data-fill] { color: var(--marquee); }
/* contact form — posts to /api/contact; the booking address lives
   server-side only and never appears anywhere client-side */
.press__more { margin-top: 1.4rem; }
.form {
  max-width: 44rem;
  margin-top: 2rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 194, 71, .3);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 194, 71, .1), rgba(255, 46, 142, .06)),
    var(--void);
}
.form__intro { font-family: var(--f-mono); font-size: .8rem; letter-spacing: .08em; color: var(--marquee); text-transform: uppercase; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.2rem; }
.field { display: block; margin-top: 1rem; }
.form__grid .field { margin-top: 0; }
.field__label { display: block; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ash-dim); margin-bottom: .4rem; }
.field__input {
  width: 100%;
  padding: .75rem .9rem;
  color: #fff;
  font: inherit;
  background: var(--void-2);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.field__input:focus { outline: 2px solid var(--phosphor); outline-offset: 1px; border-color: transparent; }
.field__input--area { resize: vertical; min-height: 8rem; }
/* Honeypot: parked off-screen (not display:none) so autofill bots still meet it */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.4rem; }
.form__status { font-family: var(--f-mono); font-size: .8rem; color: var(--ash-dim); min-height: 1.2em; margin: 0; }
.form__status--ok { color: var(--credit); }
.form__status--err { color: var(--hot); }

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  padding: clamp(3rem, 5vw, 5rem) var(--pad-x);
  border-top: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  background: var(--void-2);
}
.foot__credit { font-family: var(--f-mono); letter-spacing: .14em; color: var(--marquee); font-size: .85rem; }
.foot__social { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
.foot__social a {
  font-family: var(--f-mono);
  font-size: .85rem;
  color: var(--ash);
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.foot__social a:hover { color: var(--phosphor); border-color: var(--phosphor); }
.foot__legal { color: var(--ash-dim); font-size: .82rem; }
.foot__top { font-family: var(--f-mono); font-size: .8rem; color: var(--ash-dim); }
.foot__top:hover { color: var(--marquee); }

/* =========================================================
   POWER-ON SEQUENCE (signature motion)
   body.boot = pre-animation state; JS removes it on load.
   ========================================================= */
.boot .marquee__name,
.boot .marquee__player,
.boot .hero__eyebrow,
.boot .hero__tag,
.boot .hero__cta { opacity: 0; }

body:not(.boot) .marquee__name { animation: powerOn .9s var(--ease) both; }
body:not(.boot) .marquee__player { animation: fadeUp .6s var(--ease) .7s both; }
body:not(.boot) .hero__eyebrow { animation: fadeUp .6s var(--ease) .15s both; }
body:not(.boot) .hero__tag { animation: fadeUp .6s var(--ease) .9s both; }
body:not(.boot) .hero__cta { animation: fadeUp .6s var(--ease) 1.05s both; }

@keyframes powerOn {
  0%   { opacity: 0; transform: scaleY(.004); filter: brightness(3); }
  40%  { opacity: 1; transform: scaleY(.004); filter: brightness(3); }
  55%  { transform: scaleY(1); filter: brightness(1.6); }
  60%  { filter: brightness(.4); }
  68%  { filter: brightness(1.5); }
  78%  { filter: brightness(.7); }
  100% { opacity: 1; transform: scaleY(1); filter: brightness(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blip {
  0%   { box-shadow: 0 0 0 0 rgba(91, 255, 155, .7); }
  70%  { box-shadow: 0 0 0 8px rgba(91, 255, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 255, 155, 0); }
}

/* =========================================================
   MEDIA KIT PAGE (player card / spec sheet)
   ========================================================= */
.mk-hero {
  padding: calc(var(--sec-y) * .8) var(--pad-x) 0;
  max-width: 60rem;
  margin: 0 auto;
}
.mk-hero__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--t-h2);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  margin-top: .5rem;
}
.mk-hero__lede { font-size: var(--t-lede); color: var(--ash); max-width: 44rem; margin-top: 1.2rem; }

.mk-stats, .mk-collabs, .mk-tiers { padding: var(--sec-y) var(--pad-x); }

.kit {
  max-width: 60rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.kit__stat {
  background: var(--void-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.4rem 1.5rem;
}
.kit__stat dt {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash-dim);
}
.kit__stat dd {
  margin-top: .5rem;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
.kit__stat dd[data-fill] { color: var(--marquee); }

.collabs {
  list-style: none;
  max-width: 60rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0;
}
.collabs__slot {
  display: grid;
  place-items: center;
  min-height: 7rem;
  border: 1px dashed rgba(255, 194, 71, .35);
  border-radius: 6px;
  font-family: var(--f-mono);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash-dim);
}
.collabs__slot:first-child { color: var(--marquee); border-color: var(--marquee); }

/* rate card — difficulty select */
.tiers {
  max-width: 60rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.tier {
  display: flex;
  flex-direction: column;
  background: var(--void-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.6rem 1.5rem;
}
.tier--featured {
  background:
    linear-gradient(160deg, rgba(255, 194, 71, .12), rgba(255, 46, 142, .05)),
    var(--void-2);
  border-color: rgba(255, 194, 71, .5);
  box-shadow: 0 24px 60px -30px rgba(255, 194, 71, .45);
}
.tier__level {
  font-family: var(--f-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--hot);
}
.tier--featured .tier__level { color: var(--marquee); }
.tier__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #fff;
  margin-top: .3rem;
}
.tier__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
  display: grid;
  gap: .55rem;
  color: var(--ash);
  font-size: .92rem;
}
.tier__list li { padding-left: 1.1rem; position: relative; }
.tier__list li::before { content: "▸"; position: absolute; left: 0; color: var(--marquee); }
.tier__price {
  margin-top: auto;
  font-family: var(--f-mono);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--marquee);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 760px) {
  .nav__links, .pill { display: none; }
  .nav__toggle { display: flex; margin-left: auto; }
  .board__row { grid-template-columns: 3rem 1fr; row-gap: .25rem; }
  .board__row--head { display: none; }
  .board__role { grid-column: 1 / -1; }
  .board__score { justify-self: start; grid-column: 2; }
  a.board__row .board__name { grid-column: 2; }
  .sec-head--left { text-align: left; }
  .rotation__row { grid-template-columns: 1fr; row-gap: .25rem; }
  .rotation__row--head { display: none; }
  .clips__grid { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .kit, .collabs, .tiers { grid-template-columns: 1fr; }
}
@media (min-width: 761px) {
  .mobile-menu { display: none !important; }
}

/* =========================================================
   REDUCED MOTION — respected, final state shown instantly
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .boot .marquee__name,
  .boot .marquee__player,
  .boot .hero__eyebrow,
  .boot .hero__tag,
  .boot .hero__cta { opacity: 1; }
  .nav__coin { animation: none; }
}
