/* ===========================
   base.css
   =========================== */

:root{ 
  --bg:#0f1724;
  --card:#0b1220;
  --muted:#9aa4b2;
  --accent:#6ee7b7;
  --accent-2:#60a5fa;
  --glass: rgba(255,255,255,0.03);
  --radius:12px;
  --max-width:1200px;
  --gap:18px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  padding: 24px;
  background: linear-gradient(180deg,#07101a 0%, #081426 100%);
  color: #e6eef6;
  font-family: var(--font-sans);
  display: flex;
  justify-content: center;
}

/* Titres principaux de page en blanc */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
}