/* Arcana News AI - Design Tokens */
:root {
  /* Backgrounds */
  --bg-primary: #0f0f1a;
  --bg-secondary: #1a1a2e;
  --bg-tertiary: #242438;
  --bg-card: #1e1e32;
  --bg-sidebar: #16162a;
  
  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b80;
  
  /* Accents */
  --accent-primary: #4f46e5;
  --accent-secondary: #7c3aed;
  --accent-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  
  /* Status */
  --positive: #10b981;
  --negative: #ef4444;
  --warning: #f59e0b;
  
  /* Chart colors */
  --chart-blue: #3b82f6;
  --chart-purple: #8b5cf6;
  --chart-fill: rgba(79, 70, 229, 0.3);
  
  /* Spacing */
  --sidebar-width: 240px;
  --sidebar-width-mobile: 64px;
  --header-height: 64px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --touch-min: 44px;
  
  /* Shadows */
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
}
