:root {
  --lg-bg-color: rgba(0, 0, 0, 0.1);
  --lg-highlight: rgba(255, 255, 255, 0.75);
  --lg-text: #ffffff;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: black;
  color: white;
}

p {
  margin: 0;
  padding: 0;
}

.billboard-item {
  width: 100%;
  position: relative;
}
.billboard-item img {
  width: 100%;
  height: auto;
  display: block;
}
.swiperContainer {
  position: absolute;
  height: 30px;
  left: 20px;
  right: 20px;
  bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 20;
}

.swiper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  isolation: isolate;
}

.glass-filter {
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(2px);
  filter: url(#lg-dist);
  isolation: isolate;
  filter: contrast(1.2) brightness(1.1);
  border-radius: inherit;
}

.glass-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--lg-bg-color);
  border-radius: inherit;
}

.glass-specular {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  overflow: hidden;
  box-shadow: inset 1px 1px 0 var(--lg-highlight),
    inset 0 0 5px var(--lg-highlight);
}

.glass-content {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 15px;
  width: 100%;
}

.swiper-bullets {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 100%;
}
.swiper-bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
}

.swiper-handle-touch {
  position: absolute;
  width: 44px;
  height: 44px;
  background: transparent;
  cursor: grab;
  z-index: 11; /* Above the handle */
}

.swiper-handle-touch:active {
  cursor: grabbing;
}

.swiper-handle {
  position: absolute;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.meta-overlay {
  position: absolute;
  top: 5px;
  left: 10px;
  padding: 10px;
  color: white;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  gap: 3px;
}

.date-glass {
  pointer-events: none;
  position: relative;
  border-radius: 20px;
  padding: 8px 12px;
  isolation: isolate;
  background-color: rgba(30, 29, 53, 0.25);
}

.link-glass {
  position: relative;
  border-radius: 20px;
  padding: 8px 12px;
  isolation: isolate;
  background-color: rgba(30, 29, 53, 0.25);
}

.link {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding-top: 1px;
}

.link svg {
  width: 16px;
  height: 16px;
}

#info {
  margin: 10px;
  padding: 10px;
  border: 1px solid white;
  border-radius: 20px;
}

a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}

#info > div {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
}

#gallery > p {
  padding: 10px;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  body {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  main {
    width: 675px;
  }


  #info {
    max-width: 100%;
    padding: 20px;
    margin: 0;
    border-radius: 20px;
    margin: 10px 0;
  }

  .swiperContainer {
    height: 35px;
    left: 30px;
    right: 30px;
    bottom: 15px;
  }

  .swiper-bullet {
    width: 6px;
    height: 6px;
  }
}
