:root {
    /* ЦВЕТА */
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-very-light: #f0f4ff;
    
    --accent-orange: #f97316;
    --accent-green: #059669;
    --news-color: #059669;
    --announcement-color: #f97316;
    
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f5f5f5;
    
    --border-light: #e5e7eb;
    --border-gray: #e2e8f0;
    
    /* ТЕНИ */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
    
    /* РАДИУСЫ */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* АНИМАЦИИ */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}