/* Scroll-down indicator container */
.rm-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  animation: bounce 2s infinite;
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(8px); }
  60% { transform: translateX(-50%) translateY(4px); }
}

/* Adjust size for mobile */
@media (max-width: 600px) {
  .rm-scroll-indicator svg {
    width: 18px;
    height: 30px;
  }
  .rm-scroll-indicator {
    bottom: 15px;
  }
}

@media (max-width: 375px) {
  .rm-scroll-indicator svg {
    width: 16px;
    height: 28px;
  }
  .rm-scroll-indicator {
    bottom: 12px;
  }
}
