/* =====================================================
   MELLSTROY - CSS Variables
   ===================================================== */

:root {
  /* Основные цвета */
  --bg-primary: #ffffff;
  --bg-dark: #1a1a2e;
  --bg-header: #0f0f1a;
  
  /* Акценты */
  --accent-green: #3ecf4c;
  --accent-orange: #f97316;
  
  /* Текст */
  --text-light: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  
  /* Размеры */
  --header-height: 70px;
  --radius-full: 9999px;
  --radius-xl: 40px;
  
  /* Шрифты */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', 'Inter', sans-serif;
  
  /* Переходы */
  --transition: 0.3s ease;
}
