* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050810;
  font-family: 'Press Start 2P', 'Courier New', monospace;
}
canvas {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
#controls {
  position: fixed;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: none;
}
a {
  color: #4A1A6B;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  text-decoration: none;
  pointer-events: all;
}
a:hover { color: #8B0000; }