:root {
  /* Background colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-hover: #e2e8f0;
  --bg-active: #cbd5e1;
  
  /* Accent colors */
  --accent-primary: #e30613;
  --accent-primary-hover: #c60510;
  --accent-primary-light: rgba(227, 6, 19, 0.08);
  --accent-secondary: #ff4d5a;
  --accent-success: #16a34a;
  --accent-success-light: rgba(22, 163, 74, 0.1);
  --accent-warning: #ea580c;
  --accent-warning-light: rgba(234, 88, 12, 0.1);
  --accent-danger: #dc2626;
  --accent-danger-light: rgba(220, 38, 38, 0.1);
  --accent-info: #2563eb;
  --accent-info-light: rgba(37, 99, 235, 0.1);
  
  /* Gradients */
  --gradient-red: linear-gradient(135deg, #e30613 0%, #ff4d5a 100%);
  --gradient-red-hover: linear-gradient(135deg, #c60510 0%, #e30613 100%);
  --gradient-light-red: linear-gradient(135deg, rgba(227, 6, 19, 0.02) 0%, rgba(255, 77, 90, 0.06) 100%);
  
  /* Text colors */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-tertiary: #64748b;
  --text-inverse: #ffffff;
  
  /* Border */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow-primary: 0 0 15px rgba(227, 6, 19, 0.15);
  --shadow-glow-success: 0 0 15px rgba(22, 163, 74, 0.15);
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  
  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  
  /* Sidebar */
  --sidebar-width: 260px;
  --sidebar-collapsed-width: 72px;
  --header-height: 64px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Z-index */
  --z-sidebar: 100;
  --z-header: 90;
  --z-modal: 200;
  --z-toast: 300;
  --z-tooltip: 400;
}
