@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Orbitron:wght@400;700;900&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #040410; display: flex; justify-content: center; align-items: center;
  min-height: 100vh; font-family: 'Press Start 2P', monospace; overflow: hidden; image-rendering: pixelated;
}
#game-wrapper {
  position: relative; border: 3px solid #ff66b2;
  box-shadow: 0 0 15px #ff66b2, 0 0 40px rgba(255, 102, 178, 0.3), inset 0 0 20px rgba(255, 102, 178, 0.08);
}
#game-canvas { display: block; background: #0c0c24; cursor: crosshair; }
#hud {
  position: absolute; top: 0; left: 0; right: 0; display: flex; justify-content: space-between;
  align-items: center; padding: 8px 12px; background: rgba(0, 0, 0, 0.8);
  border-bottom: 2px solid #ff66b2; font-size: 10px; color: #fff;
  text-shadow: 0 0 6px rgba(255, 102, 178, 0.5); z-index: 10;
}
#hud-left, #hud-right, #hud-center { display: flex; gap: 14px; align-items: center; }
#hud-score { color: #ffdd00; }
#hud-lives { color: #ff0044; }
#start-screen, #game-over {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; align-items: center; background: rgba(6, 6, 20, 0.94); z-index: 20;
}
.title-text { font-size: 32px; margin-bottom: 10px; text-align: center; line-height: 1.5; }
.neon-color { color: #ff66b2; text-shadow: 0 0 10px #ff66b2, 0 0 30px rgba(255, 102, 178, 0.6); }
.subtitle { color: #00eeff; font-size: 12px; margin-bottom: 24px; text-shadow: 0 0 15px rgba(0, 238, 255, 0.5); text-align: center;}
.controls-info { text-align: center; margin-bottom: 24px; color: #889; font-size: 12px; line-height: 2; }
.controls-info kbd { background: #14142a; padding: 4px 8px; border: 2px solid #445; color: #dde; }
button {
  padding: 14px 36px; font-family: 'Press Start 2P', monospace; font-size: 14px; color: #fff;
  background: linear-gradient(135deg, #ff66b2, #ff6600); border: 2px solid #ff66b2; cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 102, 178, 0.3); text-transform: uppercase;
}
button:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 102, 178, 0.5); }
.game-over-title { font-size: 32px; color: #ff0044; margin-bottom: 16px; text-shadow: 0 0 15px #ff0044; }
.final-score { color: #ffdd00; font-size: 40px; margin-bottom: 24px; text-shadow: 0 0 20px rgba(255, 221, 0, 0.5); }
