/* Global styles */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif; }
a { text-decoration: none; }
button { cursor: pointer; }
/* Utility */
.center { display: flex; align-items: center; justify-content: center; }
.hidden { display:none !important; }
/* Colors */
:root {
  --bg: #0a0a0a;
  --fg: #fafafa;
  --muted: #a0a0a0;
  --accent: #00c2ff;
}
/* Debug toggle via URL ?debug=1 */
:root.debug .hotspot{ outline: 2px dashed rgba(0,0,0,.35); background: rgba(255,255,0,.12); }
