/* Tema Nemo — override sobre OpenClaw */
:root,
[data-theme], 
[data-theme="claw"], 
[data-theme="knot"], 
[data-theme="dash"],
[data-theme="claw-dark"], 
[data-theme="knot-dark"], 
[data-theme="dash-dark"] {
  /* Paleta principal */
  --bg: #0f0f0f;
  --bg-2: #1a1a1a;
  --bg-3: #222222;
  --surface: #1a1a1a;
  --border: #2a2a2a;

  /* Acento → teal */
  --accent: #14b8a6;
  --primary: #14b8a6;
  --accent-soft: rgba(20, 184, 166, 0.12);

  /* Texto */
  --text: #f4f4f5;
  --text-muted: #71717a;
  --text-soft: #a1a1aa;

  /* Tipografía */
  --font-family: 'Inter', 'Geist', system-ui, sans-serif;
  --font-size-base: 14px;
}

/* Importar fuente */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body {
  font-family: var(--font-family) !important;
  background: var(--bg) !important;
}
