/* ============================
   VOID BREACH — Global Styles
   ============================ */

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

html, body {
  width: 100%;
  height: 100%;
  /* Match the game's background so there's no flash on load */
  background: #080814;
  overflow: hidden;
  /* Prevent iOS rubber-band scroll that can interfere with touch */
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}

body {
  /* Needed to prevent any layout shift */
  display: block;
}

#gameCanvas {
  display: block;
  cursor: crosshair;
  /* True full-bleed — no borders or shadows */
  width: 100vw;
  height: 100vh;
  /* Prevent native touch gestures on the canvas */
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
