/* Hilangkan Scrollbar pada Horisontal Nav Mobile */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Custom Scrollbar Universal */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.dark .custom-scrollbar::-webkit-scrollbar-track {
  background: #090d16;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.dark .custom-scrollbar::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 9999px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

/* Efek Card Hover & Touch Active */
.anime-card {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
  touch-action: manipulation;
}

.anime-card:active {
  transform: scale(0.97);
}

@media (min-width: 640px) {
  .anime-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(244, 63, 94, 0.15);
  }
}

.episode-btn {
  touch-action: manipulation;
  min-height: 40px;
}