/* ===== Typography & base ===== */
@import url('https://fonts.googleapis.com/css2?family=VT323&family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body {
  width: 100%; height: 100%; overflow: hidden;
  background: #000; color: #cfe;
  font-family: 'Share Tech Mono', monospace;
  user-select: none; -webkit-user-select: none;
  touch-action: none;
}
#game {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  background: #000;
  overflow: hidden;
}
canvas#world {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  image-rendering: pixelated;
}

/* Generic helpers */
.center { text-align: center; }
.small { font-size: 11px; opacity: 0.7; }
.hide { display: none !important; }

@keyframes blink { 50% { opacity: 0.3; } }
