/* Explain: Project color design tokens and theme variables, updated for dark theme. */
:root {
    --primary-color: #0a0a0a;
    --primary-hover: #1a1a1a;
    --secondary-color: #222222;
    --accent-color: #FF5722;
    --accent-hover: #E64A19;
    --accent-soft: rgba(255, 87, 34, 0.1);
    --background-color: #050505;
    --surface-color: #111111;
    --text-color: #ffffff;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.1);
    --success-color: #10b981;
    --error-color: #ef4444;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-xl: 24px;
    --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.4);
    --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.2);
    --terminal-bg: #050505;
    --terminal-panel: #111111;
    --terminal-input: #0a0a0a;
    --terminal-border: rgba(255, 255, 255, 0.15);
    --terminal-text: #ffffff;
    --terminal-muted: #9ca3af;
    --terminal-cyan: #FF5722;
    --terminal-green: #10b981;
    --terminal-red: #ef4444;
    --terminal-purple: #8b5cf6;
    --terminal-warning: #f59e0b;
}

:root[data-bf-theme="light"] {
    --terminal-bg: #f1f5f9;
    --terminal-panel: #ffffff;
    --terminal-input: #f8fafc;
    --terminal-border: #cbd5e1;
    --terminal-text: #0f172a;
    --terminal-muted: #64748b;
    --terminal-cyan: #0ea5e9;
    --terminal-green: #10b981;
    --terminal-red: #ef4444;
    --terminal-purple: #8b5cf6;
    --terminal-warning: #f59e0b;
}
