:root {
    /* Brand Colors */
    --primary-color: #4f46e5;
    --secondary-color: #818cf8;
    --accent-color: #6366f1;
    
    /* Background Colors */
    --background-color: #f8fafc;
    --card-bg: #ffffff;
    --hover-bg: #f9fafb;
    
    /* Text Colors */
    --text-color: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    /* Border Colors */
    --border-color: #e5e7eb;
    --border-light: #f1f5f9;
    
    /* Status Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #dc2626;
    --info-color: #3b82f6;
    
    /* Social Media Colors */
    --instagram-color: #e1306c;
    --facebook-color: #1877f2;
    --twitter-color: #1da1f2;
    --youtube-color: #ff0000;
    --tiktok-color: #000000;
    --telegram-color: #0088cc;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 9999px;
    
    /* Box Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    
    /* Transitions */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
} 