/* =====================================================================
   Stick Fighter — fullscreen cabinet theme.
   There is no page: just a black window and one canvas scaled to fill
   it. The canvas backing store is sized to the true pixel density in
   JS, so graphics render smooth and clean at any window size. Every
   menu, button and HUD element you ever see is painted inside it.
   ===================================================================== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  touch-action: none;               /* drags steer, they don't scroll */
  -webkit-user-select: none; user-select: none;
}
#screen {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* dead-center letterbox */
  background: #000;
  outline: none;
}
