/* ========================================
   🎨 CSS VARIABLES
   ======================================== */

:root {
    /* 🔥 Primary Colors */
    --primary-color: #3182f6;
    --primary-hover: #2563eb;
    --primary-light: #dbeafe;
    
    /* 🔥 Text Colors */
    --text-color: #1a1a1a;
    --text-color-secondary: #666;
    --text-color-tertiary: #999;
    
    /* 🔥 Background Colors */
    --bg-color: #ffffff;
    --bg-secondary-color: #f1f3f5;
    --card-bg: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f3f4f6;
    
    /* 🔥 Border Colors */
    --border-color: #e9ecef;
    --border-color-light: #f1f3f5;
    --border-color-dark: #dee2e6;
    --border-color-button: #dbdfe6;
    --border-default: #e2e8f0;
    
    /* 🔥 Shadow Colors */
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-color-light: rgba(0, 0, 0, 0.05);
    --shadow-color-dark: rgba(0, 0, 0, 0.2);
    
    /* 🔥 Status Colors */
    --success-color: #22c55e;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    
    /* 🔥 Status Light Colors */
    --success-light: #dcfce7;
    --error-light: #fef2f2;
    --warning-light: #fffbeb;
    --info-light: #dbeafe;
    
    /* 🔥 Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    
    /* 🔥 Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    
    /* 🔥 Font Sizes */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    
    /* 🔥 Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* 🔥 Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;
    
    /* 🔥 Z-Index */
    --z-dropdown: 100;
    --z-modal: 1000;
    --z-tooltip: 1100;
    --z-toast: 1200;
}

/* 🔥 Dark Mode Variables */
:root.dark-mode {
    --text-color: #e9ecef;
    --text-color-secondary: #adb5bd;
    --text-color-tertiary: #6c757d;
    
  --bg-color: #1a1a1a;
    --bg-secondary-color: #2d2d2d;
    --card-bg: #2d2d2d;
    --card-bg-secondary: #333;
    --border-color: #404040;
    --border-color-light: #333333;
    --border-color-dark: #555555;
    --border-color-button: #666;
    --border-default: #404040;
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #333;
    --border-default: #404040;

    --shadow-color: rgba(0, 0, 0, 0.3);
    --shadow-color-light: rgba(0, 0, 0, 0.2);
    --shadow-color-dark: rgba(0, 0, 0, 0.5);
}

/* 🔥 Responsive Breakpoints */
@custom-media --mobile (max-width: 768px);
@custom-media --tablet (max-width: 1024px);
@custom-media --desktop (min-width: 1025px); 