@media (max-width: 600px) {
        nav ul li:first-child a {
            margin-left: -10px;
        }
        header {
            flex-direction: column;
            align-items: center;
            padding: 12px 10px;
        }
        .logo {
                margin: 0 auto 0px -40px;
            text-align: center;
            width: 100%;
            margin-top: -10px;
            margin-bottom: 5px;
        }
        nav {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        nav ul {
            flex-direction: row;
            justify-content: left;
            align-items: left;
            .logo {
                margin: 0 auto 4px auto;
                text-align: center;
                width: 50%;
                display: block;
            }
            width: auto;
            padding: 0;
            margin: 0;
        }
                nav ul li {
                    margin: 0;
                }
            nav ul li a {
                font-size: 0.95em;
                padding: 4px 2px;
                display: block;
                    width: auto;
                    padding: 0;
                    margin: 0 0 0 3mm;
            }
}
@media (max-width: 600px) {
    iframe {
        width: 100% !important;
        height: 200px !important;
        max-width: 100vw;
        min-width: 0;
        display: block;
        margin: 0 auto;
    }
}
/* Netflix-inspired theme: Dark background, red accents, modern fonts */
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #141414;
    color: #fff;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s;
}

header.scrolled {
    background-color: #000;
}

.logo {
    font-size: 2em;
    color: #e50914; /* Netflix red */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: -10px;
    margin-right: 55px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e50914;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://via.placeholder.com/1920x1080?text=Latest+Movie+Poster') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    margin-top: -120px;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.btn {
    background-color: #e50914;
    color: #fff;
    padding: 15px 30px;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
    border-radius: 4px;
}

.btn:hover {
    background-color: goldenrod;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}

/* Golden glow for Subscribe Now button on hover */
.subscription .btn:hover {
    box-shadow: 0 0 24px 8px gold, 0 0 20px rgba(229, 9, 20, 0.5);
}

/* Golden glow for Get Premium Access button on hover */
.hero .btn:hover {
    box-shadow: 0 0 24px 8px gold, 0 0 20px rgba(229, 9, 20, 0.5);
}

/* Sections */
section {
    padding: 60px 40px;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #e50914;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
    text-align: center;
}

.card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.9em;
    color: #999;
}

/* Subscription Section */
.subscription {
    background: linear-gradient(135deg, #e50914, #000);
    text-align: center;
    padding: 80px 40px;
}
.subscription:hover {
        transform: scale(1.05);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}
.subscription h2 {
    color: #fff;
}

.subscription p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px;
    text-align: center;
    font-size: 0.9em;
    color: #999;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}
/* Responsive Design */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Contact Form Section */
.contact-form-section {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.contact-form-section h2 {
    color: #ffffff;
    text-shadow: 1px 2px 8px #e50914;
    margin-bottom: 40px;
    padding-bottom: 30px;
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1c1c1c;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.2em;
    color: #fff;
    text-transform: uppercase;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    background-color: #222;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* To ensure padding doesn't affect the width */
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e50914;
    box-shadow: 0 0 10px #e50914;
}

.contact-form textarea {
    resize: vertical;
}

/* Submit Button */
.contact-form .btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #e50914;
    background-color: #e50914;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
}

.contact-form .btn:hover {
    background-color: transparent;
    color: #e50914;
    box-shadow: 0 0 15px #e50914;
}