@import url("https://fonts.googleapis.com/css2?family=Bangers&family=Press+Start+2P&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #ff00ff;
  --cyan: #00ffff;
  --green: #39ff14;
  --yellow: #ffff00;
  --purple: #bf00ff;
  --bg: #0a0a0f;
  --panel: #12121a;
  --line: #2a2a3a;
  --text: #e5e5e5;
  --muted: #8b8fa3;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 0, 255, 0.12), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(0, 255, 255, 0.1), transparent 45%);
}

.grid-floor {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background:
    linear-gradient(transparent 95%, rgba(0, 255, 255, 0.35) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255, 0, 255, 0.25) 96%);
  background-size: 48px 48px;
  transform: perspective(500px) rotateX(62deg) scale(2.2);
  transform-origin: center bottom;
  pointer-events: none;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 3rem;
  gap: 2rem;
}

.cabinet {
  width: min(520px, 94vw);
  border: 3px solid var(--green);
  border-radius: 1.25rem;
  background: var(--panel);
  box-shadow:
    0 0 24px rgba(57, 255, 20, 0.25),
    inset 0 0 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.cabinet-top {
  padding: 0.65rem 1rem;
  background: linear-gradient(90deg, rgba(255, 0, 255, 0.15), rgba(0, 255, 255, 0.15));
  border-bottom: 2px solid var(--line);
  text-align: center;
  font-family: "Press Start 2P", cursive;
  font-size: 0.5rem;
  color: var(--cyan);
  letter-spacing: 0.12em;
}

.screen {
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
}

.logo-wrap {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--pink);
  box-shadow: 0 0 28px rgba(255, 0, 255, 0.5);
}

.blink {
  animation: blink 1.1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.status-line {
  font-family: "Press Start 2P", cursive;
  font-size: clamp(0.45rem, 2.8vw, 0.58rem);
  color: var(--green);
  margin-bottom: 1rem;
}

.headline {
  font-family: "Bangers", cursive;
  font-size: clamp(2.8rem, 11vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--pink) 55%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.35rem;
}

.sub {
  font-family: "Press Start 2P", cursive;
  font-size: clamp(0.55rem, 3vw, 0.72rem);
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.pitch {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 26rem;
  margin: 0 auto 1.5rem;
}

.pitch em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 600;
}

.meter-block {
  text-align: left;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: "Press Start 2P", cursive;
  font-size: 0.45rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.meter-track {
  height: 14px;
  border: 2px solid var(--purple);
  border-radius: 999px;
  overflow: hidden;
  background: #08080c;
}

.meter-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  animation: load-pulse 2.4s ease-in-out infinite;
}

@keyframes load-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

.meter-caption {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.quotes {
  border-top: 1px dashed var(--line);
  padding-top: 1rem;
}

.marquee-outer {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 1rem;
}

.marquee-inner {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 22s linear infinite;
  font-family: "Press Start 2P", cursive;
  font-size: 0.45rem;
  color: var(--pink);
}

@keyframes scroll {
  to {
    transform: translateX(-100%);
  }
}

.facts {
  list-style: none;
  text-align: left;
  display: grid;
  gap: 0.65rem;
}

.facts li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 1.4rem;
  position: relative;
}

.facts li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--green);
}

.facts strong {
  color: var(--text);
}

.cabinet-bottom {
  padding: 0.85rem 1rem;
  border-top: 2px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.side-note {
  width: min(520px, 94vw);
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
}

.side-note span {
  color: var(--yellow);
}

.side-note-warn {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 0, 0.35);
  border-radius: 0.75rem;
  background: rgba(255, 255, 0, 0.04);
  text-align: left;
}

.side-note-warn strong {
  color: var(--green);
}

@media (min-width: 720px) {
  .page {
    padding-top: 3rem;
  }
}
