:root {
  /* Colors */
  --color-bg-primary: #12131A;
  --color-bg-secondary: #1A1B24;
  --color-bg-tertiary: #22232E;
  --color-accent-gold: #C9A84C;
  --color-accent-bronze: #8B7355;
  --color-accent-gold-dim: rgba(201, 168, 76, 0.15);
  --color-accent-gold-glow: rgba(201, 168, 76, 0.3);
  --color-text-primary: #E0DDD5;
  --color-text-secondary: #A09D93;
  --color-text-muted: #6B6860;
  --color-border: rgba(201, 168, 76, 0.2);
  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --color-white: #FFFFFF;
  --color-black: #000000;

  /* Typography */
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  /* 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;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-padding: var(--space-6);

  /* Effects */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 600ms ease;
  --transition-slower: 1000ms ease;
  --grain-opacity: 0.03;

  /* Border radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold-glow: 0 0 20px rgba(201, 168, 76, 0.15);
}
