html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: radial-gradient(circle at top, #020617 0%, #02030a 45%, #000 100%);
  color: #f9fafb;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}


.mixing-board {
  padding: 40px 0;
  background: #111;
  color: white;
  text-align: center;
}

.hidden {
  display: none;
}

.sliders-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="range"] {
  appearance: none;
  width: 8px;
  height: 200px;
  transform: rotate(-90deg);
  margin: 40px 0;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: #444;
  border-radius: 4px;
  height: 8px;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  background: linear-gradient(145deg, #ccc, #eee);
  border: 2px solid #555;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: linear-gradient(145deg, #fff, #e6e6e6);
}



.create-btn {
  width: 240px;
  height: 80px;
  border-radius: 14px;
  border: none;
  cursor: pointer;

  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: white;
  font-weight: 700;

  --convexity: 2.5;
  --metal: chrome;
  background: #cfcfcf;

  margin: 24px auto;     
  display: block;  

  transition: 0.22s ease;
  overflow: visible;
}


.create-btn:hover {
  position: relative;
  z-index: 10;

  box-shadow:
    0 0 12px #ff006e,
    0 0 28px #ff006e,
    0 0 45px #ff006e;

  transform: translateY(-1px);
}


.create-btn:active {
  transform: translateY(2px);
  box-shadow: 
    0 0 5px rgba(0,0,0,0.4) inset,
    inset 2px 2px 8px rgba(0,0,0,0.4);
}



.results {
  margin-top: 50px;
  opacity: 0;
}

.scroll-section {
  padding: 40px 0;  
  min-height: 40vh;   
  width: 70%;
  margin: 0 auto;
  opacity: 0;
}

#result-1.scroll-section{
  padding-bottom: 0px;
}

#result-4.scroll-section{
  padding-bottom: 0px;
  margin-bottom: 0px;
  min-height: 20vh !important;
}

body {
  font-family: 'Montserrat', sans-serif;
}


#sliders-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.slider-label {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.v-slider {
  position: relative;
  width: 22px;
  height: 200px;
  background: transparent;
  display: flex;
  justify-content: center;
}

.v-track {
  position: absolute;
  width: 6px;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(to bottom, #555, #333);
  box-shadow: inset 0 0 4px rgba(0,0,0,0.6);
}

.v-thumb {
  position: absolute;
  width: 28px;
  height: 18px;
  border-radius: 4px;
  cursor: grab;

  background: linear-gradient(135deg, #dcdcdc, #efefef);
  border: 1px solid #555;
  box-shadow:
    inset 2px 2px 5px rgba(255,255,255,0.4),
    inset -2px -2px 5px rgba(0,0,0,0.3),
    0 0 4px rgba(0,0,0,0.6);
}

.v-thumb:active {
  cursor: grabbing;
}

.slider-value {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ff99e6;
}

.hero {
  background: #000;            
  color: white;
  text-align: center;

  padding: 120px 20px 100px;   
  
  font-family: 'Montserrat', sans-serif;
  border-bottom: 2px solid #222; 
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.85;
  letter-spacing: 1px;
}


.song-card {
  max-width: 520px;
  margin: 0 auto 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #18181b;
  border: 1px solid #27272f;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.song-title {
  font-weight: 700;
  margin-bottom: 2px;
}

.song-artist {
  font-size: 0.9rem;
  color: #a1a1aa;
  margin-bottom: 4px;
}

.song-popularity {
  font-size: 0.9rem;
  color: #eab308;
  margin-bottom: 6px;
}

.song-note {
  font-size: 0.9rem;
  color: #e5e5e5;
  margin: 0;
}

.similar-explainer {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #9ca3af;
  text-align: center;
}


.song-link {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  color: #10b981;
  border: 1px solid #10b981;
  transition: background 0.15s ease, color 0.15s ease;
}

.song-link:hover {
  background: #10b981;
  color: #020617;
}



.search-container {
  margin: 20px auto 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 30px;
}

#artistFilter {
  flex: 1;
  padding: 6px 10px;
  font-size: 0.9rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

#songArtistSearchInput {
  width: 260px;
  max-width: 80vw;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #444;
  background: #050509;
  color: #f9fafb;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  outline: none;
}

#songArtistSearchInput::placeholder {
  color: #6b7280;
}

