/* Equalizer Animation */
.animate-equalizer-1 { animation: bounce 0.8s infinite alternate; }
.animate-equalizer-2 { animation: bounce 1.1s infinite alternate; }
.animate-equalizer-3 { animation: bounce 0.9s infinite alternate; }
@keyframes bounce {
  0% { height: 20%; }
  100% { height: 100%; }
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #052e16; /* royal-950 */
}
::-webkit-scrollbar-thumb {
  background: #166534; /* royal-800 */
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #14532d; /* royal-900 */
}

/* Range Input styling */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #fbbf24;
    cursor: pointer;
    margin-top: -4px;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}
