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

/* Animated glow used behind the featured hero + card thumbnails */
.thumb {
  position: relative;
  overflow: hidden;
  background-size: 200% 200%;
  animation: drift 8s ease infinite;
}
@keyframes drift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.card:hover .play-overlay { opacity: 1; }
.card:hover .thumb-inner { transform: scale(1.06); }
