* { margin:0; padding:0; box-sizing:border-box; }
body {
  background: #050510;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Press Start 2P', monospace;
  overflow: hidden;
}
#game-wrapper {
  position: relative;
  width: 1200px;
  height: 800px;
  max-width: 100vw;
  max-height: calc(100vh - 40px);
  aspect-ratio: 3/2;
}
canvas {
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: pixelated;
}
#ui-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#ui-overlay > * {
  pointer-events: auto;
}
footer {
  margin-top: 8px;
  text-align: center;
}
footer a {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: #9933CC;
  text-decoration: none;
}
footer a:hover { color: #CC66FF; }