/* style.css — page styling, canvas centering, no game UI (that's in Phaser) */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #0e1410;
  font-family: sans-serif;
  color: #fff;
  overflow: hidden;
}

#game-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game-container canvas {
  /* Phaser's Scale.FIT mode handles sizing; this just ensures no extra margin */
  display: block;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}
