/* CSS Custom Properties */
:root {
    /* Colors */
    --color-bg: #1a1a2e;
    --color-bg-panel: #16213e;
    --color-bg-input: #0f3460;
    --color-text: #e5e5e5;
    --color-text-muted: #8892b0;
    --color-primary: #00d9ff;
    --color-primary-hover: #00b8d4;
    --color-secondary: #ff6b6b;
    --color-success: #4ecdc4;
    --color-warning: #ffd93d;
    --color-error: #ff6b6b;

    /* Anomaly type colors */
    --color-attractor: #ff6b6b;
    --color-void: #4ecdc4;
    --color-power: #ffd93d;
    --color-blind-spot: #a78bfa;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);

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

    /* Panel */
    --panel-width: 360px;
}

/* Light mode (if desired in future) */
@media (prefers-color-scheme: light) {
    :root {
        /* Could add light mode variables here */
    }
}
