* {
           margin: 0;
           padding: 0;
           box-sizing: border-box;
           font-family: 'Arial', sans-serif;
       }

       body {
           background-color: #141414;
           color: #fff;
           line-height: 1.6;
       }
       /* Define your site-wide font */
       body {
           font-family: 'Roboto', Arial, sans-serif; /* Your chosen font */
       }

       /* Style for the input fields */
       .my-email-input {
           padding: 9px;
           border: 1px solid #ccc;
           border-radius: 4px;
           font-size: 16px;
           width: 50%;
           box-sizing: border-box;
       }

       /* Style for the error message container */
       .error-message {
           color: blue; /* A red color */
           font-weight: bold;
           font-size: 0.85rem; /* Slightly smaller than body text */
           margin-top: 5px;
           font-family: 'Montserrat', sans-serif; /* A different font for errors */
       }

       /* Optional: Style the input border when it's invalid */
       input:invalid {
           border-color: #e74c3c; /* Red border for invalid fields */
       }
       .container {
           width: 100%;
           max-width: 1200px;
           margin: 0 auto;
           padding: 0 20px;
       }

       /* Header Styles */
       header {
           background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
           padding: 20px 0;
           position: fixed;
           width: 100%;
           z-index: 100;
           transition: background-color 0.3s;
       }

       header.scrolled {
           background-color: #141414;
       }

       .header-content {
           display: flex;
           justify-content: space-between;
           align-items: center;
       }

       .logo {
           font-size: 28px;
           font-weight: bold;
           color: #e50914;
           text-decoration: none;
       }

       .nav-links {
           display: flex;
           gap: 20px;
       }

       .nav-links a {
           color: #fff;
           text-decoration: none;
           font-size: 14px;
       }

       .nav-links a:hover {
           color: #b3b3b3;
       }

       .auth-buttons {
           display: flex;
           gap: 15px;
           align-items: center;
       }

       .sign-in {
           background-color: #e50914;
           color: #fff;
           padding: 7px 17px;
           border-radius: 3px;
           text-decoration: none;
           font-weight: bold;
       }

       /* Hero Section */
       .hero {
           height: 80vh;
           background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                       url('https://source.unsplash.com/random/1600x900/?movie') no-repeat center center/cover;
           display: flex;
           align-items: center;
           text-align: center;
           padding-top: 80px;
       }

       .hero-content {
           max-width: 650px;
           margin: 0 auto;
           padding: 0 20px;
       }

       .hero-title {
           font-size: 3rem;
           font-weight: bold;
           margin-bottom: 20px;
       }

       .hero-subtitle {
           font-size: 1.5rem;
           margin-bottom: 30px;
           font-weight: normal;
       }

       .cta {
           background-color: #e50914;
           color: #fff;
           border: none;
           padding: 12px 24px;
           font-size: 1.2rem;
           border-radius: 4px;
           cursor: pointer;
           font-weight: bold;
           margin-top: 15px;
       }

       .cta:hover {
           background-color: #f40612;
       }

       /* Content Rows */
       .content-section {
           margin: 40px 0;
       }

       .section-title {
           font-size: 1.5rem;
           margin-bottom: 15px;
           padding-left: 20px;
       }

       .content-row {
           display: flex;
           overflow-x: auto;
           gap: 10px;
           padding: 10px 20px;
           scrollbar-width: none; /* Firefox */
       }

       .content-row::-webkit-scrollbar {
           display: none; /* Chrome, Safari, Edge */
       }

       .content-card {
           min-width: 220px;
           height: 130px;
           background-color: #2f2f2f;
           border-radius: 4px;
           overflow: hidden;
           transition: transform 0.3s;
           position: relative;
       }

       .content-card:hover {
           transform: scale(1.08);
           z-index: 10;
       }

       .content-card img {
           width: 100%;
           height: 100%;
           object-fit: cover;
       }

       /* Footer */
       footer {
           background-color: #000;
           padding: 50px 0;
           margin-top: 50px;
       }

       .footer-content {
           display: flex;
           flex-direction: column;
           gap: 30px;
       }

       .footer-links {
           display: grid;
           grid-template-columns: repeat(4, 1fr);
           gap: 20px;
       }

       .footer-links a {
           color: #757575;
           text-decoration: none;
           font-size: 0.9rem;
       }

       .footer-links a:hover {
           text-decoration: underline;
       }

       .social-links {
           display: flex;
           gap: 20px;
           margin-top: 20px;
       }

       .copyright {
           color: #757575;
           font-size: 0.9rem;
           margin-top: 20px;
       }

       /* Responsive Design */
       @media (max-width: 768px) {
           .hero-title {
               font-size: 2rem;
           }

           .hero-subtitle {
               font-size: 1.2rem;
           }

           .footer-links {
               grid-template-columns: repeat(2, 1fr);
           }

           .nav-links {
               display: none;
           }
       }
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }

        body {
            background-color: #141414;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
            padding: 20px 5%;
            position: fixed;
            width: 100%;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 32px;
            font-weight: bold;
            color: #e50914;
            text-decoration: none;
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
        }

        .sign-in {
            background-color: #e50914;
            color: #fff;
            padding: 7px 17px;
            border-radius: 3px;
            text-decoration: none;
            font-weight: bold;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                        url('https://images.unsplash.com/photo-1489599102910-59206b8ca314?ixlib=rb-4.0.3&auto=format&fit=crop&w=2100&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            padding: 0 5%;
        }

        .hero-content {
            max-width: 650px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3.2rem;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 25px;
            font-weight: normal;
        }

        .hero-cta {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .email-form {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .email-input {
            flex: 0 1 400px;
            padding: 15px;
            font-size: 1rem;
            border: 1px solid #8c8c8c;
            border-radius: 2px;
            background: rgba(22, 22, 22, 0.7);
            color: white;
        }

        .cta-button {
            background-color: #e50914;
            color: #fff;
            border: none;
            padding: 15px 24px;
            font-size: 1.2rem;
            border-radius: 2px;
            cursor: pointer;
            font-weight: bold;
            white-space: nowrap;
        }

        .cta-button:hover {
            background-color: #f40612;
        }

        /* Content Sections */
        .content-section {
            padding: 50px 5%;
            border-top: 8px solid #222;
        }

        .section-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .text-content {
            flex: 1;
        }

        .image-content {
            flex: 1;
            position: relative;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .section-description {
            font-size: 1.5rem;
        }

        .image-content img {
            width: 100%;
            z-index: 2;
            position: relative;
        }

        /* FAQ Section */
        .faq-section {
            text-align: center;
            padding: 70px 5%;
        }

        .faq-title {
            font-size: 2.5rem;
            margin-bottom: 40px;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 8px;
            text-align: left;
        }

        .faq-question {
            background-color: #303030;
            color: #fff;
            padding: 18px 30px;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            background-color: #303030;
            color: #fff;
            padding: 18px 30px;
            font-size: 1.5rem;
            margin-top: 1px;
            display: none;
        }

        /* Footer */
        footer {
            padding: 70px 5% 40px;
            color: #757575;
            border-top: 8px solid #222;
        }

        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .footer-title {
            margin-bottom: 30px;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #757575;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            margin-top: 20px;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 950px) {
            .section-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle, .section-description {
                font-size: 1.2rem;
            }

            .email-form {
                flex-direction: column;
            }

            .email-input {
                flex: 1;
                width: 100%;
            }

            .faq-question {
                font-size: 1.2rem;
                padding: 14px 20px;
            }
        }
