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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

#game {
  display: block;
  width: 100%;
  height: 100%;
}

/* Canvas HUD handles its own positioning */
#hud-canvas {
  image-rendering: auto;
}

/* minimap styles handled in js/minimap.js */

#controls {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Racing Sans One', 'Impact', 'Arial Black', sans-serif;
  font-size: 13px;
  color: #fff;
  opacity: 0.35;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  pointer-events: none;
  letter-spacing: 2px;
}
