:root {
  /* Colors */
  --color-bg: #000000;
  --color-bg-alt: #0a0a0a;
  --color-bg-card: #050505;
  --color-text: #F4F4F4;
  --color-text-muted: #747681;
  --color-accent: #DAED1A;
  --color-accent-blue: #C6DA21;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-hover: rgba(218, 237, 26, 0.5);

  /* Typography */
  --font-heading: 'Work Sans', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Layout */
  --container-width: 1200px;
  --container-padding: 2rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows and Glows */
  --glow-accent: 0 0 20px rgba(0, 255, 102, 0.2);
  --glow-accent-hover: 0 0 30px rgba(0, 255, 102, 0.4);
}