:root {
  /* Colors */
  --color-bg: #1a1a1a;
  --color-bg-secondary: #222222;
  --color-bg-tertiary: #2a2a2a;
  --color-bg-card: #232323;
  --color-text: #f5f0e8;
  --color-text-muted: #a09880;
  --color-text-dim: #6b6456;
  --color-gold: #c9a84c;
  --color-gold-light: #e0c070;
  --color-gold-dark: #a07830;
  --color-gold-bg: rgba(201,168,76,0.08);
  --color-gold-border: rgba(201,168,76,0.25);
  --color-border: rgba(245,240,232,0.08);
  --color-border-hover: rgba(245,240,232,0.18);
  --color-white: #ffffff;
  --color-success: #4caf50;
  --color-error: #e53935;
  --color-warning: #ff9800;

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 96px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 20px rgba(201,168,76,0.2);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Navbar */
  --navbar-height: 80px;
  --navbar-height-shrunk: 60px;

  /* Z-index layers */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}
