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

body {
  overflow: hidden;
  background: #0a1f0a;
  font-family: 'Courier New', monospace;
  cursor: crosshair;
}

#pixelCanvas {
  display: block;
  width: 100vw;
  height: 100vh;
  image-rendering: pixelated;
}

#overlay {
  position: fixed;
  top: 24px;
  left: 0; right: 0;
  text-align: center;
  pointer-events: none;
  z-index: 10;
}

#overlay h1 {
  font-size: 2rem;
  color: #b8e945;
  text-shadow: 3px 3px 0 #1a3a0a, 0 0 20px rgba(184,233,69,0.5);
  letter-spacing: 4px;
}

.subtitle {
  margin-top: 8px;
  color: #7ab648;
  font-size: 0.85rem;
  text-shadow: 1px 1px 0 #0a1f0a;
}
