:root {
  /* Dark Mode (default) */
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --surface: #1a1a1a;
  --border: #333333;
  --text: #e0e0e0;
  --text-bright: #ffffff;
  --text-muted: #666666;
  --accent: #c8a84e;
  --accent-hover: #d4b85c;
  --grid-line: rgba(255, 255, 255, 0.03);
  --overlay: rgba(0, 0, 0, 0.5);
  --scanline: rgba(255, 255, 255, 0.02);

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

  /* Typography */
  --font-mono: 'JetBrains Mono', 'Fira Code', 'IBM Plex Mono', monospace;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-2xl: 3rem;
  --fs-3xl: 4.5rem;
  --fs-hero: clamp(3rem, 8vw, 7rem);

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Layout */
  --max-width: 1200px;
  --navbar-height: 60px;
}

[data-theme="light"] {
  --bg: #f5f5f0;
  --bg-alt: #ebebeb;
  --surface: #ffffff;
  --border: #cccccc;
  --text: #111111;
  --text-bright: #000000;
  --text-muted: #666666;
  --accent: #b8952e;
  --accent-hover: #a07e1e;
  --grid-line: rgba(0, 0, 0, 0.06);
  --overlay: rgba(255, 255, 255, 0.5);
  --scanline: rgba(0, 0, 0, 0.015);
}
