:root {
    /* Colors */
    --primary-color: #e8c742;
    --secondary-color: #4241f0;
    --accent-color: #F022F7;
    --golden-color: #ffd700;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --dark-secondary: #191919;
    --dark-tertiary: #2d2d2d;
    --light-text: #ffffff;
    --gray-text: #cccccc;
    --muted-text: #a1a1aa;
    --success-color: #00c851;
    --error-color: #ff4444;
    --warning-color: #ffbb33;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #e8c742 0%, #ffd700 100%);
    --gradient-secondary: linear-gradient(135deg, #e8c742 0%, #F022F7 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #191919 100%);
    --gradient-card: linear-gradient(135deg, rgba(25, 25, 25, 0.8) 0%, rgba(45, 45, 45, 0.8) 100%);
    
    /* Shadows */
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(232, 199, 66, 0.4);
    
    /* Borders */
    --border-radius: 12px;
    --border-radius-small: 8px;
    --border-radius-large: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    
    /* Typography */
    --primary-font: 'Kanit', sans-serif;
    --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;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-toast: 800;
}