:root {
    /* Color Palette - AI Tools Aesthetic */
    --bg-dark: #0A0A0A;
    --bg-card: #1E1E1E;
    --bg-input: #121212;
    --primary: #6B66FF;
    --primary-dim: rgba(107, 102, 255, 0.15);
    --primary-border: rgba(107, 102, 255, 0.5);
    --accent: #50B3B3;
    --text-main: #FFFFFF;
    --text-dim: #9CA3AF;
    --text-muted: #4B5563;
    --border: #333333;
    --error: #EF4444;
    --success: #10B981;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    /* Optional Light Mode - but AI Tools is dark by default */
    --bg-dark: #F9FAFB;
    --bg-card: #FFFFFF;
    --bg-input: #F3F4F6;
    --primary: #4F46E5;
    --text-main: #111827;
    --text-dim: #6B7280;
    --border: #E5E7EB;
}
