.slider-container {
  background: rgba(74, 201, 227, 0.2); /* cyan très lumineux */
  backdrop-filter: blur(3px) saturate(70%);
  -webkit-backdrop-filter: blur(12px) saturate(70%);
  width: 700px;
  margin: auto;
  padding: 20px;
  border: 1px solid white;
  border-radius: 20px;
  display: inline-block;
}

.slider-title {
  font-size: 1.2em;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.track {
  position: relative;
  height: 200px;
  overflow: visible;
  z-index: 2;
}

#ticks { touch-action: pan-y; }  /* et pas 'none' */

.ticks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 10px;
  position: relative;
}

.tick {
  width: 5px;
  background: white;
  height: 50px;
  border-radius: 30%;
  transform: scaleY(1);
  transform-origin: center;
  transition: transform 0.2s ease-out;
}

.tick.tall {
  height: 100px;
}

.labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 10px;
  font-weight: bold;
  font-size: 30px;
}

.cursor-dot {
  visibility: hidden;
  position: absolute;
  bottom: -10px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: left 0.3s ease;
}

.ripple {
  visibility: hidden;
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 70%, transparent 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1);
  transition: top 0.1s, left 0.1s, opacity 0.4s ease;
  opacity: 1;
}

.ripple.fade-out {
  opacity: 0;
}

/* #image-display, #slider-display {
  display: inline-block;
  width: 49%;
  margin-top: 200px;
  vertical-align: top;
}

#image-display {
  text-align: right;
  padding-right: 230px;
}

#slider-display {
  text-align: left;
  padding-left: 0;
  margin-top: 250px;
}

#image-display img {
  width: 400px;
  height: 400px;
} */

#image-display, #slider-display {
  display: block;
  width: 100%;
}

#image-display {
  background-image: url(../images/photo-rue-curseur.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 100px;
  text-align: center;
  width: 2000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}

#slider-display {
  margin-top: 50px;
  text-align: center;
}

#image-display img {
  width: 2000px;
  border: 1px solid white;
  border-radius: 20px;
}

#image-display img.noshow {
  display: none;
}

div.spacer {
  height: 100px;
}