.search-btn {
  margin-top: 2px;
  width: 180px;
  height: 48px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
}

.search-feedback {
  font-size: 0.8rem;
  color: #9ca3af;
  min-height: 1em;
}

.search-results {
  margin-top: 6px;
  max-height: 200px;
  overflow-y: auto;
  width: 280px;
  max-width: 80vw;
}

.search-result-item {
  padding: 6px 10px;
  border-radius: 8px;
  background: #0b0b12;
  border: 1px solid #27272f;
  margin-bottom: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  text-align: left;
}

.search-result-item:hover {
  background: #18181f;
}

.search-result-title {
  font-weight: 600;
}

.search-result-artist {
  color: #9ca3af;
}

.search-result-pop {
  color: #facc15;
}

.hit-song-info {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #d1d5db;
  text-align: center;
}

.predicted-actual {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #d1d5db;
}

.predicted-actual-number {
  font-weight: 600;
  color: #facc15; 
}

.feature-row {
  margin-bottom: 24px;
}

.feature-row-main {
  text-align: center;
}

.feature-hist {
  margin-top: 8px;
  width: 100%;
  max-width: 400px;    
  height: 80px;   
  display: inline-block;
}

.hist-legend-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hist-legend-items {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.legend-box {
  width: 14px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
}

.legend-nonhit {
  background: #2b2b40;   /* same as non-hit bars */
}

.legend-hit {
  background: #4b5cff;   /* same as hit bars */
}

.legend-line {
  width: 14px;
  height: 0;
  border-top: 2px dashed #ff4b81;  /* matches your vertical line color */
  display: inline-block;
}

.legend-label {
  margin-right: 8px;
}

.hist-explain-btn {
  font-size: 0.8rem;
  padding: 6px 10px;
}

/* explanation panel */
.hist-explain-panel {
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.4;
  background: #111217;
  border-radius: 8px;
  padding: 10px 12px;
  max-width: 640px;
}

.hint-wrapper {
  padding-top: 0px;
  margin-top: 10px;
  text-align: center;
}

.hint-toggle {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  font-family: 'Montserrat', sans-serif;
}

.hint-toggle:hover {
  color: #e5e7eb;
}

.hint-panel {
  margin-top: 8px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.85rem;
  color: #d1d5db;
  text-align: left;
  line-height: 1.4;
  background: #050509;
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid #27272f;
}

.hint-panel ul {
  margin: 6px 0 6px 18px;
  padding: 0;
}

.hint-panel li {
  margin-bottom: 3px;
}

.hero {
  background: #000;
  color: white;
  text-align: center;
  padding: 120px 20px 100px;
  font-family: 'Montserrat', sans-serif;
  border-bottom: 2px solid #222;
  position: relative;      
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.85;
  letter-spacing: 1px;
}

.hero {
  background: #000;
  color: white;
  text-align: center;
  padding: 60px 20px 40px;   /* less vertical padding */
  font-family: 'Montserrat', sans-serif;
  border-bottom: 2px solid #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0px
}

.hero-logo {
  width: 300px;    /* much smaller */
  height: auto;
  margin-bottom: 0.02rem;
}

.title{
  margin-top: 0px;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 100px;
  }

  .hero-logo {
    position: static;
    transform: none;
    display: block;
    margin: 0 auto 16px;
    height: 56px;
  }
}

.info-icon {
  display: inline-block;
  margin-left: 6px;
  cursor: pointer;
  font-size: 12px;
  color: #bbb;
  padding: 2px 4px;
  border-radius: 50%;
  transition: color 0.2s ease;
  position: relative;
}

.info-icon:hover {
  color: white;
}

