.carousel {
  position: relative;
  border: 1px solid rgba(57, 212, 255, 0.3);
  background: radial-gradient(circle at 20% 0%, rgba(159, 108, 255, 0.2), rgba(8, 11, 17, 0.9) 55%);
}
.carousel ul {
  overflow: auto;
  display: flex;
  flex-wrap: nowrap;
  scroll-snap-type: x mandatory;
  scroll-snap-points-y: repeat(100%);
  scroll-behavior: smooth;
  background: linear-gradient(160deg, rgba(9, 13, 23, 0.92), rgba(19, 27, 43, 0.9));
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin: 0;
  padding: 0;
}
.carousel ul::-webkit-scrollbar {display: none; /* Hide scrollbar for Chrome, Safari and Opera */} 
.carousel ul li {
  position: relative;
  min-width: 100%;
  list-style: none;
  background: url() center center / cover no-repeat;
  scroll-snap-align: start;
}
.carousel ul li > * {position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.carousel ul li > img {
  object-fit: contain;
  background: linear-gradient(180deg, rgba(7, 10, 17, 0.7), rgba(7, 10, 17, 0.2));
}
.carousel ul li > video {
  object-fit: contain;
  background: linear-gradient(180deg, rgba(7, 10, 17, 0.7), rgba(7, 10, 17, 0.2));
}
.carousel ul li > div {display: flex; justify-content: center; align-items: center; color: white; font-weight: bold; font-size: 20px;}
.carousel ol {
  position: absolute;
  bottom: 12px;
  display: flex;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  margin: 0;
}
.carousel ol li {list-style: none; padding: 0 5px;}
.carousel ol li a {
  display: block;
  height: 16px;
  width: 16px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(8, 11, 17, 0.4);
  border-radius: 100%;
  box-shadow: 0 0 0 1px rgba(57, 212, 255, 0.2);
}
.carousel ol li a:hover,
.carousel ol li a:focus-visible {
  border-color: #39d4ff;
  box-shadow: 0 0 0 2px rgba(159, 108, 255, 0.35);
}
.carousel ol li.selected a {background: #39d4ff;}
.carousel .prev, .carousel .next {
  display: none;
  user-select: none;
  cursor: pointer;
  font-size: 50px;
  color: #eef4ff;
  position: absolute;
  left: 0;
  padding: 15px 15px 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  line-height: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.carousel .next {left: auto; right: 0;}
.carousel .prev:hover,
.carousel .next:hover,
.carousel .prev:focus-visible,
.carousel .next:focus-visible {
  background: rgba(8, 11, 17, 0.46);
  color: #39d4ff;
}