 /* Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: Arial, sans-serif;
            background: linear-gradient(to right, rgba(1, 1, 24, 0.897), rgba(0, 0, 0, 0.92));
            color: white;
            min-height: 100vh;
        }
        
        /* Navigation Bar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.8);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            flex-wrap: wrap;
        }
        
        .logo {
            color: rgb(216, 43, 43);
            font-size: 1.5rem;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: rgb(131, 5, 5);
        }
        
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            margin-right: 1rem;
        }
        
        .nav-list li a {
            text-decoration: none;
            color: white;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-list li a span {
            color: brown;
        }
        
        .nav-list li a:hover {
            color: #0d80b4;
            text-decoration: underline;
        }
        
        .nav-icons {
            display: flex;
            gap: 1rem;
        }
        
        /* Mobile Menu Toggle (hidden by default) */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        /* Reservation Form Container */
        .reservation-container {
            background-color: rgba(0, 0, 0, 0.65);
            border-radius: 30px;
            padding: 2rem;
            margin: 2rem auto;
            max-width: 900px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .reservation-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .reservation-header h1 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: #d82b2b;
        }
        
        .reservation-header p {
            font-size: 1.1rem;
            color: #ccc;
        }
        
        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, brown, transparent);
            margin: 1.5rem 0;
            border: none;
        }
        
        /* Reservation Form */
        .reservation-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #d82b2b;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: transparent;
            border: none;
            border-bottom: 1px solid brown;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-bottom: 1px solid #d82b2b;
            background-color: rgba(216, 43, 43, 0.1);
        }
        
        .full-width {
            grid-column: span 2;
        }
        
        .submit-btn {
            background-color: #d82b2b;
            color: white;
            border: none;
            padding: 1rem;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .submit-btn:hover {
            background-color: #a51c1c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Movie Selection Section */
        .movie-selection {
            margin-top: 2rem;
        }
        
        .movie-card {
            display: flex;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1rem;
        }
        
        .movie-poster {
            width: 100px;
            height: 150px;
            object-fit: cover;
        }
        
        .movie-info {
            padding: 1rem;
            flex-grow: 1;
        }
        
        .movie-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #d82b2b;
        }
        
        .movie-meta {
            font-size: 0.9rem;
            color: #ccc;
            margin-bottom: 0.5rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-list {
                display: none;
                width: 100%;
                flex-direction: column;
                margin: 1rem 0;
            }
            
            .nav-list.active {
                display: flex;
            }
            
            .nav-icons {
                display: none;
            }
            
            .reservation-form {
                grid-template-columns: 1fr;
            }
            
            .full-width {
                grid-column: span 1;
            }
            
            .movie-card {
                flex-direction: column;
            }
            
            .movie-poster {
                width: 100%;
                height: auto;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .reservation-container {
            animation: fadeIn 0.5s ease-out;
        }