/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0B0F0E;
}
::-webkit-scrollbar-thumb {
  background: #1B2B24;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2D4A3E;
}

/* Style Card styling */
.style-card {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.style-card:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.4);
}
.style-card.selected {
  border-color: #10B981 !important;
  background-color: rgba(16, 185, 129, 0.08) !important;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.22);
}
.style-card.selected .check-indicator {
  display: flex !important;
}

/* Video Card hover effects */
.video-card {
  transition: all 0.2s ease;
}
.video-card:hover {
  transform: translateY(-2px);
  border-color: #1B2B24;
}

/* Pulse glow */
@keyframes subtle-glow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4)); }
}
.glow-pulse {
  animation: subtle-glow 3s infinite ease-in-out;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}