/* CFO Cockpit «Фонари 1871» - CSS Variables */
:root {
  /* Background Colors */
  --bg-primary: #1A120B;
  --bg-secondary: #2C1B18;
  --bg-card: #251510;
  
  /* Accent Colors */
  --accent-copper: #B87333;
  --accent-linen: #F5F5DC;
  --accent-gold: #D4A017;
  
  /* Status Colors */
  --positive: #2E5C4F;
  --positive-light: #3d7a68;
  --negative: #C65D3B;
  --negative-light: #d97b5c;
  --warning: #D4A017;
  --neutral: #5C4033;
  
  /* Text Colors */
  --text-primary: #E8DCC4;
  --text-secondary: #8B7355;
  --text-muted: #6B5B4F;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  
  /* Spacing */
  --section-padding: 4rem 2rem;
  --card-padding: 1.5rem;
  --grid-gap: 1.5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ABC Class Colors */
.abc-stars { --abc-color: var(--positive); }
.abc-pearls { --abc-color: var(--warning); }
.abc-horses { --abc-color: var(--accent-copper); }
.abc-dogs { --abc-color: var(--negative); }
.abc-problems { --abc-color: #8B4513; }
.abc-stable { --abc-color: var(--neutral); }
