@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #FF6B9D #1a1a2e;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #1a1a2e;
}

*::-webkit-scrollbar-thumb {
  background: #FF6B9D;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #00D9FF;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #1a1a2e;
  border-radius: 3px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #FF6B9D;
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #FF6B9D;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}