:root {
    /* Colors */
    --primary-color: #050505;
    --secondary-color: #3b82f6;
    /* Brighter blue */
    --accent-color: #8b5cf6;
    /* Vivid purple */
    --dark-color: #121212;
    --light-color: #f8f9fa;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-color: #ffffff;
    --muted-color: #9ca3af;

    /* Gradients */
    --purple-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --royal-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --glass-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-logo: 'Zen Dots', sans-serif;
    --font-tagline: 'Lato', sans-serif;

    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;

    /* Borders */
    --border-light: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    /* Backgrounds */
    --bg-glass: rgba(18, 18, 18, 0.85);
    --bg-glass-light: rgba(255, 255, 255, 0.03);
    --bg-input: rgba(255, 255, 255, 0.05);

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
}