:root {
  /* Midnight Luxe Color Palette */
  --bg-primary: #070709;
  --bg-secondary: #0D0D12;
  --bg-tertiary: #13131A;
  --bg-surface: rgba(19, 19, 26, 0.75);
  --bg-surface-elevated: rgba(28, 28, 38, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);

  /* Gold & Champagne Luxury Accents */
  --gold-primary: #E5C378;
  --gold-light: #F7E4B2;
  --gold-dark: #B89243;
  --gold-glow: rgba(229, 195, 120, 0.35);
  --gold-subtle: rgba(229, 195, 120, 0.12);
  --gold-gradient: linear-gradient(135deg, #FCE9B8 0%, #E5C378 50%, #B89243 100%);
  --gold-border-gradient: linear-gradient(135deg, rgba(247, 228, 178, 0.5) 0%, rgba(229, 195, 120, 0.2) 50%, rgba(184, 146, 67, 0.4) 100%);

  /* Secondary Accents */
  --rose-gold: #E29578;
  --wine-burgundy: #4A1525;
  --online-green: #10B981;
  --online-green-glow: rgba(16, 185, 129, 0.4);

  /* Typography Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #D1D1DB;
  --text-muted: #8E8E9E;
  --text-gold: #E5C378;

  /* Typography Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Cinzel', serif;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(229, 195, 120, 0.3);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 25px rgba(229, 195, 120, 0.25);
  --shadow-gold-lg: 0 0 45px rgba(229, 195, 120, 0.4);

  /* Transitions & Animation */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-normal: 0.35s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);

  /* Layout Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --container-max: 1240px;
}
