.slider-container {
  position: relative;
  width: 100vw;
  height: 600px;
  overflow: hidden;
  background: #222;
}
.slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.slide {
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide img {
  width: 100vw;
  height: 600px;
  object-fit: cover;
}
.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff3;
  border: none;
  cursor: pointer;
}
.slider-dot.active {
  background: #fff;
}
