/* ============================================================
   style.css — NeonBlast Shooting Game
   All visual chrome outside the canvas (body, container, fonts)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-deep:      #04040f;
  --neon-cyan:    #00f5ff;
  --neon-pink:    #ff2d78;
  --neon-yellow:  #ffe600;
  --neon-green:   #39ff14;
  --text-dim:     #8892b0;
  --font-game:    'Orbitron', monospace;
  --font-ui:      'Rajdhani', sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-deep);
  font-family: var(--font-ui);
  color: #fff;
}

/* ---------- Game Container ---------- */
#game-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game-canvas {
  display: block;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  touch-action: none;   /* prevent scroll/pinch on mobile */
}

/* ---------- Generic Overlay ---------- */
#overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* scenes manage their own interaction via canvas */
}

.hidden {
  display: none !important;
}
