body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: black;
  user-select: none;
  overflow: hidden;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

/* Carousel */
.carousel-container {
  position: relative;
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
}

.carousel {
  height: 100%;
  display: flex;
  overflow: hidden;
}

/* Carousel slide  */
.carousel-slide {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  opacity: 0;
  will-change: opacity;
}

.carousel[data-animation-style="fade"] .carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel[data-animation-style="fade"] .carousel-slide.active {
  opacity: 1;
}

.carousel[data-animation-style="scroll"] {
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
}

.carousel[data-animation-style="scroll"] .carousel-slide {
  scroll-snap-align: start;
  opacity: 1;
}

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

/* Carousel navigation */
.carousel-navigation-container {
  position: fixed;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 2s ease,
    visibility 0.5s ease;
  bottom: calc(var(--safe-area-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  display: flex;
  gap: 10px;
}

@media (max-height: 400px) {
  .carousel-navigation-container {
    opacity: 0;
    visibility: hidden;
  }
}

.carousel-navigation {
  inline-size: 40px;
  block-size: 40px;
  display: inline-block;
  background: center / cover no-repeat;
}

.carousel-navigation.prev {
  background-image: url("./prev-slide-button-DQVDkYa9.webp");
}

.carousel-navigation.prev:hover {
  cursor: pointer;
}

.carousel-navigation.next {
  background-image: url("./next-slide-button-BbZnxMD-.webp");
}

.carousel-navigation.next:hover {
  cursor: pointer;
}

.carousel-navigation:hover {
  opacity: 0.8;
  cursor: pointer;
}

/* Carousel pagination dots */
.carousel-pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-pagination-dots .carousel-pagination-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
  background-image: url("./dimmed-pagination-dot-BfP9EQNd.webp");
  background-size: cover;
}

.carousel-pagination-dot:hover {
  opacity: 0.8;
  cursor: pointer;
}

.carousel-pagination-dots .carousel-pagination-dot.active {
  background-image: url("./pagination-dot-GXGfMf7U.webp");
}
.button {
  position: absolute;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
  bottom: calc(var(--safe-area-bottom));
  width: 170px;
  cursor: pointer;
}

@media (max-height: 400px) {
  .button {
    opacity: 0;
    visibility: hidden;
  }
}

@media (min-width: 768px) {
  .button {
    left: calc(var(--safe-area-left));
    transform: none;
  }
}

@media (max-width: 767px) {
  .button {
    left: 50%;
    transform: translateX(-50%);
  }
}
.gradient-overlay {
  position: absolute;
  inset: 0;
  width: 100dvw;
  height: 100dvh;
  pointer-events: none;

  background: linear-gradient(
    to bottom,

    /* Top fade-out */ hsla(0, 0%, 0%, 0.738) 0px,
    hsla(0, 0%, 0%, 0.541) 40px,
    hsla(0, 0%, 0%, 0.382) 72px,
    hsla(0, 0%, 0%, 0.278) 100px,
    hsla(0, 0%, 0%, 0.194) 126px,
    hsla(0, 0%, 0%, 0.126) 150px,
    hsla(0, 0%, 0%, 0.075) 172px,
    hsla(0, 0%, 0%, 0.042) 192px,
    hsla(0, 0%, 0%, 0.021) 208px,
    hsla(0, 0%, 0%, 0.008) 220px,
    hsla(0, 0%, 0%, 0.002) 228px,
    hsla(0, 0%, 0%, 0) 232px,
    /* Transparent middle */ hsla(0, 0%, 0%, 0) calc(100% - 232px),
    /* Bottom fade-in */ hsla(0, 0%, 0%, 0.002) calc(100% - 228px),
    hsla(0, 0%, 0%, 0.008) calc(100% - 220px),
    hsla(0, 0%, 0%, 0.021) calc(100% - 208px),
    hsla(0, 0%, 0%, 0.042) calc(100% - 192px),
    hsla(0, 0%, 0%, 0.075) calc(100% - 172px),
    hsla(0, 0%, 0%, 0.126) calc(100% - 150px),
    hsla(0, 0%, 0%, 0.194) calc(100% - 126px),
    hsla(0, 0%, 0%, 0.278) calc(100% - 100px),
    hsla(0, 0%, 0%, 0.382) calc(100% - 72px),
    hsla(0, 0%, 0%, 0.541) calc(100% - 40px),
    hsla(0, 0%, 0%, 0.738) 100%
  );
}
