/* =========================================================
   SOUPBLACK — Official Single Release Landing Page Stylesheet
   ========================================================= */

/* Custom Luxury Dark & Gold Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(255, 189, 91, 0.3);
  border-radius: 9999px;
  border: 2px solid #050505;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #FFBD5B;
  box-shadow: 0 0 12px rgba(255, 189, 91, 0.6);
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 189, 91, 0.35) #050505;
}

/* Custom Design Styles & Utilities */
body {
  background-color: #050505;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  selection-background-color: #FFBD5B;
  selection-color: #050505;
}

::selection {
  background: #FFBD5B;
  color: #050505;
}

/* Ambient Glowing Gradients */
.bg-mesh {
  background: 
    radial-gradient(circle at 15% 15%, rgba(255, 189, 91, 0.09) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(255, 189, 91, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(255, 189, 91, 0.08) 0%, transparent 50%),
    #050505;
}

/* Glassmorphism Card Style */
.glass-card {
  background: rgba(18, 18, 20, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 35px -5px rgba(0, 0, 0, 0.6);
}

.glass-card {
  border-color: rgba(255, 189, 91, 0.35);
  box-shadow: 0 15px 45px -10px rgba(255, 189, 91, 0.15);
}

.glass-pill {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

/* Gold Accent Glow */
.gold-glow {
  box-shadow: 0 0 40px -10px rgba(255, 189, 91, 0.45);
}

.gold-text-glow {
  text-shadow: 0 0 25px rgba(255, 189, 91, 0.35);
}

/* Subtle Film Grain Overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: 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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Disc Groove Effect */
.vinyl-grooves {
  background: repeating-radial-gradient(
    circle,
    #111113 0px,
    #111113 2px,
    #1c1c1f 3px,
    #111113 4px
  );
}

/* Audio wave bar height delays */
.wave-bar:nth-child(1) { animation-delay: 0.1s; }
.wave-bar:nth-child(2) { animation-delay: 0.3s; }
.wave-bar:nth-child(3) { animation-delay: 0.6s; }
.wave-bar:nth-child(4) { animation-delay: 0.2s; }
.wave-bar:nth-child(5) { animation-delay: 0.5s; }
.wave-bar:nth-child(6) { animation-delay: 0.7s; }
.wave-bar:nth-child(7) { animation-delay: 0.4s; }
.wave-bar:nth-child(8) { animation-delay: 0.2s; }
.wave-bar:nth-child(9) { animation-delay: 0.8s; }
.wave-bar:nth-child(10) { animation-delay: 0.35s; }
.wave-bar:nth-child(11) { animation-delay: 0.65s; }
.wave-bar:nth-child(12) { animation-delay: 0.15s; }
