/* ============================================================
   TOMOBI — Thème Sombre (mode-sombre.css)
   ============================================================ */

:root,
[data-theme="dark"] {

  /* ── Couleur principale ── */
  --amber:        #F5A623;
  --amber-glow:   rgba(245, 166, 35, 0.15);
  --amber-gloww:  transparent;
  --border-hover: rgba(245, 166, 35, 0.45);
  --hero:         #222428;
  --text-header:  #F0EDE8;

  /* ── Surfaces ── */
  --bg:       #000000;
  --surface:  #111213;
  --surface2: #1A1B1E;
  --surface3: #222428;
  --panel-bg: #111213;

  /* ── Bordures ── */
  --border: rgba(255, 255, 255, 0.07);

  /* ── Typographie ── */
  --text:       #F0EDE8;
  --text-muted: #7A7875;
  --text-dim:   #4A4845;

  /* ── Header ── */
  --header-bg: rgba(10, 10, 10, 0.88);

  /* ── Ombres ── */
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);

  /* ── Arrondis ── */
  --radius:      16px;
  --radius-sm:   10px;
  --radius-pill: 999px;
}

[data-theme="dark"] body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9998;
}