Huge Movies Collection Page

.no-results text-align: center; grid-column: 1 / -1; padding: 3rem;

<div class="filters-bar"> <div class="filter-group"> <label>🎭 Genre</label> <select id="genreFilter"> <option value="all">All</option> <option value="Action">Action</option> <option value="Drama">Drama</option> <option value="Sci-Fi">Sci-Fi</option> <option value="Comedy">Comedy</option> <option value="Horror">Horror</option> </select> </div> HUGE MOVIES COLLECTION

let currentModalMovie = null; function openModal(movie) currentModalMovie = movie; const modal = document.getElementById('movieModal'); document.getElementById('modalTitle').innerText = movie.title; document.getElementById('modalDetails').innerHTML = <strong>$movie.year</strong> • $movie.genre<br> ⭐ $movie.rating/10<br><br> 📖 $movie.synopsis<br> 🎬 Part of the HUGE MOVIES COLLECTION. ; const btn = document.getElementById('modalWatchlistBtn'); const isIn = watchlist.some(w => w.id === movie.id); btn.innerText = isIn ? '❌ Remove from My Vault' : '➕ Add to My Vault'; modal.style.display = 'flex'; .no-results text-align: center

.poster width: 100%; aspect-ratio: 2 / 3; object-fit: cover; background: #0b0b12; grid-column: 1 / -1

.filter-group background: #1e1e2a; padding: 0.5rem 1rem; border-radius: 40px; display: flex; align-items: center; gap: 0.6rem;