/* Stratos theme - slate navy with warm amber accents */
:root {
  --bg: #0d0f14;
  --surface: #141720;
  --text-primary: #f0ede8;
  --text-secondary: #8a8fa8;
  --accent: #c8883a;
  --accent-warm: #e8a84f;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
