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

body {
  background: #1a1a2e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Press Start 2P', monospace;
}

#game-container {
  position: relative;
  border: 4px solid #FFA500;
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.4);
}

#gameCanvas {
  display: block;
  image-rendering: pixelated;
}

#controls {
  margin-top: 12px;
  color: #888;
  font-size: 11px;
  text-align: center;
  letter-spacing: 1px;
}
