MovieMania – Your Ultimate Movie Destination
https://cdn.tailwindcss.com
body {
font-family: ‘Arial’, sans-serif;
background-color: #1a1a1a;
color: #ffffff;
}
.movie-card {
transition: transform 0.3s ease;
}
.movie-card:hover {
transform: scale(1.05);
}
Popular Movies
Action Blockbuster
2025 | Action | 2h 15m
An epic adventure with thrilling action sequences.
Watch Now
Sci-Fi Odyssey
2025 | Sci-Fi | 2h 30m
A journey through the stars with stunning visuals.
Watch Now
Romantic Escape
2025 | Romance | 1h 45m
A heartwarming love story set in a picturesque town.
Watch Now
Mystery Thriller
2025 | Thriller | 2h
A gripping tale of suspense and intrigue.
Watch Now
// Basic search functionality
const searchButton = document.querySelector(‘button’);
const searchInput = document.querySelector(‘input’);
searchButton.addEventListener(‘click’, () => {
const query = searchInput.value.trim();
if (query) {
alert(`Searching for: ${query}`);
// Future implementation: Filter movies or redirect to search results
}
});
// Smooth scroll for Explore Now button
document.querySelector(‘a[href=”#movies”]’).addEventListener(‘click’, (e) => {
e.preventDefault();
document.querySelector(‘#movies’).scrollIntoView({ behavior: ‘smooth’ });
});