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);
}

MovieMania

Search

Welcome to MovieMania

Discover the latest movies and classics!

Explore Now

Popular Movies

Movie 1

Action Blockbuster

2025 | Action | 2h 15m

An epic adventure with thrilling action sequences.

Watch Now

Movie 2

Sci-Fi Odyssey

2025 | Sci-Fi | 2h 30m

A journey through the stars with stunning visuals.

Watch Now

Movie 3

Romantic Escape

2025 | Romance | 1h 45m

A heartwarming love story set in a picturesque town.

Watch Now

Movie 4

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’ });
});

Design a site like this with WordPress.com
Get started