<title>Movie Ticket Booking</title> <script> document.addEventListener('scroll', () => { const nav = document.querySelector('nav'); if (window.scrollY > 0) { nav.classList.add('scrolled'); } else { nav.classList.remove('scrolled'); } });
    function toggleDropdown() {
        const dropdownContent = document.getElementById('dropdown-content');
        if (dropdownContent.style.display === 'block') {
            dropdownContent.style.display = 'none';
        } else {
            dropdownContent.style.display = 'block';
        }
    }
</script>
Logo
<section class="background-video">
    <video autoplay muted loop>
        <source src="./bgvid.mp4" type="video/mp4">
        Your browser does not support the video tag.
    </video>
    <h1>Манай дэлгэцнээ</h1>
</section>

<section class="featured-movies">
    <div class="movie-container"></div>
</section>

<footer>
    <p>© Prime Cineplex 2024</p>
</footer>

<script src="script.js"></script>