/* Atlassian Williams Racing — Race Mode (iPad, offline) */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b0b0f;            /* letterbox color around the 16:9 stage */
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;            /* we handle all touch ourselves */
  overscroll-behavior: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#stage {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The canvas is sized in JS to a 16:9 box that fits the screen. */
#game {
  display: block;
  background: #ffffff;           /* confluence whiteboard white */
  image-rendering: pixelated;    /* crisp pixel-art scaling */
  image-rendering: crisp-edges;
  touch-action: none;
}
