/* Scroll Controls Container */
.scroll-controls {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

@media (max-width: 768px) {
  .scroll-controls {
    bottom: 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .scroll-controls.visible {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Scroll Buttons */
.scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border: none;
  color: #ced6e0;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.scroll-btn:active {
  transform: scale(0.95);
}