:root {
  /* Brand colors */
  --color-primary-light: #97BAA4;
  --color-primary: #499360;
  --color-primary-dark: #295651;
  --color-dark: #232941;

  /* Derived palette */
  --color-bg: #1a1f2e;
  --color-bg-alt: #232941;
  --color-surface: rgba(35, 41, 65, 0.6);
  --color-surface-hover: rgba(41, 86, 81, 0.4);
  --color-text: #e8ecef;
  --color-text-muted: #97BAA4;
  --color-text-dark: #232941;
  --color-border: rgba(151, 186, 164, 0.2);
  --color-glow: rgba(73, 147, 96, 0.4);

  /* Typography */
  --font-primary: 'Anta', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --header-height: 72px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 30px var(--color-glow);
}
