:root {
  /* Colors */
  --color-bg-base:        #0d0d0d;
  --color-bg-surface:     #141414;
  --color-bg-elevated:    #1e1e1e;
  --color-border:         #2a2a2a;
  --color-border-hover:   #444444;
  --color-accent:         #00e676;
  --color-accent-dim:     #00b85c;
  --color-text-primary:   #f0f0f0;
  --color-text-secondary: #a0a0a0;
  --color-text-on-accent: #000000;

  /* Typography */
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Inter', sans-serif;

  /* Font sizes */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  1.875rem;  /* 30px */
  --text-4xl:  2.25rem;   /* 36px */
  --text-5xl:  3rem;      /* 48px */

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --max-width: 1200px;
  --header-height: 64px;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;

  /* Transitions */
  --transition: 200ms ease;
}
