@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300..800;1,9..40,300..800&family=Fraunces:ital,opsz,wght@0,9..144,400..700;1,9..144,400..700&display=swap');

/* Black & Gold Luxury Theme Base */
:root {
  --bg-deep: #09090b;
  --bg-card: #121215;
  --bg-card-hover: #1c1c21;
  --bg-secondary: #18181c;
  
  --gold-primary: #d4af37;
  --gold-light: #f5e08c;
  --gold-dark: #aa820a;
  --gold-gradient: linear-gradient(135deg, #f5e08c 0%, #d4af37 50%, #9a7b1c 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #f5e08c 50%, #d4af37 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-gold: #e5c158;
  
  --border-gold: rgba(212, 175, 55, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  overflow-x: clip;
}

.font-display {
  font-family: 'Fraunces', 'Cinzel', Georgia, serif;
}

.font-luxury {
  font-family: 'Cinzel', serif;
}

/* Gold Gradient Text Utility */
.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gold Button Styles */
.btn-gold {
  background: var(--gold-gradient);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-gold:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}
.btn-gold:active {
  transform: scale(0.98);
}

.btn-gold-outline {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--text-gold);
  transition: all 0.3s ease;
}
.btn-gold-outline:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: #ffffff;
}

/* Gold Card & Glassmorphism */
.glass-gold-card {
  background: rgba(18, 18, 21, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.glass-gold-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

/* Animations */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-floaty {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 28s linear infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
  50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.5); }
}
.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Scroll reveal helper */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Nav Drawer */
.mobile-menu-drawer {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-drawer.is-open {
  transform: translateX(0);
}

/* Toast Container & Notification */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  min-width: 290px;
  max-width: 420px;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: #141417;
  border: 1px solid var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  animation: toastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.destructive {
  border-color: #ef4444;
  background-color: #1a0c0c;
}
@keyframes toastIn {
  from { transform: translateY(100%) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #09090b;
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
}
::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}
