/* Custom Scrollbars and Typography styles */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #13111C;
}
::-webkit-scrollbar-thumb {
  background: #332D4D;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF3366;
}

/* Creator Selection Active State */
.creator-card.active {
  border-color: #FF3366 !important;
  background-color: rgba(255, 51, 102, 0.08) !important;
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.25);
}
.creator-card.active .selected-badge {
  display: block !important;
}

/* Pulse animation for preview glow */
@keyframes neon-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.3), inset 0 0 15px rgba(255, 51, 102, 0.1);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 184, 0, 0.4), inset 0 0 20px rgba(255, 184, 0, 0.15);
  }
}

.glow-active {
  animation: neon-glow 3s infinite ease-in-out;
}

/* Ensure nice text shadow for subtitles in player */
.caption-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0,0,0,0.5);
}
