/* style.css — full-bleed night canvas, zero chrome. Everything visual is drawn
   in the canvas itself (BUILD-SPEC: no webfonts, no external requests). */

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #070b16;                 /* --sky-top; matches the letterbox fill */
  /* perceived speed: never let the browser hold a tap for a double-tap */
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
}

#game {
  display: block;
  width: 100vw;
  height: 100vh;
  /* HUD safe-area handled in-canvas; the goal never enters a notch */
}
