/* ============================================================
   AS13 GAMES — Arcade Landing Page
   ============================================================ */

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

:root {
  --neon-yellow: #ffe600;
  --neon-orange: #ff6b00;
  --neon-pink:   #ff2d78;
  --neon-cyan:   #00f5ff;
  --neon-green:  #39ff14;
  --cab-wood:    #2a1a08;
  --cab-dark:    #1a0f04;
  --cab-trim:    #c8860a;
  --screen-bg:   #050a10;
  --bg-dark:     #05080f;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Starfield canvas ── */
#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Header ── */
header {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 0 2rem;
}

.marquee-bar {
  background: var(--neon-yellow);
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 3px solid var(--neon-orange);
}

.marquee-text {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 2px;
  animation: marquee 18s linear infinite;
  padding-left: 100%;
}

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

.site-title {
  margin-top: 2.5rem;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.2rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow:
    0 0 10px var(--neon-cyan),
    0 0 30px var(--neon-cyan),
    0 0 60px var(--neon-cyan);
}

.title-a  { color: var(--neon-cyan); }
.title-s  { color: var(--neon-cyan); }
.title-13 { color: var(--neon-yellow); }
.title-games {
  display: block;
  font-size: clamp(1.4rem, 5vw, 3.8rem);
  color: var(--neon-orange);
  text-shadow:
    0 0 10px var(--neon-orange),
    0 0 30px var(--neon-orange),
    0 0 60px #ff2d00;
  letter-spacing: 0.25em;
  margin-top: 0.15em;
}

.tagline {
  margin-top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--neon-green);
  animation: blink 1.4s step-end infinite;
}

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

/* ============================================================
   ARCADE CABINET  —  Clean Redesign
   ============================================================ */

.cabinet-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 1rem 5rem;
}

.cabinet {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(480px, 92vw);
  position: relative;
  /* single, clean glow */
  filter: drop-shadow(0 0 36px rgba(0,245,255,0.35))
          drop-shadow(0 30px 50px rgba(0,0,0,0.9));
}

/* (side glow strips removed in redesign) */

/* ── MARQUEE ── */
.cab-marquee {
  width: 76%;
  background: #07070e;
  border: 3px solid var(--neon-cyan);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  padding: 14px 20px 10px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow:
    0 0 22px rgba(0,245,255,0.55),
    0 0 50px rgba(0,245,255,0.1),
    inset 0 0 40px rgba(0,245,255,0.04);
}

.cab-marquee::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,0.18) 3px, rgba(0,0,0,0.18) 4px
  );
  pointer-events: none;
}

.cab-marquee-eyebrow {
  position: relative;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.38rem;
  color: rgba(0,245,255,0.45);
  letter-spacing: 5px;
  margin-bottom: 6px;
}

.cab-marquee-title {
  position: relative;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(0.72rem, 2.6vw, 1.1rem);
  color: var(--neon-yellow);
  text-shadow:
    0 0 8px var(--neon-yellow),
    0 0 22px var(--neon-orange),
    0 0 48px rgba(255,140,0,0.3);
  letter-spacing: 0.1em;
  transition: all 0.4s ease;
}

/* Running chase lights */
.cab-chase {
  position: relative;
  margin-top: 10px;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--neon-yellow) 0px, var(--neon-yellow) 5px,
    transparent       5px, transparent      12px
  );
  background-size: 12px 100%;
  animation: chase 0.22s linear infinite;
  border-radius: 3px;
  opacity: 0.85;
}

@keyframes chase {
  from { background-position: 0 0; }
  to   { background-position: 12px 0; }
}

/* ── SCREEN HOUSING ── */
.cab-body {
  width: 100%;
  background: #07070e;
  border: 3px solid var(--neon-cyan);
  border-top: 2px solid rgba(0,245,255,0.3);
  padding: 16px;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 28px rgba(0,245,255,0.28),
    inset 0 0 60px rgba(0,0,0,0.6);
}

.cab-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 4px,
    rgba(255,255,255,0.007) 4px, rgba(255,255,255,0.007) 5px
  );
  pointer-events: none;
}

/* ── CRT SCREEN ── */
.cab-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #000;
  border: 5px solid #05050d;
  border-radius: 10px;
  overflow: hidden;
  outline: 2px solid #111128;
  box-shadow:
    inset 0 0 80px rgba(0,0,0,0.95),
    0 0 28px rgba(0,245,255,0.2);
}

.crt-vignette {
  position: absolute;
  inset: 0;
  z-index: 22;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 50%,
    transparent 50%,
    rgba(0,0,0,0.5) 75%,
    rgba(0,0,0,0.88) 100%
  );
  border-radius: 10px;
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent, transparent 3px,
    rgba(0,0,0,0.22) 3px, rgba(0,0,0,0.22) 4px
  );
}

