:root {
  --fade-speed: 1s;
  --dot-color: rgba(255, 255, 255, 0.5);
  --dot-active: #fff;
}

.slider-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slider-blur {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 70;
  background-color: rgba(10, 0, 0, 0.1);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--fade-speed) ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 80;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--dot-color);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  padding: 0px;
}

.dot:hover {
  background-color: var(--dot-active);
  transform: scale(1.2);
}

.dot.active {
  background-color: var(--dot-active);
  width: 25px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .slider-container {
    height: 60vh;
  }

  .slider-blur {
    height: 60vh;
  }
  .dot {
    width: 6px;
    height: 6px;
  }
}
