:root {
  --bg: #070709;
  --bg-2: #101014;
  --bg-3: #17171d;
  --ink: #f4efe6;
  --muted: #9b958b;
  --dim: #6b665e;
  --line: rgba(244, 239, 230, 0.1);
  --line-2: rgba(244, 239, 230, 0.18);
  --hot: #ff2d62;
  --hot-2: #ff7a3a;
  --void: #7c5cff;
  --live: #00e676;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --nav-h: 72px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

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

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scan {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 79;
  opacity: 0.035;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0, 0, 0, 0.5) 2px 3px
  );
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: linear-gradient(to bottom, rgba(7, 7, 9, 0.88), rgba(7, 7, 9, 0.35) 70%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 7, 9, 0.86);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 13px;
}

.mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--hot), #9b1238 55%, var(--void));
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 24px rgba(255, 45, 98, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-hot {
  background: linear-gradient(90deg, var(--hot), #ff4d3a);
  color: #14040a;
  box-shadow: 0 10px 30px rgba(255, 45, 98, 0.28);
}

.btn-ghost {
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-sm {
  height: 40px;
  padding: 0 16px;
  font-size: 11px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 40px) 28px 80px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 78% 18%, rgba(255, 45, 98, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 50% at 12% 80%, rgba(124, 92, 255, 0.16), transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255, 122, 58, 0.08), transparent 50%),
    linear-gradient(180deg, #0b0b10 0%, #070709 100%);
}

.hero-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -60px;
  top: 40px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #ff2d62, #7c5cff, #ff7a3a, #ff2d62);
  filter: blur(80px);
  opacity: 0.28;
  animation: spin 28s linear infinite;
}

.hero-ring {
  position: absolute;
  right: 6%;
  top: 18%;
  width: min(42vw, 460px);
  height: min(42vw, 460px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 80px rgba(255, 45, 98, 0.08);
}

.hero-ring::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  animation: spin 60s linear infinite;
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 12px var(--live);
  animation: pulse 1.6s ease-in-out infinite;
}

.dot.off {
  background: var(--dim);
  box-shadow: none;
  animation: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(64px, 11vw, 128px);
  line-height: 0.84;
  letter-spacing: 0.01em;
  font-weight: 400;
}

h1 .grad {
  background: linear-gradient(90deg, #fff 10%, #ff7aa0 40%, #ff2d62 70%, #ffb199 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 46ch;
  margin: 22px 0 30px;
  color: #c9c2b6;
  font-size: 17px;
}

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

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card {
  background: rgba(16, 16, 20, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card header {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.hero-frame {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(160deg, rgba(255, 45, 98, 0.18), transparent 40%),
    linear-gradient(#121218, #0c0c10);
  display: grid;
  place-items: center;
  position: relative;
}

.hero-frame .big {
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.hero-frame .sub {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 13px;
  color: #ddd6cb;
}

.hero-card footer {
  padding: 14px 16px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

/* TICKER */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #0c0c10;
}

.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 12px 0;
  animation: marquee 28s linear infinite;
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9c2b6;
}

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

/* LAYOUT */
section {
  padding: 88px 28px;
  position: relative;
}

.wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.sec-label {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 12px;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.sec-copy {
  max-width: 54ch;
  color: #c9c2b6;
  margin-bottom: 36px;
}

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

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3 {
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

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

/* WATCH */
.watch-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 22px;
}

.embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
}

.embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.watch-side {
  display: grid;
  gap: 14px;
}

.platform {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 148px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #14141a, #101014);
}

.platform h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
}

.clips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.clip {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.clip iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  max-height: 360px;
}

.clip figcaption {
  padding: 12px 12px 14px;
  font-size: 13px;
  color: #c9c2b6;
  background: var(--bg-2);
}

/* ARENA */
.arena-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

form.stack {
  display: grid;
  gap: 12px;
}

label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #0c0c10;
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(255, 45, 98, 0.55);
}

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

.vote-list {
  display: grid;
  gap: 10px;
}

.vote {
  text-align: left;
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #101014;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s, background 0.2s;
}

.vote:hover {
  border-color: var(--line-2);
}

.vote.picked {
  border-color: rgba(255, 45, 98, 0.7);
  background: rgba(255, 45, 98, 0.08);
}

.vote b {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  color: var(--hot);
  line-height: 1;
}

.vote-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

/* STORY */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  min-height: 220px;
}

.story-card.blue { background: linear-gradient(180deg, #12182a, #101014); }
.story-card.red { background: linear-gradient(180deg, #2a1218, #101014); }
.story-card.black { background: linear-gradient(180deg, #161616, #101014); }

.story-card span {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.story-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  margin: 10px 0 12px;
}

/* CONNECT */
.connect {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 108px;
  transition: border-color 0.2s, transform 0.2s;
}

.social:hover {
  border-color: rgba(255, 45, 98, 0.45);
  transform: translateY(-2px);
}

.social small {
  color: var(--muted);
  font-size: 12px;
}

.mail-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.mail-box code {
  font-family: "Share Tech Mono", monospace;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0c0c10;
}

footer.site {
  padding: 28px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 12px;
}

.foot {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* MOBILE */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 59;
  background: rgba(7, 7, 9, 0.96);
  padding: 28px;
  flex-direction: column;
  gap: 18px;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu.open {
  display: flex;
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-inner, .watch-grid, .arena-grid, .connect, .split, .story-grid, .clips {
    grid-template-columns: 1fr;
  }
  .hero { align-items: center; }
  .hero-ring { opacity: 0.35; }
  .clip iframe { max-height: 280px; }
}

@media (max-width: 560px) {
  .nav { padding: 0 16px; }
  section { padding: 64px 16px; }
  .hero { padding: calc(var(--nav-h) + 24px) 16px 56px; }
  .socials { grid-template-columns: 1fr; }
  h1 { font-size: 64px; }
}