.crt-flicker {
  position: absolute;
  inset: 0;
  z-index: 19;
  pointer-events: none;
  animation: crt-flicker 9s infinite;
  background: rgba(0,245,255,0.01);
}

@keyframes crt-flicker {
  0%, 92%, 100% { opacity: 1; }
  93%  { opacity: 0.84; }
  95%  { opacity: 1; }
  97%  { opacity: 0.9; }
}

/* ── CAROUSEL ── */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
  transform: translateX(50px);
  cursor: pointer;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 5;
}

.slide.exit-left {
  opacity: 0;
  transform: translateX(-50px);
  z-index: 4;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 40%, transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 12px;
  z-index: 6;
}

.slide-label {
  font-size: clamp(0.42rem, 1.4vw, 0.6rem);
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
  letter-spacing: 2px;
}

/* ── ARROWS ── */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  background: rgba(0,0,0,0.6);
  border: 2px solid rgba(0,245,255,0.55);
  color: var(--neon-cyan);
  font-size: 0.8rem;
  width: 30px;
  height: 50px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow:hover {
  background: rgba(0,245,255,0.14);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 14px var(--neon-cyan);
}

.arrow-left  { left: 0;  border-left: none;  border-radius: 0 4px 4px 0; }
.arrow-right { right: 0; border-right: none; border-radius: 4px 0 0 4px; }

/* ── CONTROL PANEL — real CSS 3D ── */
.cab-panel-wrap {
  width: 100%;
  perspective: 500px;
  z-index: 1;
  position: relative;
}

.cab-panel {
  width: 100%;
  background: linear-gradient(
    to bottom,
    #1d1d34 0%,
    #131326 20%,
    #0d0d1c 55%,
    #060612 85%,
    #040410 100%
  );
  border: 2px solid #1a1a32;
  border-top: none;
  padding: 0 22px 16px;
  transform: rotateX(-11deg);
  transform-origin: top center;
  box-shadow:
    0 22px 0 #020207,
    0 26px 0 #010105,
    0 30px 38px rgba(0,0,0,0.95),
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 2px 10px rgba(0,245,255,0.04);
}

/* diagonal stripe texture */
.cab-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -58deg, transparent, transparent 9px,
    rgba(255,255,255,0.013) 9px, rgba(255,255,255,0.013) 10px
  );
  pointer-events: none;
}

/* top neon divider strip */
.cab-panel-strip {
  height: 3px;
  margin: 0 -22px 14px;
  background: linear-gradient(
    90deg,
    transparent 0%, var(--neon-pink) 22%,
    var(--neon-cyan) 50%, var(--neon-pink) 78%, transparent 100%
  );
  box-shadow: 0 0 10px var(--neon-pink), 0 0 26px rgba(255,45,120,0.22);
  animation: rail-shift 3.5s ease-in-out infinite;
}

@keyframes rail-shift {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 1; filter: brightness(1.35); }
}

.cab-panel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.cab-panel-info {
  justify-content: space-between;
  margin-bottom: 10px;
}

.cab-panel-controls {
  justify-content: space-between;
  margin-bottom: 10px;
}

.cab-panel-coin {
  justify-content: center;
  gap: 14px;
}

.panel-game-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(0.46rem, 1.5vw, 0.65rem);
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
  transition: all 0.4s ease;
  flex: 1;
}

.panel-dots { display: flex; gap: 6px; }

.panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #18182e;
  border: 2px solid #28284a;
  transition: all 0.25s ease;
  cursor: pointer;
}

.panel-dot.active {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink), 0 0 16px rgba(255,45,120,0.4);
}

