:root {
    /* Premium Dark Palette */
    --color-bg-deep: #0a0a0f;
    --color-bg-base: #12121a;
    --color-bg-elevated: #1a1a24;
    --color-bg-surface: #22222e;

    /* Gradient Colors */
    --gradient-purple: #982598;
    --gradient-magenta: #c026d3;
    --gradient-pink: #E491C9;
    --gradient-warm: #f472b6;
    --gradient-gold: #d4a574;

    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.5);
    --color-text-accent: #E491C9;

    /* Legacy compatibility */
    --color-primary: #ffffff;
    --color-secondary: #E491C9;
    --color-accent: #982598;
    --color-background: #0a0a0f;
    --color-text: rgba(255, 255, 255, 0.85);
    --color-text-muted: rgba(255, 255, 255, 0.5);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-card-bg: rgba(255, 255, 255, 0.03);
    --color-card-hover: rgba(255, 255, 255, 0.06);

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #982598 0%, #E491C9 50%, #c026d3 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(152, 37, 152, 0.15) 0%, transparent 70%);
    --gradient-hero: radial-gradient(ellipse at 30% 0%, rgba(152, 37, 152, 0.3) 0%, transparent 50%),
                     radial-gradient(ellipse at 70% 100%, rgba(228, 145, 201, 0.2) 0%, transparent 50%);

    /* Typography - Premium Scale */
    --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    --font-family-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;

    /* Type Scale - More dramatic */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 22px;
    --font-size-2xl: 28px;
    --font-size-3xl: 36px;
    --font-size-4xl: 48px;
    --font-size-5xl: 64px;
    --font-size-hero: clamp(48px, 8vw, 80px);

    /* Letter Spacing */
    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.05em;
    --letter-spacing-wider: 0.1em;

    /* Spacing - More generous */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 40px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    --spacing-4xl: 128px;

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

    /* Shadows - 3D Depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(152, 37, 152, 0.3);
    --shadow-glow-strong: 0 0 60px rgba(152, 37, 152, 0.4), 0 0 100px rgba(228, 145, 201, 0.2);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    --shadow-card-hover: 0 8px 40px rgba(152, 37, 152, 0.3), 0 0 0 1px rgba(228, 145, 201, 0.2);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 960px;
    --touch-target: 44px;
}
