:root {
    /* Primary Colors - Red Theme */
    --primary: #dc2626;
    --primary-light: #ef4444;
    --primary-dark: #b91c1c;
    --primary-rgb: 220, 38, 38;
    
    /* Secondary Colors */
    --secondary: #1e293b;
    --secondary-light: #334155;
    --secondary-dark: #0f172a;
    
    /* Status Colors */
    --success: #10b981;
    --success-dark: #059669;
    --success-rgb: 16, 185, 129;
    
    --warning: #f59e0b;
    --warning-dark: #d97706;
    --warning-rgb: 245, 158, 11;
    
    --danger: #dc2626;
    --danger-dark: #b91c1c;
    --danger-rgb: 220, 38, 38;
    
    --info: #3b82f6;
    --info-dark: #2563eb;
    --info-rgb: 59, 130, 246;
    
    /* Background Colors */
    --light: #f8fafc;
    --dark: #1e293b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --light-bg: #f1f5f9;
    
    /* Neutral & Border Colors */
    --border-color: #e2e8f0;
    --border-color-dark: #cbd5e1;
    
    /* Text Colors - Changed to black for better contrast */
    --text: #000000;
    --text-dark: #000000;
    --text-light: #333333;
    --text-muted: #666666;
    --text-white: #ffffff;
    
    /* Gray Scale */
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Design Tokens - Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Design Tokens - Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-success: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    --gradient-danger: linear-gradient(135deg, var(--danger) 0%, var(--danger-dark) 100%);
    --gradient-info: linear-gradient(135deg, var(--info) 0%, var(--info-dark) 100%);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 3rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    
    --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: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --dark: #0f172a;
        --light: #1e293b;
        --light-bg: #1e293b;
        --border-color: #334155;
        --text: #ffffff;
        --text-dark: #ffffff;
        --text-light: #e5e7eb;
        --bg-light: #1e293b;
        --bg-white: #0f172a;
    }
}