/* CSS Variables - Color Palette and Design Tokens */

:root {
    /* Primary Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #8b5cf6;
    --cyan: #06b6d4;
    --pink: #ec4899;
    --orange: #f59e0b;

    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050507;
    --bg-card: rgba(15, 15, 25, 0.6);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
}
