*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #111;
  color: #ccc;
  font-family: 'Courier New', monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
  gap: 0.5rem;
}

h1 {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: #4fc3f7;
  text-transform: uppercase;
}

#game-wrap {
  position: relative;
  box-shadow: 0 0 28px rgba(79, 195, 247, 0.15);
  border: 1px solid #222;
  touch-action: none;
}

canvas {
  display: block;
  image-rendering: pixelated;
  max-width: 100%;
}

#controls {
  font-size: 0.7rem;
  color: #555;
  text-align: center;
}
