@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

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

body {
  background: #04040c;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Press Start 2P', monospace;
  overflow: hidden;
}

#gameCanvas {
  display: block;
  cursor: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  box-shadow: 0 0 60px rgba(233, 69, 96, 0.25), 0 0 120px rgba(233, 69, 96, 0.1);
  border: 1px solid #1a1a3a;
}
