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

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
  font-family: 'Space Mono', monospace;
}

#game-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050508;
  overflow: hidden;
}

canvas {
  position: absolute;
  display: block;
  image-rendering: pixelated;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  aspect-ratio: 1 / 1; /* Matches 1200x1200 */
}

#bg-canvas {
  z-index: 1;
}

#game-canvas {
  z-index: 2;
  background: transparent;
}