.vertical-social-bar {
  position: fixed;
  top: 33vh;
  right: 0;
  z-index: 99;
  background: #ff7c25;
  border-radius: 16px 0 0 16px;
  display: flex;
  flex-direction: column;
  padding: 4px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  align-items: center;
}
.vertical-social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
  width: 48px;
  height: 48px;
  transition: background 0.18s;
}
.vertical-social-bar a:hover {
  background: rgba(255,255,255,0.11);
}
.vertical-social-bar svg,
.vertical-social-bar img {
  width: 40px;
  height: 40px;
  display: block;
}
#goToTopBtn {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 99;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  box-shadow: none !important;
}
#goToTopBtn:focus {
  outline: none;
}
#goToTopBtn svg {
  display: block;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 800px) {
  .vertical-social-bar {
    top: unset;
    bottom: 140px;
  }
}
@media (max-width: 480px) {
  .vertical-social-bar {
    flex-direction: row;
    border-radius: 16px 16px 0 0;
    bottom: 110px;
    top: unset;
  }
  .vertical-social-bar a {
    width: 40px;
    height: 40px;
    padding: 2px 2px;
  }
  #goToTopBtn {
    bottom: 36px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

/* Hide specific slides in hero banner - keep only Labyrinth slide */
.hero-banner .slide:not(:first-child) {
    display: none !important;
}

/* Alternative method - if Labyrinth is the second slide */
.hero-banner .slide:first-child {
    display: none !important;
}

/* Or target by slide index (adjust number as needed) */
.hero-banner .slide:nth-child(2) {
    display: none !important;
}

/* Hide slide navigation dots/arrows if they exist */
.hero-banner .slider-nav,
.hero-banner .slider-arrows,
.hero-banner .slider-dots {
    display: none !important;
}


