       /* General Reset and Font Setup */
       * {
           margin: 0;
           padding: 0;
           box-sizing: border-box;
       }

       body {
           font-family: 'Poppins', sans-serif;
           /* Using a font similar to the image */
           background-color: #000;
       }

       /* --- VIDEO BANNER CONTAINER --- */
       .video-banner {
           position: relative;
           width: 100%;
           height: 100vh;
           /* Full viewport height */
           overflow: hidden;
           display: flex;
           align-items: center;
           justify-content: center;
       }

       /* --- VIDEO STYLING --- */
       #bannerVideo {
           position: absolute;
           top: 50%;
           left: 50%;
           width: 100%;
           height: 100%;
           object-fit: cover;
           /* Ensures the video covers the entire container */
           transform: translate(-50%, -50%);
           /* Centers the video */
           z-index: 1;
           /* Optional: Slight overlay to darken the video for better text contrast */
           filter: brightness(70%);
       }

       .logo-container {
           /* Use position fixed or absolute to keep it layered over the video. 
       Absolute is better if you only want it over the banner. */
           position: absolute;
           top: 30px;
           left: 50px;
           z-index: 100;
           display: flex;
           flex-direction: column;
           /* Stack logo and line vertically */
           align-items: flex-start;
           /* Ensure items start on the left */
       }

       .logo {
           font-size: 30px;
           font-weight: 800;
           color: white;
           letter-spacing: 2px;
           /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
           padding: 5px 0;
           /* Add desired spacing below the logo */
           margin-bottom: 15px;
       }

       /* The horizontal white line */
       .logo-container::after {
           content: '';
           position: relative;
           /* The line needs to start at the left edge of the viewport (0) 
       and extend to the right edge (100vw). */
           left: -50px;
           /* Offset to the left by the left margin of the content-overlay/logo-container */
           width: 100vw;
           /* Cover the entire screen width */
           height: 2px;
           /* Thickness of the line */
           background-color: white;
           z-index: 99;
       }


       /* --- CONTENT OVERLAY (Text, Form, Disclaimer) --- */
       .content-overlay {
           position: relative;
           z-index: 10;
           width: 100%;
           height: 100%;
           padding: 30px 50px;

           /* Flex setup to put text/form on the left and disclaimer at the bottom */
           display: flex;
           flex-direction: column;
           justify-content: space-between;
       }

       .hero-content {
           /* Aligns the main content block slightly lower than center */
           margin-top: 20vh;
           width: 100%;
           max-width: 450px;
           color: white;
       }

       /* --- TEXT STYLING --- */
       .hero-content h1 {
           font-size: 3.5em;
           font-weight: 800;
           line-height: 1;
           margin-bottom: 20px;
           /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); */
       }

       .hero-content h2 {
           font-size: 1.2em;
           font-weight: 300;
           margin-bottom: 40px;
           /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); */
       }


       /* ----------------------------------- */
       /* *** UPDATED FORM STYLING START *** */
       /* ----------------------------------- */

       .signup-form {
           display: flex;
           max-width: 500px;
           height: 60px;

           background-color: #fff;
           /* Apply the overall rounded corner effect to the form container */
           /* This will create the continuous pill shape */
           border-radius: 10px;
           overflow: hidden;
           /* Crucial: This clips the children to the rounded container */
       }

       .signup-form input {
           flex-grow: 1;
           padding: 0 20px;
           border: none;
           border-radius: 5px 0 0 5px;
           font-size: 1.1em;
           color: #444;
       }

       .signup-form button {
           background-color: #f58220;
           color: white;
           padding: 0 30px;
           border: 3px solid;
           border-radius: 10px;


           font-size: 1.1em;
           font-weight: 600;
           cursor: pointer;
           display: flex;
           align-items: center;
           gap: 10px;
           transition: background-color 0.3s;
           /* Ensures the button takes up minimal required space */
           flex-shrink: 0;
       }

       .signup-form button:hover {
           background-color: #d16b1a;
       }

       .signup-form .arrow {
           font-size: 1.5em;
           font-weight: 300;
       }

       /* ----------------------------------- */
       /* *** UPDATED FORM STYLING END *** */
       /* ----------------------------------- */
       /* --- DISCLAIMER STYLING --- */
       .disclaimer {
           color: rgba(255, 255, 255, 0.7);
           font-size: 0.6em;
           line-height: 1;
           max-width: 100%;
           /* margin-bottom: 10px; */
           /* Space from the bottom edge */
           padding: 10px;
       }

       /* --- Media Queries for Responsiveness --- */
       @media (max-width: 900px) {
           /* .video-banner {
               height: 100dvh;
           } */

           .hero-content h1 {
               font-size: 3.3em;
               letter-spacing: -2px;
           }

           .hero-content h2 {
               font-size: 1.3em;
               line-height: 1.2;
           }

           .logo-container {
               top: 20px;
               left: 20px;
           }

           .logo-container::after {
               content: '';
               position: relative;
               left: -20px;
               width: 100vw;
               height: 2px;
               background-color: white;
               z-index: 99;
           }

           .content-overlay {
               padding: 20px;
           }

           .signup-form {
               width: 100%;
               /* Ensure the height is manageable */
               height: 50px;
           }

           .signup-form button {

               padding: 0 5px;
               font-size: 1em;

           }


       }