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

html, body {
  width: 100%;
  height: 100%;
  background: #05060a;
  overflow: hidden;
  font-family: 'Trebuchet MS', 'Segoe UI', system-ui, sans-serif;
  color: #e8e6df;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#stage {
  position: fixed;
  inset: 0;
  display: block;
  background: #05060a;
}

#game {
  display: block;
  width: 100%;
  height: 100%;
  /* Crisp pixels for pixel-art */
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  /* Cursor is toggled in JS: hidden only during active play (custom crosshair),
     visible on menus/overlays. Default shown here. */
  cursor: default;
  touch-action: none;
}
