:root {
  /* Цвета */
  --primary: #e74c3c;
  --primary-dark: #c0392b;
  --primary-light: #fef5f5;
  --secondary: #2c3e50;
  --success: #27ae60;
  --warning: #f39c12;
  --info: #3498db;
  --danger: #e74c3c;

  /* Текст */
  --text-primary: #222;
  --text-secondary: #555;
  --text-muted: #999;
  --text-light: #bbb;

  /* Фоны */
  --bg-body: #f5f6f8;
  --bg-white: #fff;
  --bg-gray: #f9f9f9;
  --bg-dark: #1a1a2e;

  /* Границы */
  --border: #e8e8e8;
  --border-light: #f0f0f0;

  /* Тени */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);

  /* Радиусы */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50px;

  /* Анимации */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
  --transition-fast: all 0.15s var(--ease);

  /* Размеры */
  --header-height: 70px;
  --sidebar-width: 280px;
  --container-max: 1360px;

  /* Шрифт */
  --font: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}