.info-icon:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 18px;
  top: -4px;
  background: black;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  width: 220px;
  white-space: normal;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* #exploreControls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  background: #111;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #27272f;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
} */

/* #exploreControls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;           
  width: 100%;
  max-width: 400px;   
  margin: 30px;
  flex-wrap: wrap;
  padding-top: 20px;
} */

#exploreControls label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: #ccc;
  min-width: 150px;
  max-width: 220px;
}

#exploreControls select,
#exploreControls input[type="text"] {
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #444;
  background: #050509;
  color: #f9fafb;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

#exploreControls input[type="range"] {
  margin-top: 8px;
  width: 100%;
}

.filter-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* center label + input */
  width: 100%;
}


.filter-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  flex-direction: column; /* stack label and input vertically */
  align-items: center;
}

#radarChartContainer {
  max-width: 600px;
  margin: 0 auto;
  background: #111;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #27272f;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

#radarCanvas {
  display: block;
  width: 100% !important;
  height: auto !important;
}

#exploreControls input[type="range"]::-webkit-slider-thumb {
  background: linear-gradient(145deg, #ff4b81, #ff77b3);
  border: 2px solid #ff006e;
}

#exploreControls input[type="range"]::-moz-range-thumb {
  background: linear-gradient(145deg, #ff4b81, #ff77b3);
  border: 2px solid #ff006e;
}

#exploreControls select:hover,
#exploreControls input[type="text"]:hover,
#exploreControls input[type="range"]:hover {
  border-color: #ff4b81;
}

@media (max-width: 640px) {
  #exploreControls {
    flex-direction: column;
    align-items: center;
  }

  #exploreControls label {
    width: 80%;
  }
}

#popFilter {
  width: 100%;
  height: 8px;
  background: #444;
  border-radius: 4px;
  outline: none;
  margin-top: 10px;    /* more spacing so it doesn't overlap label */
  margin-bottom:2px;
  writing-mode: horizontal-tb !important;
  appearance: none !important;
  transform: none !important;

}

#popFilter::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #ff4b81;
  border-radius: 50%;
  border: 2px solid #ff006e;
  cursor: pointer;
  margin-top: -5px; /* centers thumb over the track */
}

#popFilter::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #ff4b81;
  border-radius: 50%;
  border: 2px solid #ff006e;
  cursor: pointer;
}

#popValue {
  margin-left: 6px;
  font-size: 0.9rem;
  color: #444;
  font-weight: 400;
  margin-top: 6px;
}


.user-song-meta {
  margin: 18px auto 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.user-song-meta input {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #444;
  background: #050509;
  color: #f9fafb;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  outline: none;
  min-width: 180px;
  max-width: 220px;
}

.user-song-meta input::placeholder {
  color: #6b7280;
}

.user-song-label {
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #e5e7eb;
  font-style: italic;
}

.startover-btn {
  display: block;
  margin: 40px auto 10px;   /* centers the button under the results */
  padding: 0 28px;
  height: 48px;

  border-radius: 999px;
  border: 1px solid #4b5563;
  background: transparent;

  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #e5e7eb;
  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

#startOverBtn.startover-btn{
  padding-top: 0px;
  margin-top: 0px;
}

.startover-btn:hover {
  background: radial-gradient(circle at top left, #f97316, #111827 60%);
  color: #f9fafb;
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.45);
  transform: translateY(-1px);
}

.startover-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.similar-compare-container {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 16px;
  background: radial-gradient(circle at top, #111827, #020617);
  border: 1px solid #27272f;
}

.similar-compare-container h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
}

.similar-compare-text {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: #9ca3af;
}

#similarCompareCanvas {
  width: 100%;
  max-width: 420px;
  height: 260px;
  margin: 0 auto;
  display: block;
}




/* ===== Artist search: center the label + shrink the button ===== */
.artist-search-label {
  display: block;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 600;
  color: #f3f4f6;
}

/* center the inputs inside the small search area */
/* .search-container {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
} */

