/* Game page only — kept fully separate from the portfolio site styling. */
html, body {
  margin: 0;
  padding: 0;
  background: #000;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#game {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  touch-action: manipulation;
}

#game canvas {
  display: block;
  touch-action: manipulation;
}
