* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #111;
    color: white;
}
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 4%;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
}
.logo {
    font-size: 25px;
    font-weight: 900;
    color: #e50914;
    text-decoration: none;
    letter-spacing: 1px;
}
.logo span { color: white; }
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.nav-links a:hover { color: #b3b3b3; }
.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}
.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}
.banner {
    background-image: url('https://image.tmdb.org/t/p/original/rAiYTfKGqDCRIIqo664sY9XZIvQ.jpg');
    background-size: cover;
    background-position: center top;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 4%;
}
.banner-contents {
    max-width: 500px;
    z-index: 10;
    padding-top: 100px;
}
.banner-title {
    font-size: 3rem;
    font-weight: 800;
    padding-bottom: 0.3rem;
}
.banner-description {
    width: 100%;
    line-height: 1.4;
    padding-top: 1rem;
    font-size: 1rem;
    max-width: 360px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}
.banner-buttons { margin-top: 20px; }
.btn {
    cursor: pointer;
    color: #fff;
    outline: none;
    border: none;
    font-weight: 700;
    border-radius: 4px;
    padding: 10px 25px;
    margin-right: 1rem;
    font-size: 1rem;
    transition: transform 0.2s;
}
.btn:hover { transform: scale(1.05); }
.btn-play { background-color: white; color: black; }
.btn-info { background-color: rgba(109, 109, 110, 0.7); color: white; }
.banner-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 7.4rem;
    background-image: linear-gradient(180deg, transparent, rgba(17,17,17,0.6), #111);
}
.row {
    padding: 20px 4%;
    height: auto;
    margin-bottom: 20px;
}
.row h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.row-posters {
    display: flex;       
    justify-content: flex-start; 
    gap: 20px;              
    padding: 20px 0;
}
.poster-card {
    width: 200px;         
    height: 300px;        
    margin-bottom: 10px;
    flex-shrink: 0;       
    transition: transform 450ms;
    cursor: pointer;
}
.poster-card img {
    width: 100%;          
    height: 100%;         
    object-fit: cover;    
    border-radius: 4px;
    display: block;
}
.poster-card:hover {
    transform: scale(1.05);
    z-index: 1;
}
.form-section-container {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    margin-top: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
    margin-top: 20px;
}
.contact-info strong:first-child { margin-top: 0; }
.contact-info p {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #333;
    border: none;
    border-radius: 4px;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}
.contact-form input::placeholder, 
.contact-form textarea::placeholder { color: #8c8c8c; }
.contact-form input:focus, 
.contact-form textarea:focus { background-color: #454545; }
footer {
    padding: 30px 4%;
    text-align: center;
    color: #757575;
    font-size: 14px;
    margin-top: 0;
}
.copyright { margin-top: 10px; }
@media (max-width: 768px) {
    .banner { height: 50vh; }
    .banner-title { font-size: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .row-posters { justify-content: center; } 
    .poster-card {
        width: 140px;
        height: 210px;
    }
}