/* Data Heroes — shared styles.
   All in-game chrome (HUD, menus, overlays) is drawn on the p5 canvas by GameShell,
   so this file only handles the page shell and the hub. */

:root {
  --mx-bright: #00ff41;
  --mx-medium: #00cc33;
  --mx-dark: #008822;
  --mx-dim: #004411;
  --bg: #000;
}

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

html, body {
  width: 100%;
  height: 100%;
  background: var(--bg);
  color: var(--mx-bright);
  font-family: 'Courier New', monospace;
  overflow: hidden;
}

canvas { display: block; }

/* Loading flash shown before p5 boots */
.loading {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mx-bright);
  font-size: 24px;
  letter-spacing: 2px;
  text-shadow: 0 0 12px var(--mx-bright);
}
