/* Reset and CSS Custom Properties */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #a855f7;
    --primary-light: #c084fc;
    --primary-dark: #7c3aed;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --success: #10b981;
    --error: #f43f5e;
    --warning: #f59e0b;
    --bg-dark: #0f0a1f;
    --bg-card: rgba(255, 255, 255, 0.08);
    --bg-card-solid: #1a1333;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --glow-primary: 0 0 30px rgba(168, 85, 247, 0.4);
    --glow-accent: 0 0 30px rgba(6, 182, 212, 0.4);
    --glow-success: 0 0 30px rgba(16, 185, 129, 0.4);
}
