/* =====================================================================
   Stick Runner — fullscreen 3D theme.
   There is no page: the canvas always fills the entire window edge to
   edge (true 16:9 or 21:9 or whatever you have), and the whole game —
   sky, road, stickman, menus, HUD — is painted into it at real pixel
   density. base.css is linked for house consistency but this page
   deliberately uses none of its chrome.
   ===================================================================== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #69bbee;             /* matches the in-canvas noon sky */
  overflow: hidden;
  touch-action: none;               /* swipes steer, they don't scroll */
  -webkit-user-select: none; user-select: none;
  -webkit-tap-highlight-color: transparent;
}
#screen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  outline: none;
  cursor: default;
}
