:root {
    /* Brand Colors - Refined */
    --primary-color: #FFD700;
    --primary-rgb: 255, 215, 0;
    /* Premium Gold */
    --primary-dark: #DAA520;
    --secondary-color: #0A0A0A;
    /* Deeper Black */
    --text-color: #1A1A1A;
    --text-muted: #555555;
    --bg-color: #FFFFFF;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    --gradient-dark: linear-gradient(135deg, #121212 0%, #2C2C2C 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-secondary: 'Outfit', sans-serif;

    /* Spacing - Increased for airy feel */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1.5rem;
    /* 24px */
    --spacing-md: 3rem;
    /* 48px */
    --spacing-lg: 6rem;
    /* 96px */
    --spacing-xl: 5rem;
    /* 80px */

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Borders & Shadows */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-pill: 50px;

    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.4);
}