Top Rated Tamil Movies Patched -
.hero p color: #b9b9e0; margin-top: 0.5rem; font-size: 1.1rem;
// Optional: Click on movie card to alert (expand later) document.addEventListener("click", (e) => const card = e.target.closest(".movie-card"); if (card) const id = card.getAttribute("data-id"); const movie = moviesData.find(m => m.id == id); if (movie) alert( 🎥 $movie.title ($movie.year)\n⭐ $movie.rating/10\n\n$movie.synopsis ); top rated tamil movies
.movie-grid display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; margin-top: 1.5rem; .hero p color: #b9b9e0
const moviesData = [ id: 1, title: "Nayakan (1987)", year: 1987, rating: 8.6, poster: "https://via.placeholder.com/300x450?text=Nayakan", // Replace with actual image URL synopsis: "A common man's rise to power as a Mumbai don, and his complex relationship with his daughter.", era: "classic" , id: 2, title: "Anbe Sivam", year: 2003, rating: 8.7, poster: "https://via.placeholder.com/300x450?text=Anbe+Sivam", synopsis: "Two mismatched strangers on a road trip discover life, love, and humanity.", era: "2000s" , id: 3, title: "Pariyerum Perumal", year: 2018, rating: 8.8, poster: "https://via.placeholder.com/300x450?text=Pariyerum+Perumal", synopsis: "A law student faces brutal caste discrimination and fights for dignity.", era: "2010s" , id: 4, title: "Jai Bhim", year: 2021, rating: 8.9, poster: "https://via.placeholder.com/300x450?text=Jai+Bhim", synopsis: "A tribal woman fights for justice after her husband's illegal arrest.", era: "2020s" , id: 5, title: "Vikram Vedha", year: 2017, rating: 8.5, poster: "https://via.placeholder.com/300x450?text=Vikram+Vedha", synopsis: "A cop and a gangster play a cat-and-mouse game of moral ambiguity.", era: "2010s" , id: 6, title: "Super Deluxe", year: 2019, rating: 8.4, poster: "https://via.placeholder.com/300x450?text=Super+Deluxe", synopsis: "Interwoven stories of an alien, a trans woman, a cheating wife, and more.", era: "2010s" , id: 7, title: "Soorarai Pottru", year: 2020, rating: 8.7, poster: "https://via.placeholder.com/300x450?text=Soorarai+Pottru", synopsis: "A man from rural background dreams to make low-cost airlines accessible.", era: "2020s" , id: 8, title: "Vada Chennai", year: 2018, rating: 8.6, poster: "https://via.placeholder.com/300x450?text=Vada+Chennai", synopsis: "A young carrom player gets trapped in North Chennai's gang wars.", era: "2010s" , id: 9, title: "Aadukalam", year: 2011, rating: 8.3, poster: "https://via.placeholder.com/300x450?text=Aadukalam", synopsis: "Rooster fights, pride, and betrayal in a rural backdrop.", era: "2010s" , id: 10, title: "Maharaja", year: 2024, rating: 8.7, poster: "https://via.placeholder.com/300x450?text=Maharaja", synopsis: "A barber's shocking quest for revenge after a burglary.", era: "2020s" ]; const movieGrid = document.getElementById("movieGrid"); const filterBtns = document.querySelectorAll(".filter-btn"); const card = e.target.closest(".movie-card")
// Sort by rating descending filtered.sort((a,b) => b.rating - a.rating);
.movie-info padding: 1rem 1.2rem 1.2rem;
<footer> <p>⭐ IMDb ratings & audience reviews • Updated March 2026</p> </footer> </div> <script src="script.js"></script> </body> </html> * margin: 0; padding: 0; box-sizing: border-box; font-family: system-ui, 'Segoe UI', 'Poppins', sans-serif;