/**
 * CSS Custom Properties (Variables)
 * Centralized design tokens for consistent theming
 */

:root {
    /* Primary Colors */
    --primary-color: #7c4dff;
    --secondary-color: #6200ea;
    --primary-medium: #1e293b;
    --primary-light: #334155;

    /* Accent Colors */
    --accent-color: #7c4dff;
    --accent-hover: #6200ea;
    --accent-light: #9575ff;

    /* Text Colors */
    --text-color: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;

    /* Background Colors */
    --background-color: #ffffff;
    --background-secondary: #f8fafc;
    --background-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;

    /* Utility Colors */
    --success-color: #10b981;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6200ea 0%, #7c4dff 100%);
    --gradient-dark: linear-gradient(135deg, #6200ea 0%, #7c4dff 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.12);
    --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
}
