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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #05070f;
  color: #7dfcff;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

#game {
  display: block;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  touch-action: none;
}

#hud {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 32px;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(57, 248, 255, 0.6);
  pointer-events: none;
}

#hud span { opacity: 0.92; }