/* ── JOYSTICK ── */
.joystick {
  position: relative;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.joy-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 14px;
  background: radial-gradient(ellipse at 50% 25%, #282840 0%, #0c0c1c 100%);
  border-radius: 50%;
  border: 2px solid #32324c;
  box-shadow: 0 0 8px rgba(0,245,255,0.12);
}

.joy-stick {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 28px;
  background: linear-gradient(180deg, #484860 0%, #1a1a2e 100%);
  border-radius: 6px 6px 3px 3px;
  border: 1px solid #42425a;
}

.joy-stick::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 38% 32%, #ff4488 0%, #aa0040 100%);
  border-radius: 50%;
  border: 2px solid #cc0055;
  box-shadow: 0 0 10px rgba(255,45,120,0.65);
}

/* ── PLAY BUTTON ── */
.play-btn {
  flex: 1;
  padding: 10px 14px;
  background: linear-gradient(180deg, #00bb00 0%, #006600 100%);
  border: 3px solid var(--neon-green);
  border-radius: 6px;
  color: #000;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.5rem, 1.6vw, 0.7rem);
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow:
    0 0 14px rgba(57,255,20,0.65),
    0 0 30px rgba(57,255,20,0.12),
    0 5px 0 #003300;
  transition: all 0.12s ease;
}

.play-btn:hover {
  background: linear-gradient(180deg, #33ee33 0%, #008800 100%);
  box-shadow:
    0 0 24px rgba(57,255,20,0.9),
    0 0 50px rgba(57,255,20,0.22),
    0 5px 0 #003300;
  transform: translateY(-2px);
}

.play-btn:active {
  transform: translateY(3px);
  box-shadow: 0 0 8px rgba(57,255,20,0.5);
}

.play-btn:disabled {
  background: linear-gradient(180deg, #252525 0%, #141414 100%);
  border-color: #3a3a3a;
  color: #555;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* ── ACTION BUTTONS ── */
.buttons-cluster {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-a, .btn-b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.44rem;
  border: 2px solid;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn-a:hover, .btn-b:hover { transform: translateY(-2px); }
.btn-a:active, .btn-b:active { transform: translateY(2px); }

.btn-a {
  background: radial-gradient(circle at 38% 32%, #ff5588 0%, #bb0033 100%);
  border-color: var(--neon-pink);
  color: #fff;
  box-shadow: 0 4px 0 #880020, 0 0 10px rgba(255,45,120,0.4);
}

.btn-b {
  background: radial-gradient(circle at 38% 32%, #4499ff 0%, #0033bb 100%);
  border-color: #4488ff;
  color: #fff;
  box-shadow: 0 4px 0 #001880, 0 0 10px rgba(68,153,255,0.4);
}

/* ── COIN ROW ── */
.coin-label {
  font-size: 0.36rem;
  color: var(--neon-yellow);
  letter-spacing: 2px;
  opacity: 0.6;
  animation: blink 1.4s step-end infinite;
}

.coin-slot-hole {
  display: inline-block;
  width: 26px;
  height: 5px;
  background: #000;
  border: 2px solid #242440;
  border-radius: 3px;
}

.credit-display {
  font-size: 0.34rem;
  color: var(--neon-orange);
  opacity: 0.45;
  letter-spacing: 1px;
}

/* ── BASE & LEGS ── */
.cab-base {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 60%;
  padding-top: 5px;
}

.cab-leg {
  width: 22px;
  height: 36px;
  background: linear-gradient(180deg, #131320 0%, #060610 100%);
  border: 2px solid #191928;
  border-top: none;
  border-radius: 0 0 8px 8px;
  position: relative;
}

.cab-leg::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #484860 0%, #161622 100%);
  border: 1px solid #303044;
}

.joy-stick::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 38% 32%, #ff4488 0%, #aa0044 100%);
  border-radius: 50%;
  border: 2px solid #cc0055;
  box-shadow: 0 0 8px rgba(255,45,120,0.5);
}

/* Play button */
.play-btn {
  flex: 1;
  padding: 10px 16px;
  background: linear-gradient(180deg, #00dd00 0%, #008800 100%);
  border: 3px solid var(--neon-green);
  border-radius: 6px;
  color: #000;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.55rem, 1.8vw, 0.75rem);
  cursor: pointer;
  text-transform: uppercase;
  box-shadow:
    0 0 14px rgba(57,255,20,0.7),
    0 0 28px rgba(57,255,20,0.2),
    0 4px 0 #005500;
  transition: all 0.15s ease;
  letter-spacing: 1px;
}

.play-btn:hover {
  background: linear-gradient(180deg, #44ff44 0%, #00aa00 100%);
  box-shadow:
    0 0 24px rgba(57,255,20,1),
    0 0 50px rgba(57,255,20,0.3),
    0 4px 0 #005500;
  transform: translateY(-2px);
}

.play-btn:active {
  transform: translateY(2px);
  box-shadow: 0 0 8px rgba(57,255,20,0.5), 0 0 0 #005500;
}

/* Button cluster */
.buttons-cluster {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-a, .btn-b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: bold;
  border: 2px solid;
  cursor: pointer;
  box-shadow: 0 4px 0;
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn-a:hover, .btn-b:hover { transform: translateY(-2px); }
.btn-a:active, .btn-b:active { transform: translateY(2px); }

.btn-a {
  background: radial-gradient(circle at 38% 32%, #ff5588 0%, #cc0033 100%);
  border-color: var(--neon-pink);
  color: #fff;
  box-shadow: 0 4px 0 #880022, 0 0 10px rgba(255,45,120,0.4);
}

.btn-b {
  background: radial-gradient(circle at 38% 32%, #44aaff 0%, #0044cc 100%);
  border-color: #4488ff;
  color: #fff;
  box-shadow: 0 4px 0 #002288, 0 0 10px rgba(68,136,255,0.4);
}

/* Coin slot */
.coin-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.coin-slot-label {
  font-size: 0.38rem;
  color: var(--neon-yellow);
  letter-spacing: 2px;
  opacity: 0.75;
  animation: blink 1.4s step-end infinite;
}

.coin-slot-hole {
  width: 26px;
  height: 5px;
  background: #000;
  border: 2px solid #333;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.8);
}

.credit-display {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.35rem;
  color: #ff8800;
  letter-spacing: 1px;
  opacity: 0.6;
}

/* ── Cabinet legs ── */
.cab-legs {
  display: flex;
  justify-content: space-between;
  width: 82%;
}

.leg {
  width: 20px;
  height: 34px;
  background: linear-gradient(180deg, #1a1a2e 0%, #0a0a12 100%);
  border: 2px solid #252535;
  border-top: none;
  border-radius: 0 0 6px 6px;
  position: relative;
}

/* Chrome bolt on each leg */
.leg::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #666 0%, #222 100%);
  border: 1px solid #444;
}

/* ============================================================
   GAMES GRID
   ============================================================ */

.games-grid-section {
  position: relative;
  z-index: 10;
  padding: 2rem 1.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: var(--neon-pink);
  text-shadow: 0 0 12px var(--neon-pink);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 2rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.game-card {
  background: linear-gradient(135deg, #0e0a1e 0%, #1a0e30 100%);
  border: 2px solid #333;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  display: block;
}

.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--neon-cyan);
  box-shadow:
    0 0 20px rgba(0,245,255,0.4),
    0 12px 30px rgba(0,0,0,0.6);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-img img {
  transform: scale(1.08);
}

.game-card-img::after {
  content: '► PLAY';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.85rem;
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-card-img::after {
  opacity: 1;
}

.game-card-body {
  padding: 16px;
}

.game-card-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(0.6rem, 1.5vw, 0.8rem);
  color: var(--neon-yellow);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.game-card-desc {
  font-size: 0.45rem;
  color: #aaa;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.game-card-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  background: rgba(0,245,255,0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 3px;
  font-size: 0.4rem;
  color: var(--neon-cyan);
  letter-spacing: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #1a1a2e;
}

.footer-text {
  font-size: 0.45rem;
  color: #555;
  letter-spacing: 2px;
}

.footer-sub {
  margin-top: 8px;
  font-size: 0.4rem;
  color: #333;
}

/* ============================================================
   COMING SOON — Carousel slide
   ============================================================ */

.slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    135deg,
    #0a0515 0px,
    #0a0515 20px,
    #0d0820 20px,
    #0d0820 40px
  );
}

.slide-placeholder-gfx {
  width: 80px;
  height: 80px;
  border: 3px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: qs-pulse 2s ease-in-out infinite;
  margin-bottom: 16px;
}

.slide-qs {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #444;
}

@keyframes qs-pulse {
  0%, 100% { border-color: #333; box-shadow: none; }
  50%       { border-color: var(--neon-pink); box-shadow: 0 0 16px var(--neon-pink); }
}

.coming-soon-badge-screen {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.5rem, 1.8vw, 0.8rem);
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
  letter-spacing: 4px;
  animation: blink 1.1s step-end infinite;
}

/* ── Disabled play button ── */
.play-btn:disabled {
  background: linear-gradient(180deg, #333 0%, #222 100%);
  border-color: #444;
  color: #777;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* ============================================================
   COMING SOON — Grid cards
   ============================================================ */

.game-card-soon {
  cursor: default;
  opacity: 0.75;
  border-color: #2a2a2a;
}

.game-card-soon:hover {
  transform: none;
  border-color: var(--neon-pink);
  box-shadow: 0 0 16px rgba(255, 45, 120, 0.25);
}

.game-card-img-soon {
  background: repeating-linear-gradient(
    135deg,
    #0a0515 0px,
    #0a0515 16px,
    #0d0820 16px,
    #0d0820 32px
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soon-placeholder-art {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #2a2a2a;
  user-select: none;
}

.soon-overlay-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.5rem, 1.4vw, 0.7rem);
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
  letter-spacing: 3px;
}

/* hide the hover play overlay on coming soon cards */
.game-card-img-soon::after { display: none; }

.game-card-tag-soon {
  border-color: var(--neon-pink) !important;
  color: var(--neon-pink) !important;
  background: rgba(255, 45, 120, 0.08) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 480px) {
  .cab-panel {
    padding: 10px 12px 14px;
  }
  .joystick, .buttons-cluster {
    display: none;
  }
  .play-btn {
    width: 100%;
  }
}
