/* Charte des ecrans du jeu (CONCEPTION/MFD-CHARTE.md) : fond sombre,
   turquoise pour la structure. Feuille externe et non pas style="" :
   la CSP de l'hebergement est style-src 'self', sans 'unsafe-inline'. */
:root {
  --bg: #05090c;
  --teal: #4fd8d0;
  --text: #cfe3e6;
  --dim: #6d8287;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  padding: 16px;
}
main { text-align: center; }
h1 {
  margin: 0;
  font-size: clamp(28px, 8vw, 54px);
  letter-spacing: 0.22em;
  color: var(--teal);
  text-shadow: 0 0 18px rgba(79, 216, 208, 0.35);
}
.sub { margin: 10px 0 0; letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px; }
.wait { margin-top: 34px; color: var(--dim); font-size: 14px; }
