:root {
  --capace-orange: #FF6B1A;
  --bg: #f3efe6;
  --frame: #1a1a1a;
}

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

html, body {
  height: 100%;
  background: var(--frame);
  font-family: 'Press Start 2P', monospace;
  overflow: hidden;
  color: #f3efe6;
}

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

#game {
  background: var(--bg);
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  display: block;
  box-shadow: 0 0 0 2px var(--capace-orange), 0 20px 60px rgba(0,0,0,0.5);
}
