* { margin: 0; padding: 0; box-sizing: border-box; }
body { overflow: hidden; }
canvas#c { width: 100vw; height: 100vh; display: block; touch-action: none; }

#hud {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: #fff; font-family: monospace; font-size: 13px;
  text-shadow: 0 1px 4px #000; text-align: center; pointer-events: none;
  white-space: nowrap;
}

#modeLabel {
  position: fixed; top: 16px; right: 16px;
  color: #fff; font-family: monospace; font-size: 15px; font-weight: bold;
  background: rgba(0,0,0,0.45); padding: 6px 14px; border-radius: 5px;
}

/* ── Minimap ─────────────────────────────────────── */
#mmWrap {
  position: fixed; bottom: 20px; right: 20px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
#mm { display: block; }
