:root {
    /* Omnira Refined Dark Palette */
    --color-bg: #0b0e14;           /* Deep Dark Gray (not black) */
    --color-surface: #151921;      /* Card Background */
    --color-surface-soft: #1e242e; /* Hover / Secondary Surface */
    --color-surface-bright: #2d3544;
    
    /* Contrast & Borders (Lichtkanten) */
    --color-border: #232a35;       /* Subtle 1px solid */
    --color-border-bright: #364153;

    
    /* Typography */
    --color-text: #ffffff;
    --color-text-muted: #8a8f98;
    --color-text-dim: #5c626d;
    
    /* Accents (Dynamic) */
    --color-primary: #3b82f6;      /* Default: Blue */
    --color-primary-hover: #2563eb;
    --color-accent: var(--color-primary);
    --color-success: #10b981;
    --color-success-bg: rgba(16, 185, 129, 0.1);
    --color-warning: #f59e0b;
    --color-warning-bg: rgba(245, 158, 11, 0.1);


    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Design Tokens */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 99px;

    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Performance: No heavy shadows */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
}

/* Light Theme Overrides */
[data-theme="light"] {
    --color-bg: #f5f7fa;
    --color-surface: #ffffff;
    --color-surface-soft: #edf2f7;
    --color-surface-bright: #e2e8f0;
    
    --color-border: #e2e8f0;
    --color-border-bright: #cbd5e0;
    
    --color-text: #1a202c;
    --color-text-muted: #718096;
    --color-text-dim: #a0aec0;

    --color-success-bg: rgba(16, 185, 129, 0.1);
    --color-warning-bg: rgba(245, 158, 11, 0.1);
}