:root {
    /* Main colors from config - dark purple theme with green accents */
    --color-primary: #070126;
    --color-secondary: #6ba83e;
    --color-accent: #6c757d;
    --color-light: #F1F3F4;

    /* Light theme colors */
    --color-bg: #FFFFFF;
    --color-bg-alt: #F1F3F4;
    --color-bg-dark: #070126;
    --color-bg-card: #FFFFFF;
    --color-text: #070126;
    --color-text-light: #FFFFFF;
    --color-text-muted: #6c757d;
    --color-border: #E5E7EB;
    --color-highlight: #6ba83e;

    /* Gradients - dark purple with green accents */
    --gradient-primary: linear-gradient(135deg, #6ba83e 0%, #5a9332 100%);
    --gradient-secondary: linear-gradient(135deg, #070126 0%, #1a0f3d 100%);
    --gradient-hero: linear-gradient(135deg, #070126 0%, #1a0f3d 50%, #2d1b5e 100%);
    --gradient-stats: linear-gradient(135deg, #070126 0%, #1a0f3d 100%);

    /* Typography - System fonts only */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;

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

    /* Border radius - rounded like Wix */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows - subtle */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;

    /* Touch targets - min 44px */
    --touch-target: 44px;
}
