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

body {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Courier New', monospace;
  overflow: hidden;
}

#game-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

#hud-canvas {
  display: block;
  width: 600px;
  height: 50px;
}

#game-canvas {
  display: block;
  width: 600px;
  height: 450px;
  cursor: none;
}
