/* ========================================
   Shadowing App - Design Tokens
   ======================================== */

:root {
    /* Colors - Dark Theme */
    --bg-primary: #0a0a1a;
    --bg-secondary: #10102a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.06);
    --bg-glass-strong: rgba(255, 255, 255, 0.1);
    --bg-input: rgba(255, 255, 255, 0.08);
    --bg-input-focus: rgba(255, 255, 255, 0.12);

    /* Accent Colors */
    --accent-primary: #6c5ce7;
    --accent-secondary: #a29bfe;
    --accent-gradient: linear-gradient(135deg, #6c5ce7, #a29bfe);
    --accent-glow: rgba(108, 92, 231, 0.3);

    /* Status Colors */
    --color-success: #00b894;
    --color-success-glow: rgba(0, 184, 148, 0.2);
    --color-warning: #fdcb6e;
    --color-warning-glow: rgba(253, 203, 110, 0.2);
    --color-danger: #e17055;
    --color-danger-glow: rgba(225, 112, 85, 0.2);
    --color-info: #74b9ff;

    /* Score Colors */
    --score-excellent: #00b894;
    --score-good: #55efc4;
    --score-average: #fdcb6e;
    --score-poor: #e17055;
    --score-fail: #d63031;

    /* Text Colors */
    --text-primary: #f0f0f5;
    --text-secondary: rgba(240, 240, 245, 0.65);
    --text-muted: rgba(240, 240, 245, 0.4);
    --text-accent: #a29bfe;
    --text-on-accent: #ffffff;

    /* Border */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.12);
    --border-accent: rgba(108, 92, 231, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(108, 92, 231, 0.15);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index */
    --z-dropdown: 100;
    --z-modal-backdrop: 200;
    --z-modal: 300;
    --z-toast: 400;

    /* Layout */
    --max-width: 1200px;
    --header-height: 64px;
    --sidebar-width: 280px;
}
