
:root {
    /* Brand Colors */
    --nexerve-bg-primary: #0a0a0f;
    --nexerve-bg-secondary: #12121a;
    --nexerve-bg-card: #1a1a25;
    --nexerve-bg-card-hover: #222230;
    
    /* Accent Colors */
    --nexerve-purple: #8b5cf6;
    --nexerve-purple-light: #a78bfa;
    --nexerve-purple-glow: rgba(139, 92, 246, 0.5);
    --nexerve-teal: #2dd4bf;
    --nexerve-teal-glow: rgba(45, 212, 191, 0.3);
    --nexerve-indigo: #6366f1;
    
    /* Text Colors */
    --nexerve-text: #ffffff;
    --nexerve-text-secondary: rgba(255, 255, 255, 0.7);
    --nexerve-text-muted: rgba(255, 255, 255, 0.5);
    
    /* Borders */
    --nexerve-border: rgba(255, 255, 255, 0.08);
    --nexerve-border-accent: rgba(139, 92, 246, 0.3);
    
    /* Gradients */
    --nexerve-gradient: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #2dd4bf 100%);
    --nexerve-gradient-purple: linear-gradient(135deg, #8b5cf6, #6366f1);
    --nexerve-gradient-card: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    
    /* Shadows */
    --nexerve-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --nexerve-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --nexerve-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --nexerve-shadow-glow: 0 4px 20px var(--nexerve-purple-glow);
    
    /* Border Radius */
    --nexerve-radius-sm: 8px;
    --nexerve-radius-md: 12px;
    --nexerve-radius-lg: 16px;
    --nexerve-radius-xl: 24px;
    --nexerve-radius-full: 9999px;
    
    /* Transitions */
    --nexerve-transition: 0.3s ease;
    --nexerve-transition-slow: 0.5s ease;
    
    /* Typography */
    --nexerve-font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --nexerve-font-mono: 'Space Mono', 'SF Mono', monospace;
}