#carouselExampleDark {
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-item {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

#carouselExampleDark .carousel-inner:active {
  cursor: grabbing;
}

.carousel-indicators {
  margin-bottom: 20px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  border: 2px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  opacity: 1;
  background-color: #ff3600;
  width: 30px;
  border-radius: 10px;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 20px;
  bottom: 40px;
}

.carousel-caption h5 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 5px;
}