.tv-marquee { position: relative; margin-top: 36px; overflow: hidden; direction: ltr; }
.tv-marquee-row { overflow: hidden; margin-bottom: 16px; mask-image: linear-gradient(to right,transparent,#000 4%,#000 96%,transparent); }
.tv-marquee-track { display: flex; width: max-content; animation: tv-marquee-drift var(--marquee-duration,80s) linear infinite; }
.tv-marquee-row:nth-child(2) .tv-marquee-track { animation-direction: reverse; }
.tv-marquee-group { display: flex; gap: 16px; padding-right: 16px; flex-shrink: 0; }
.tv-marquee-group img { display: block; width: 172px; height: 246px; object-fit: cover; border-radius: 14px; border: 1px solid rgba(148,163,184,.16); }
#sports-slider .tv-marquee-group img { height: 210px; }
.tv-marquee.is-paused .tv-marquee-track { animation-play-state: paused; }
.tv-marquee-pause { display: block; margin: 4px 8px 0 auto; width: 34px; height: 34px; border: 1px solid #475569; border-radius: 50%; background: #0f172a; color: #c7d2fe; cursor: pointer; }
@keyframes tv-marquee-drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media(max-width:767px) {
 .tv-marquee { margin-top: 24px; }
 .tv-marquee-row { margin-bottom: 12px; }
 .tv-marquee-group { gap: 12px; padding-right: 12px; }
 .tv-marquee-group img { width: 124px; height: 178px; border-radius: 10px; }
 #sports-slider .tv-marquee-group img { height: 154px; }
}
@media(prefers-reduced-motion:reduce) {
 .tv-marquee-track { animation: none !important; }
 .tv-marquee-row { overflow-x: auto; mask-image: none; }
 .tv-marquee-group[aria-hidden=true], .tv-marquee-pause { display: none; }
}
