* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: #0b0f14;
  color: #e6edf3;
  font: 14px/1.3 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

#game {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  background: #111821;
}

#hud {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  display: flex;
  gap: 12px;
}

#status { color: #f5c518; }
#stats  { color: #8b949e; }
