/* Froggy's Quest — layout. The game renders entirely to one canvas.
   object-fit: contain letterboxes the fixed 960x624 game surface so it
   scales identically on any window size, desktop or mobile. */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #0a0d09;
  overflow: hidden;
}

#stage {
  width: 100vw;
  height: 100vh;
}

#game {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  background: #0d0f0a;
  touch-action: none; /* virtual joystick needs raw pointer moves; no browser pan/zoom */
}