/* make the Artist SEARCH button smaller and tighter than the main search button */
#ArtistSearchBtn.search-btn {
  width: 110px;           /* smaller */
  height: 38px;
  padding: 6px 10px;
  font-size: 0.9rem;
}

/* keep other .search-btn styles unchanged — this only targets the artist button id */
#ArtistSearchBtn { box-sizing: border-box; }

/* Feedback/results for artist search: match existing search-results style */
#ArtistSearchFeedback { text-align:center; margin-top:6px; color:#9ca3af; }
#ArtistSearchResults { margin-top:6px; max-height:160px; overflow-y:auto; }

#ArtistSearchResults .search-result-item { background:#0b0b12; border:1px solid #27272f; }
#ArtistSearchFeedback { color:#9ca3af; text-align:center; margin-top:6px; }

.artist-search-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;   /* horizontally center EVERYTHING */
  width: 100%;
  max-width: 300px;
  gap: 0px !important;
}

.artist-search-wrap input{
  padding-top: 0px;
  margin-top: 0px;
}

.artist-search-wrap .search-container {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-top: 4px;
}


/* .slider-container {
    width: 300px;
    margin: 20px 0;
} */

.slider-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}


#duration-slider {
    width:100%;
    margin-top: 6px;
    background: #444;
}

#duration-slider .noUi-target {
  background: #444;          /* same as popFilter track */
  border-radius: 4px;
  height: 8px;               /* same track height */
  margin-top: 10px;
}

#duration-slider .noUi-connect {
  background: #444;       /* optional: like a colored fill */
  border: 0px;
}

#duration-slider .noUi-handle {
  background: #ff4b81;       /* same thumb color */
  border: 0px;
}

#duration-display {
    margin-top: 4px;
    font-size: 0.9rem;
    color: #444;
}

#genreFilter{
  margin-bottom: 15px;
  align-self: center;
}

.hero-subtext {
  max-width: 560px;
  margin: 0.75rem auto 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-cta {
  margin-top: 0.5rem;
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero-steps {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.9rem;
}

.hero-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 220px;
}

.hero-step-label {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.data-explorer-panel {
  background: radial-gradient(circle at top, #020617, #000 65%);
  border-radius: 22px;
  padding: 2.2rem 2.4rem;
  border: 1px solid rgba(148,163,184,0.18);
  box-shadow:
    0 30px 70px rgba(15,23,42,0.75),
    inset 0 1px 0 rgba(255,255,255,0.04);
  margin-bottom: 3rem;
}

.data-explorer-panel h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.feature-story-note {
  margin: 0.5rem auto 1.6rem;
  max-width: 520px;
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* === Data explorer layout === */
#data-explorer {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

#data-explorer h2 {
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  text-align: center;
}

.feature-story-lead {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.6;
}

/* Card wrapper for filters + radar */
#radarChartContainer {
  margin-top: 24px;
}

/* === Filter bar === */
/* #exploreControls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
} */

#exploreControls {
  display: flex !important;
  flex-wrap: wrap !important;          /* allow items to wrap to the next line */
  gap: 20px;                /* space between items */
  justify-content: center;  /* center the grid */
  max-width: 700px;         /* overall width of the group */
  margin: 0 auto;
  align-items: flex-start;
  padding-top: 20px;
  row-gap: 0px;
}

#exploreControls > * {
  box-sizing: border-box;
}

/* Extra space only under first row items */
.explore-field.first-row {
  margin-bottom: 40px;   /* or whatever spacing you want */
}


/* .explore-field {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  max-width: 260px;
  font-size: 0.85rem;
  color: #e5e7eb;
} */

.explore-field {
  flex: 1 1 calc(50% - 20px) !important; 
  min-width: 180px;         
  max-width: 260px;
  /* align-items: center; */
}

.explore-field-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* or center, depending on your goal */
  width: 100%;
}


/* .explore-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   
  justify-content: flex-start;
} */

