html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #262626; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #eab308; }
@keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
.animate-marquee { display: flex; animation: marquee 20s linear infinite; }
.animate-marquee:hover { animation-play-state: paused; }
.movie-card { transition: all 0.3s ease; }
.movie-card:hover { transform: translateY(-8px); border-color: rgba(234, 179, 8, 0.5); box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
