/* WikiScout Design System - SellAux Style */

:root {
  /* Primary - Blue like SellAux */
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --primary-alpha-10: rgba(59, 130, 246, 0.1);
  --primary-alpha-20: rgba(59, 130, 246, 0.2);
  
  /* Success - Teal/Cyan like SellAux */
  --success: #10b981;
  --success-light: #34d399;
  --success-alpha-10: rgba(16, 185, 129, 0.1);
  
  /* Warning - Orange */
  --warning: #f97316;
  --warning-light: #fb923c;
  --warning-alpha-10: rgba(249, 115, 22, 0.1);
  
  /* Danger - Red */
  --danger: #ef4444;
  --danger-light: #f87171;
  --danger-alpha-10: rgba(239, 68, 68, 0.1);
  
  /* Purple/Violet */
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-alpha-10: rgba(139, 92, 246, 0.1);
  
  /* Cyan/Info */
  --cyan: #06b6d4;
  --cyan-light: #22d3ee;
  --cyan-alpha-10: rgba(6, 182, 212, 0.1);
  
  /* Backgrounds - SellAux dark theme */
  --bg-body: #070709;
  --bg-primary: #0a0a0e;
  --bg-secondary: #0d0d12;
  --bg-card: #101016;
  --bg-card-hover: #16161e;
  --bg-elevated: #1a1a24;
  --bg-input: #0d0d12;
  
  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-disabled: #52525b;
  
  /* Borders - Very subtle */
  --border-color: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-focus: var(--primary);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 0.75rem;
  --space-lg: 1rem;
  --space-xl: 1.25rem;
  --space-2xl: 1.5rem;
  --space-3xl: 2rem;
  --space-4xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: 0.875rem;
  --text-lg: 1rem;
  --text-xl: 1.125rem;
  --text-2xl: 1.25rem;
  --text-3xl: 1.5rem;
  --text-4xl: 2rem;
  
  /* Line height */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  
  /* Transitions */
  --transition-fast: 100ms ease;
  --transition-base: 150ms ease;
  --transition-slow: 250ms ease;
  
  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-toast: 400;
  
  /* Layout */
  --sidebar-width: 220px;
  --header-height: 56px;
  --mobile-nav-height: 70px;
}
