/* Bounce Scroll Indicator */
.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  animation: bounce 2s infinite;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-indicator svg {
  margin-bottom: 5px;
  filter: drop-shadow(0 0 8px rgba(0, 232, 252, 0.6));
}

.scroll-text {
  color: var(--neon-aqua);
  font-family: var(--header-font);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 0 8px rgba(0, 232, 252, 0.6);
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
