body {
  margin: 0;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #f0f0f0;
  font-family: monospace;
}

#game-container {
  position: relative;
}

canvas {
  background: #222;
  border: 4px solid #000;
  cursor: none; /* ocultamos el cursor real */
}

#hud {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 20px;
}
