/* Firework Command — dark sky so the additive fireworks pop,
   matching LoveStash's night palette. */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #1a0a24 0%, #0a0410 60%, #05020a 100%);
  touch-action: none;                 /* stop scroll/zoom on touch */
  -webkit-user-select: none;
  user-select: none;
}

#game {
  display: block;
  position: fixed;
  inset: 0;
  cursor: none;            /* the in-game reticle is drawn at the aim point */
}

.hint {
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  color: rgba(244, 233, 255, 0.5);
  font: 13px system-ui, sans-serif;
  pointer-events: none;
  z-index: 2;
}
