:root {
    /* Color palette */
    --bg-primary: #0a0e27;
    --bg-secondary: #131722;
    --bg-tertiary: #1e222d;
    --bg-card: #1a1e2a;
    
    /* Text colors */
    --text-primary: #d1d4dc;
    --text-secondary: #787b86;
    --text-muted: #5d6069;
    --text-on-accent: #ffffff;
    
    /* Accent colors */
    --accent-primary: #2962ff;
    --accent-primary-hover: #1a56f0;
    --accent-success: #26a69a;
    --accent-danger: #ef5350;
    --accent-warning: #ff9800;
    --accent-info: #2196f3;
    
    /* Border colors */
    --border-color: #2a2e39;
    --border-light: rgba(42, 46, 57, 0.5);
    --border-primary: rgba(41, 98, 255, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 8px 30px rgba(0, 0, 0, 0.4);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    
    /* Z-index layers */
    --z-dropdown: 1000;
    --z-modal: 2000;
    --z-tooltip: 3000;
    --z-toast: 4000;
    
    /* Font sizes */
    --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;
    
    /* Font weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Animation durations */
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
}