html,
body {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  background: #0f0f11;
  color: #fff;
  line-height: 1.5;
  font-family:
    -apple-system, system-ui, 'Helvetica Neue', Helvetica, Arial, 'Segoe UI',
    Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  &.light {
    background: #fff;
  }
}
#app {
  /*height: 100%;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swiper {
  width: 100%;
  height: 100%;
}
@media (orientation: portrait) {
  .swiper {
    aspect-ratio: 16/9;
    height: auto;
  }
}

.super-flow-content {
  padding: 16px;
  font-weight: bold;
  line-height: 1.1;
  text-wrap-style: balance;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  font-size: 6vw;
  inset-inline-start: 25%;
  width: 50%;
  transition-property: transform;
}

.swiper-super-flow .swiper-pagination-bullets {
  position: absolute;
  background: rgba(200, 200, 200, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(16px);

  white-space: nowrap;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-vertical-gap: 10px;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-color: #fff;
}

.swiper-super-flow .swiper-pagination-bullets.swiper-pagination-horizontal {
  padding: 16px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0;
}
.swiper-super-flow .swiper-pagination-bullets.swiper-pagination-vertical {
  padding: 16px;
}

.super-flow-image video {
  width: inherit;
}

.swiper-container {
    /* Use video aspect ratio */
    aspect-ratio: 2.133; /* or 1280/600 */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    /*object-fit: contain; /* Shows full image with bars if needed */
    /* OR */
    object-fit: cover; /* Crops image to fill container */
}

.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Video displays perfectly */
}

.swiper-slide {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.swiper-slide-active {
    opacity: 1;
}

