:root {
  --bg: #030712;
  --ink: #f8f2da;
  --acid: #d9ff4f;
  --cyan: #48e1ff;
  --red: #ff5c92;
  --orange: #ff9b36;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 92, 146, 0.45), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(72, 225, 255, 0.4), transparent 22%),
    radial-gradient(circle at 50% 80%, rgba(217, 255, 79, 0.28), transparent 30%),
    linear-gradient(130deg, #070c17 0%, #0d0d14 40%, #150814 100%);
  color: var(--ink);
  overflow-x: hidden;
  font-family: "Arial Black", "Impact", sans-serif;
}

body {
  position: relative;
}

.noise,
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.noise {
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 0 1px, transparent 1px);
  background-size: 13px 13px, 17px 17px, 11px 11px;
  animation: static-fizz 0.4s steps(2) infinite;
}

.scanlines {
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.06) 0,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: soft-light;
  opacity: 0.18;
}

.ticker {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 10, 20, 0.8);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.ticker-track {
  white-space: nowrap;
  display: inline-block;
  padding: 0.75rem 0;
  color: var(--acid);
  font-size: clamp(1rem, 3vw, 2rem);
  letter-spacing: 0.3rem;
  animation: ticker 18s linear infinite;
}

.stage {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.hero {
  position: relative;
  padding: 5rem 0 2rem;
  text-align: center;
}

.stamp {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  transform: rotate(-6deg);
  background: var(--acid);
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  box-shadow: 0 0 30px rgba(217, 255, 79, 0.55);
}

.hero h1 {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.divider {
  color: var(--orange);
  transform: rotate(8deg);
}

.glitch {
  position: relative;
  color: var(--ink);
  text-shadow: 0.04em 0 0 var(--cyan), -0.04em 0 0 var(--red);
  animation: skew-pop 2.5s infinite alternate;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glitch::before {
  color: var(--cyan);
  transform: translate(-0.03em, -0.02em);
  clip-path: inset(0 0 45% 0);
}

.glitch::after {
  color: var(--red);
  transform: translate(0.03em, 0.02em);
  clip-path: inset(55% 0 0 0);
}

.glitch.alt {
  color: var(--acid);
}

.tagline {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.08rem;
}

.mashup,
.wall {
  display: grid;
  gap: 1rem;
}

.mashup {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2rem;
}

.wall {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1rem;
}

.panel,
.card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  padding: 1.2rem;
  min-height: 240px;
  background: rgba(9, 14, 26, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.35);
}

.cat-panel {
  background:
    linear-gradient(160deg, rgba(255, 92, 146, 0.2), rgba(72, 225, 255, 0.1)),
    rgba(9, 14, 26, 0.72);
}

.cat {
  position: absolute;
  font-size: clamp(1.8rem, 5vw, 3rem);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.25));
}

.cat-a { top: 16%; left: 12%; animation: float-a 4s ease-in-out infinite; }
.cat-b { top: 44%; right: 12%; animation: float-b 5s ease-in-out infinite; }
.cat-c { bottom: 12%; left: 26%; animation: float-c 6s ease-in-out infinite; }

.laser {
  position: absolute;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--acid), transparent);
  box-shadow: 0 0 18px rgba(255, 92, 146, 0.7);
}

.laser-a { top: 28%; left: 24%; width: 52%; transform: rotate(-12deg); animation: flicker 0.25s steps(2) infinite; }
.laser-b { top: 58%; left: 12%; width: 60%; transform: rotate(18deg); animation: flicker 0.33s steps(2) infinite reverse; }
.laser-c { bottom: 26%; left: 34%; width: 44%; transform: rotate(-6deg); animation: flicker 0.29s steps(2) infinite; }

.manifesto {
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 15% 10%, rgba(72, 225, 255, 0.35), transparent 35%),
    radial-gradient(circle at 88% 80%, rgba(255, 155, 54, 0.28), transparent 30%),
    rgba(9, 14, 26, 0.72);
}

.manifesto p {
  margin: 0;
  font-size: clamp(1.4rem, 5vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
  transform-origin: left center;
}

.manifesto p:nth-child(odd) { color: var(--acid); transform: rotate(-3deg) translateX(-0.3rem); }
.manifesto p:nth-child(even) { color: var(--cyan); transform: rotate(3deg) translateX(0.4rem); }

.vortex {
  display: grid;
  place-items: center;
  isolation: isolate;
}

.ring,
.core {
  position: absolute;
  border-radius: 50%;
}

.ring {
  border: 3px dashed;
  animation: spin 8s linear infinite;
}

.ring-1 { width: 80%; height: 80%; border-color: var(--acid); }
.ring-2 { width: 62%; height: 62%; border-color: var(--red); animation-direction: reverse; }
.ring-3 { width: 42%; height: 42%; border-color: var(--cyan); animation-duration: 6s; }
.ring-4 { width: 24%; height: 24%; border-color: var(--orange); animation-duration: 3s; animation-direction: reverse; }

.core {
  position: relative;
  width: 7rem;
  height: 7rem;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(248, 242, 218, 0.95), rgba(255, 92, 146, 0.4));
  color: #111;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(255, 92, 146, 0.4);
}

.card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.tv { transform: rotate(-1.2deg); }
.chant { transform: rotate(1.2deg); }
.pulse { transform: rotate(-2deg); animation: pulse 1.6s ease-in-out infinite; }

.chant ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 1rem;
}

.word {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  pointer-events: none;
  font-size: clamp(0.9rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  mix-blend-mode: screen;
  opacity: 0.85;
  animation: drift 9s linear forwards;
}

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

@keyframes static-fizz {
  from { transform: translate(0, 0); }
  to { transform: translate(0.4rem, -0.2rem); }
}

@keyframes skew-pop {
  from { transform: skewX(-2deg) translateY(0); }
  to { transform: skewX(2deg) translateY(-0.08em); }
}

@keyframes float-a {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(0.8rem, -0.8rem) rotate(5deg); }
}

@keyframes float-b {
  0%, 100% { transform: translate(0, 0) rotate(6deg); }
  50% { transform: translate(-0.6rem, 0.8rem) rotate(-4deg); }
}

@keyframes float-c {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  50% { transform: translate(1rem, -0.6rem) rotate(8deg); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

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

@keyframes pulse {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50% { transform: rotate(1deg) scale(1.03); }
}

@keyframes drift {
  from {
    transform: translate3d(var(--start-x), var(--start-y), 0) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  20% { opacity: 0.9; }
  to {
    transform: translate3d(var(--end-x), var(--end-y), 0) rotate(26deg) scale(1.3);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .stage {
    width: min(100% - 1rem, 42rem);
  }

  .panel,
  .card {
    min-height: 200px;
    padding: 1rem;
  }
}
