:root {
    /* Colors - Dark mystical palette */
    --color-bg: #0a0a0f;
    --color-bg-alt: #0f172a;
    --color-surface: rgba(30, 27, 75, 0.5);
    --color-surface-hover: rgba(30, 27, 75, 0.7);

    --color-primary: #6d28d9;
    --color-primary-light: #8b5cf6;
    --color-primary-dark: #4f46e5;

    --color-secondary: #1e1b4b;
    --color-accent: #06b6d4;
    --color-accent-light: #22d3ee;

    --color-text: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-text-dim: #64748b;

    --color-border: rgba(139, 92, 246, 0.2);
    --color-border-hover: rgba(139, 92, 246, 0.5);

    --color-green: #22c55e;
    --color-yellow: #facc15;

    /* Typography */
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --section-padding: 96px 0;
    --section-padding-lg: 128px 0;

    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    --shadow-glow-cyan: 0 0 40px rgba(6, 182, 212, 0.3);
    --shadow-glow-lg: 0 0 60px rgba(139, 92, 246, 0.4);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);

    --transition: 0.3s ease;
    --transition-fast: 0.2s ease;

    /* Layout */
    --container-max: 1280px;
    --container-padding: 16px;
}

@media (min-width: 640px) {
    :root {
        --container-padding: 24px;
    }
}
@media (min-width: 1024px) {
    :root {
        --container-padding: 32px;
    }
}
