@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@200;300;400;500;600;700;800&display=swap');

:root {
  --color-gold: #d4af37;
  --color-gold-light: #f3e5ab;
  --font-luxury: 'Montserrat', sans-serif;
  --font-hud: 'Inter', sans-serif;
}

body {
  font-family: var(--font-luxury);
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Hide scrollbars */
html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
}

::-webkit-scrollbar {
  display: none;
}

::selection {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
}

.glow-text-gold {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.25), 0 0 20px rgba(212, 175, 55, 0.1);
}

.glow-text-white {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15);
}

.glass-panel {
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.glass-panel-heavy {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.hud-font {
  font-family: var(--font-hud);
  letter-spacing: 0.15em;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.animate-blink {
  animation: blink 2.5s infinite ease-in-out;
}

.transition-luxury {
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.transition-quick {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: spin-slow 12s linear infinite;
}

.vignette-overlay {
  background: radial-gradient(circle, transparent 35%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.premium-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  font-family: var(--font-hud);
}

.premium-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.soundwave-container {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 12px;
}
.soundwave-bar {
  width: 1.5px;
  height: 100%;
  background-color: var(--color-gold);
  animation: bounce-bar 0.8s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.soundwave-bar:nth-child(1) { animation-delay: 0.15s; animation-duration: 0.75s; }
.soundwave-bar:nth-child(2) { animation-delay: 0.35s; animation-duration: 0.95s; }
.soundwave-bar:nth-child(3) { animation-delay: 0.05s; animation-duration: 0.65s; }
.soundwave-bar:nth-child(4) { animation-delay: 0.45s; animation-duration: 0.85s; }

@keyframes bounce-bar {
  0% { transform: scaleY(0.2); }
  100% { transform: scaleY(1); }
}

.soundwave-paused .soundwave-bar {
  animation-play-state: paused;
  transform: scaleY(0.2) !important;
  background-color: rgba(255, 255, 255, 0.2);
}

.hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 45;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hotspot:hover {
  background: rgba(212, 175, 55, 0.7);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}
.hotspot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff;
}
.hotspot-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  animation: hotspot-ripple 2.2s infinite ease-out;
}
@keyframes hotspot-ripple {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.info-drawer {
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.info-drawer.active {
  transform: translateX(0);
}

.nav-link-premium {
  position: relative;
}
.nav-link-premium::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}
.nav-link-premium:hover::after {
  width: 100%;
}

.burger-active #burger-line-1 {
  transform: rotate(45deg) translate(4px, 4px);
  background-color: var(--color-gold) !important;
}
.burger-active #burger-line-2 {
  transform: rotate(-45deg) translate(4px, -4px);
  background-color: var(--color-gold) !important;
}

.footer-link {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}
.footer-link:hover {
  color: var(--color-gold) !important;
  transform: translateX(5px);
}


