/* Color Scheme & Design Tokens */
:root {
  --green: #1a7a3c;
  --green-light: #22a04f;
  --green-glow: #2ecc71;
  --gold: #c8a84b;
  --dark: #0d1f14;
  --dark2: #122019;
  --text: #e8f5ec;
  --muted: #7aab8a;
  --badge-bg: rgba(255, 255, 255, 0.12);
  --badge-border: rgba(255, 255, 255, 0.25);
  --blue: #3b82f6;
  --red: #e74c3c;
  
  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 40px;
  
  /* Transitions */
  --transition-fast: 0.2s;
  --transition-base: 0.3s;
  --transition-slow: 0.5s;
  
  /* Radius */
  --radius-sm: 2px;
  --radius-md: 20px;
  --radius-full: 999px;
}
