:root {
    /* Color System */
    --color-primary: #ff4500; /* Orange-red */
    --color-secondary: #ffa500; /* Orange-amber */
    --color-accent: #ff7700; /* Amber */
    --color-background: #0a0a0a; /* Dark Background */
    --color-surface: #151515; /* Slightly lighter surface */
    --color-text: #f5f5f5; /* Almost White */
    --color-text-secondary: #b0b0b0; /* Light Gray */
    --color-border: rgba(255, 69, 0, 0.2); /* Orange-red with low opacity */
    
    /* RGB Values for Animations */
    --primary-rgb: 255, 69, 0;
    --secondary-rgb: 255, 165, 0;
    --accent-rgb: 255, 119, 0;
    
    /* Solid Background Colors Instead of Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-secondary: #151515;
    --gradient-dark: #0a0a0a;
    
    /* Layout */
    --container-width: 1200px;
    
    /* Spacing */
    --spacing-xs: 0.25rem;  /* 4px */
    --spacing-sm: 0.5rem;   /* 8px */
    --spacing-md: 1rem;     /* 16px */
    --spacing-lg: 1.5rem;   /* 24px */
    --spacing-xl: 2rem;     /* 32px */
    --spacing-2xl: 3rem;    /* 48px */
    --spacing-3xl: 4rem;    /* 64px */
    
    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 15px rgba(255, 69, 0, 0.4);
    
    /* Typography */
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-md: 1rem;        /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    --text-6xl: 3.75rem;    /* 60px */
    --text-7xl: 4.5rem;     /* 72px */
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Font Weights */
    --weight-regular: 400;
    --weight-medium: 500; 
    --weight-semibold: 600;
    --weight-bold: 700;
    
    /* Z-Index */
    --z-behind: -1;
    --z-default: 1;
    --z-menu: 10;
    --z-header: 20;
    --z-modal: 30;
    --z-toast: 40;
    --z-max: 50;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Mint Specific Variables */
    --accent-color: var(--color-primary);
    --primary-color: var(--color-primary);
    --text-color: var(--color-text);
    --text-secondary: var(--color-text-secondary);
    --darker-bg: #0a0a0a;
} 