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

body {
  background: #141e33;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: system-ui, sans-serif;
}

#game-container {
  position: relative;
}

#game-canvas {
  display: block;
  background: #1a2744;
  border: 2px solid #2a3a5c;
  image-rendering: pixelated;
}

#hud {
  position: absolute;
  top: 8px;
  left: 8px;
  color: #e94560;
  font-size: 14px;
  font-weight: bold;
  pointer-events: none;
}
