/* Page d'attente — aucun style en ligne, pour que la CSP reste stricte
   (script-src 'self'; style-src 'self'; aucun 'unsafe-inline'). */
:root { --rouge: #C4203A; --fond: #f6f4f1; --texte: #22201f; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; display: flex; align-items: center;
       justify-content: center; background: var(--fond); color: var(--texte);
       font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
       padding: 16px; }
main { max-width: 32rem; text-align: center; }
h1 { color: var(--rouge); font-size: 1.75rem; margin: 0 0 .75rem; }
p { margin: .5rem 0; }
.petit { font-size: .9rem; opacity: .75; }
