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

:root {
  --color-gold: #D4AF37;
  --color-gold-light: #F3E5AB;
  --color-gold-dark: #AA7C11;
  --color-bg: #000000;
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-bg);
  color: #FFFFFF;
  font-family: var(--font-sans);
  overflow-x: hidden;
  user-select: none;
}

/* Custom Cursor on Desktop */
@media (pointer: fine) {
  body.custom-cursor-active {
    cursor: none;
  }
  body.custom-cursor-active a,
  body.custom-cursor-active button,
  body.custom-cursor-active [role="button"],
  body.custom-cursor-active input {
    cursor: none;
  }
}

.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: border-color 0.3s, transform 0.1s ease-out, background-color 0.3s;
}

.custom-cursor.hovered {
  width: 12px;
  height: 12px;
  background-color: #FFFFFF;
}

.custom-cursor-ring.hovered {
  transform: translate(-50%, -50%) scale(1.5);
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(212, 175, 55, 0.1);
}

/* Custom Typography & Spacing */
h1, h2, h3, .font-display {
  font-family: var(--font-display);
}

.text-gold-gradient {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-gold {
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.25));
}

.glow-gold-lg {
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.45));
}

/* Minimalist Pitch-Black Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #111111;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #222222;
}

/* Panel Glassmorphism */
.glass-panel {
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-panel:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

/* Scroll Indication Animation */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  z-index: 10;
}

.scroll-indicator-wheel {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 11px;
  position: relative;
}

.scroll-indicator-dot {
  width: 4px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.6s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% {
    top: 5px;
    opacity: 1;
  }
  50% {
    top: 18px;
    opacity: 0.2;
  }
  100% {
    top: 5px;
    opacity: 1;
  }
}

/* Noise overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.012'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
}

/* Wave Path Transition override */
#wavePath {
  transition: stroke 0.3s;
}

/* Premium Glowing CTA Button */
.cta-button-glow {
  position: relative;
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid transparent;
  transition: background-color 400ms ease, border-color 400ms ease, box-shadow 400ms ease, color 400ms ease;
}

.cta-button-glow:hover {
  background-color: #000000;
  color: #F59E0B;
  border-color: #F59E0B;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.45);
}

