const selectedMovie = moviesData.find(m => m.id === movieId); if (selectedMovie) selectedMovieNameSpan.innerText = selectedMovie.title; currentlySelectedId = movieId; // highlight corresponding card const targetCard = document.querySelector(`.movie-card[data-id='$movieId']`); if (targetCard) targetCard.classList.add('selected-highlight'); // optional: smooth scroll into view if needed, but not intrusive
body background: linear-gradient(145deg, #0a0c12 0%, #0f1219 100%); font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif; color: #f0f3fa; line-height: 1.4; min-height: 100vh; padding: 2rem 1.5rem; 7hitmovies.home