:root {
    /* Primary Brand Colors */
    --primary-color: #0dfad2;
    --primary-hover: #0bc4a4;
    --primary-glow: rgba(13, 250, 210, 0.5);

    /* Background Colors (Dark Theme) */
    --bg-dark: #0f172a;
    /* Slate 900 - Main Background */
    --bg-card: #1e293b;
    /* Slate 800 - Card Background */
    --bg-input: #334155;
    /* Slate 700 - Input Background */

    /* Text Colors */
    --text-main: #f8fafc;
    /* Slate 50 */
    --text-muted: #94a3b8;
    /* Slate 400 */

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Effects */
    --glass-bg: rgba(15, 23, 42, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 15px rgba(13, 250, 210, 0.3);

    /* Fonts */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}