/* Arcade floor landing page — CRT / neon vibe */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at top,    #2a0a3a 0%, #0a0015 60%, #000 100%),
    #000;
  color: #e0d8ff;
  font-family: 'Courier New', 'Courier', monospace;
  overflow-x: hidden;
}

/* ── Marquee ───────────────────────────────────────────────────────────── */
.marquee {
  text-align: center;
  padding: 40px 20px 30px;
  border-bottom: 2px solid #44005a;
  background:
    linear-gradient(180deg, #1a0030 0%, #08001a 100%);
  box-shadow: 0 0 60px #a020ff33 inset;
  position: relative;
}

.marquee-lights {
  position: absolute; left: 0; right: 0; top: 4px;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #ffd633 0 16px,
    #44005a 16px 32px
  );
  animation: marqueeRun 1.6s steps(16) infinite;
  opacity: 0.7;
}

@keyframes marqueeRun {
  from { background-position: 0 0; }
  to   { background-position: 32px 0; }
}

.marquee h1 {
  font-size: clamp(32px, 7vw, 72px);
  letter-spacing: 6px;
  font-weight: 900;
  color: #ff3cf0;
  text-shadow:
    0 0 8px  #ff3cf0,
    0 0 16px #ff3cf0aa,
    0 0 40px #ff3cf055,
    3px 3px 0 #5a005a;
}

.marquee .gold {
  color: #ffd633;
  text-shadow:
    0 0 10px #ffd633,
    0 0 24px #ffaa00,
    3px 3px 0 #553300;
}

.marquee .tagline {
  margin-top: 14px;
  color: #9ff;
  font-size: 13px;
  letter-spacing: 4px;
  text-shadow: 0 0 6px #44eeff;
}

/* ── Cabinet row ───────────────────────────────────────────────────────── */
.floor {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  padding: 50px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.cabinet {
  text-decoration: none;
  color: inherit;
  width: 320px;
  background: linear-gradient(180deg, #150024 0%, #000 100%);
  border: 2px solid #6a00aa;
  border-radius: 6px 6px 16px 16px;
  box-shadow:
    0 0 24px #aa00ff44,
    inset 0 0 20px #00000080,
    0 8px 0 #2a0040;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cabinet:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 40px #ff3cf0aa,
    inset 0 0 20px #00000080,
    0 12px 0 #2a0040;
  border-color: #ff3cf0;
}

/* CRT screen */
.screen {
  position: relative;
  background: #000;
  margin: 16px;
  border: 4px solid #1a0a2a;
  border-radius: 14px;
  height: 260px;
  overflow: hidden;
  box-shadow:
    inset 0 0 30px #00000088,
    inset 0 0 6px #ff3cf044;
}

.scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0)   0px,
    rgba(0,0,0,0)   2px,
    rgba(0,0,0,0.18) 2px,
    rgba(0,0,0,0.18) 3px
  );
  pointer-events: none;
}

/* LAD screen */
.screen-lad { background: #0a0415; }
.ascii-art {
  color: #ff3cc0;
  font-size: 12px;
  line-height: 1.1;
  white-space: pre;
  text-align: center;
  padding-top: 60px;
  text-shadow: 0 0 6px #ff3cf088;
  font-weight: bold;
}

/* Raiden screen — canvas fills it */
.screen-raiden { background: #050015; }
#raidenPreview { display: block; width: 100%; height: 100%; image-rendering: pixelated; }

/* Plaque */
.plaque {
  padding: 14px 18px 20px;
  border-top: 2px solid #44005a;
  background: linear-gradient(180deg, #0a0015 0%, #000 100%);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plaque h2 {
  font-size: 20px;
  color: #ffd633;
  letter-spacing: 3px;
  text-shadow: 0 0 8px #ffaa0088;
}

.plaque p {
  font-size: 12px;
  line-height: 1.5;
  color: #ccbbff;
}

.plaque .meta {
  font-size: 10px;
  color: #44eeff;
  letter-spacing: 2px;
  text-shadow: 0 0 4px #44eeff55;
}

.play-btn {
  margin-top: auto;
  display: inline-block;
  align-self: flex-start;
  padding: 6px 16px;
  background: #ff3cf0;
  color: #000;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 14px;
  border-radius: 3px;
  box-shadow: 0 0 12px #ff3cf0aa;
  transition: all 0.1s;
}

.cabinet:hover .play-btn {
  background: #ffd633;
  box-shadow: 0 0 20px #ffd633;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 20px;
  font-size: 11px;
  letter-spacing: 4px;
  color: #6a4a8a;
  border-top: 1px solid #1a0030;
}

.blink {
  color: #ff3cf0;
  animation: blink 1.2s step-end infinite;
  margin: 0 8px;
}

@keyframes blink {
  50% { opacity: 0; }
}
