:root {
    /* Primary Colors */
    --primary-color: #7117f2;
    --primary-light: #9747ff;
    --primary-dark: #5a0dc7;
    --secondary-color: #64748b;
    --accent-color: #1e1f63;
    --accent-light: #2d2f8a;

    /* Text Colors */
    --text-dark: #0f172a;
    --text-light: #ffffff;
    --text-muted: #64748b;

    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --white: #ffffff;

    /* Accent Colors */
    --gold: #ffc857;
    --gold-light: #ffd885;
    --success: #10b981;
    --error: #ef4444;

    /* Gradients */
    --gradient: linear-gradient(135deg, #7117f2 0%, #1e1f63 100%);
    --gradient-animated: linear-gradient(135deg, #7117f2 0%, #1e1f63 50%, #7117f2 100%);
    --gradient-radial: radial-gradient(circle at 30% 20%, rgba(113, 23, 242, 0.15) 0%, transparent 50%);
    --gradient-mesh:
        radial-gradient(at 40% 20%, rgba(113, 23, 242, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(30, 31, 99, 0.4) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(151, 71, 255, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(30, 31, 99, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(113, 23, 242, 0.2) 0px, transparent 50%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(113, 23, 242, 0.3);
    --shadow-glow-lg: 0 0 80px rgba(113, 23, 242, 0.4);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Typography */
    --font-sans: 'Inter', 'Inter-fallback', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-display: 'Inter', 'Inter-fallback', 'Segoe UI', system-ui, -apple-system, sans-serif;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal: 1500;
}
