
.pageswitch {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 36px;                       
  padding: 0 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
}
.pageswitch.visible {
  opacity: 1;
  pointer-events: auto;
}

.pageswitch::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.22);
  z-index: 0;
}

.pageswitch-dot {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.pageswitch-dot:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: scale(1.25);
}
.pageswitch-dot.active {
  background: #ffffff;
  transform: scale(1.6);
}