.explore-field label,
.explore-field select,
.explore-field button,
.explore-field input {
  margin-left: 0 !important;
  margin-right: 0 !important;
}



.explore-field-content label {
  text-align: center !important;
  align-self: center;
  font-weight: 600;
  margin-bottom: 6px;
}




.explore-field select,
.explore-field input[type="text"] {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #374151;
  background: radial-gradient(circle at top, #020617, #030712);
  color: #f9fafb;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.explore-field select:focus,
.explore-field input[type="text"]:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 1px #f97316;
}







/* Duration slider row */
.slider-container {
  margin-top: 6px;
}

#duration-slider {
  width: 100%;
  margin-top: 6px;
}

#duration-display {
  margin-top: 4px;
  font-size: 0.8rem;
  color: #9ca3af;
}


/* Card around the radar itself */
#radarChartContainer {
  max-width: 640px;
  margin: 0 auto;
  background: radial-gradient(circle at top, #020617, #020617 55%, #000 100%);
  padding: 24px 22px 30px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.75),
    0 0 0 1px rgba(15,23,42,0.7);
}

.data-explorer-cta {
  margin: 3.5rem auto 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  position: relative;
}

/* subtle divider glow above button */
.data-explorer-cta::before {
  content: "";
  width: 120px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(236, 72, 153, 0.6),
    transparent
  );
  margin-bottom: 1.25rem;
  display: block;
}

.data-explorer-cta .hero-cta {
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  box-shadow:
    0 10px 35px rgba(236, 72, 153, 0.45),
    0 0 0 1px rgba(236, 72, 153, 0.4);
}

.data-explorer-cta-help {
  max-width: 520px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #9ca3af;
}

.mixing-board {
  padding: 52px 20px 40px;
  background: radial-gradient(circle at top, #020617, #020617 40%, #02010a 100%);
  border-top: 1px solid #111827;
  border-bottom: 1px solid #111827;
  text-align: center;
}

.mixing-board h2 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.mixing-board > p {
  font-size: 0.9rem;
  color: #9ca3af;
}

.sliders-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 32px;
}

.slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.slider-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 12px;
}

.v-slider {
  position: relative;
  width: 24px;
  height: 200px;
  background: transparent;
  display: flex;
  justify-content: center;
}

.v-track {
  position: absolute;
  width: 6px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(to bottom, #4b5563, #111827);
  box-shadow: inset 0 0 8px rgba(0,0,0,0.7);
}

.v-thumb {
  position: absolute;
  width: 26px;
  height: 18px;
  border-radius: 999px;
  cursor: grab;
  background: linear-gradient(145deg, #d4d4d8, #f9fafb);
  border: 1px solid #4b5563;
  box-shadow:
    inset 2px 2px 5px rgba(255,255,255,0.4),
    inset -2px -2px 5px rgba(0,0,0,0.3),
    0 0 4px rgba(0,0,0,0.6);
}

.v-thumb:active {
  cursor: grabbing;
}

.slider-value {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #f97316;
}

.progress-dots {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #4b5563;
  background: #020617;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.progress-dot:hover {
  transform: scale(1.2);
  border-color: #f97316;
}

.progress-dot.active {
  background: #f97316;
  border-color: #fdba74;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.7);
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .progress-dots {
    right: 12px;
  }
}


#resetFiltersBtn.search-btn{
  margin-bottom: 25px;
  align-self: center;
}

.explore-field button{
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  justify-content: center;
  align-items: center;
}

#createSongBtn{
  margin-bottom: 0px;
}

#alreadyHitBtn{
  margin-bottom: 60px;
}

#scroll-results{
  padding-bottom: 0px;
  margin: 2px;
}

#predictedResult{
  font-size: 1.5rem;
  font-weight: 500;
}

.predicted-text{
  margin-top: 12px;
}

.predicted-number{
  font-size:2.5rem;
  font-weight: 700;
  margin-top: 50px;
}

#closingMessage{
  font-size: 2rem;
  font-weight: 500;
  margin-top:10px;
}