 /* --- CSS RESET & VARIABLES --- */
 :root {
     --bg-color: #000000;
     --text-color: #ffffff;
     --accent-red: #ff0000;
     --card-bg: #2d2d2d;
     --input-bg: #0d0d0d;
     --font-main: 'Roboto', sans-serif;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     background-color: var(--bg-color);
     color: var(--text-color);
     font-family: var(--font-main);
     line-height: 1.5;
     display: flex;
     flex-direction: column;
     min-height: 100vh;
 }

 /* --- HELPER CLASSES --- */
 .text-red {
     color: var(--accent-red);
     font-weight: 700;
 }

 /* --- HEADER --- */
 header {
     padding: 40px 0 10px;
     text-align: center;
 }

 .logo {
     max-width: 80%;
     height: auto;
     display: block;
     margin: 0 auto;
 }

 /* --- MAIN LAYOUT --- */
 main {
     flex: 1;
     padding: 30px;
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
 }

 /* Container that switches between stack (mobile) and row (desktop) */
 .split-container {
     display: flex;
     flex-direction: column;
     /* Default: Stacked for Mobile */
     align-items: center;
     gap: 30px;
 }

 /* --- LEFT COLUMN (MEDIA/VIDEO) --- */
 .media-side {
     width: 100%;
     max-width: 490px;
     /* Limit width on mobile */
     display: flex;
     justify-content: center;
 }

 .video-placeholder {
     width: 100%;
     height: auto;
     border-radius: 4px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
     display: block;
 }

 /* --- RIGHT COLUMN (CONTENT) --- */
 .content-side {
     width: 100%;
     max-width: 450px;
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 /* Text Section */
 .copy-block h1 {
     font-size: 2.5rem;
     font-weight: 700;
     font-style: italic;
     color: var(--accent-red);
     margin-bottom: 20px;
     line-height: 1.2;
     letter-spacing: 1px
 }

 .copy-block p {
     margin-bottom: 15px;
     font-size: 1.1rem;
     color: #ccc;
     letter-spacing: 0.5px
 }

 .copy-block .sign-off {
     margin-top: 10px;
     margin-bottom: 10px;
     font-weight: bold;
     color: var(--accent-red);
 }

 /* Form Card */
 .beta-card {
     background-color: var(--card-bg);
     border-radius: 30px;
     padding: 20px 45px 30px;
     text-align: center;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
 }

 .beta-card h2 {
     color: var(--accent-red);
     font-style: italic;
     font-weight: 700;
     font-size: 2rem;
     margin-bottom: 5px;
     text-transform: uppercase;
     line-height: 1
 }

 .beta-card .subtitle {
     display: block;
     margin-bottom: 15px;
     font-size: 1rem;
     color: #ddd;
 }

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

 .form-group label {
     display: block;
     font-size: 0.75rem;
     margin-bottom: 5px;
     color: #aaa;
     margin-left: 10px;
 }

 .form-group input {
     width: 100%;
     background-color: var(--input-bg);
     border: 1px solid #333;
     color: white;
     padding: 12px 15px;
     border-radius: 12px;
     font-size: 0.9rem;
     outline: none;
 }

 .form-group input:focus {
     border-color: var(--accent-red);
 }

 .form-group input.input-error {
     border-color: var(--accent-red);
 }

 .error-message {
     display: block;
     color: var(--accent-red);
     font-size: 0.75rem;
     margin-top: 5px;
     margin-left: 10px;
 }

 .general-error {
     margin-bottom: 15px;
     text-align: center;
 }

 .hp-field {
     position: absolute;
     left: -9999px;
     opacity: 0;
     height: 0;
     overflow: hidden;
 }

 .success-message {
     padding: 20px 0;
     text-align: center;
 }

 .success-message h2 {
     color: #4CAF50;
     font-style: italic;
     font-weight: 700;
     font-size: 2rem;
     margin-bottom: 15px;
 }

 .success-message p {
     color: #ddd;
     font-size: 1rem;
     line-height: 1.6;
 }

 /* --- SUCCESS MODAL POPUP --- */
 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.85);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999;
     animation: fadeIn 0.3s ease;
 }

 @keyframes fadeIn {
     from { opacity: 0; }
     to { opacity: 1; }
 }

 @keyframes scaleIn {
     from {
         opacity: 0;
         transform: scale(0.8);
     }
     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 .modal-content {
     background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
     border-radius: 30px;
     padding: 40px 50px;
     text-align: center;
     max-width: 90%;
     width: 400px;
     position: relative;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(76, 175, 80, 0.2);
     border: 2px solid #4CAF50;
     animation: scaleIn 0.3s ease;
 }

 .modal-close {
     position: absolute;
     top: 15px;
     right: 20px;
     background: none;
     border: none;
     color: #888;
     font-size: 2rem;
     cursor: pointer;
     transition: color 0.3s;
     line-height: 1;
 }

 .modal-close:hover {
     color: #4CAF50;
 }

 .modal-icon {
     width: 80px;
     height: 80px;
     background: #4CAF50;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0 auto 25px;
     font-size: 3rem;
     color: white;
     font-weight: bold;
 }

 .modal-content h2 {
     color: #4CAF50;
     font-style: italic;
     font-weight: 700;
     font-size: 2.5rem;
     margin-bottom: 20px;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .modal-content p {
     color: #ddd;
     font-size: 1.1rem;
     line-height: 1.6;
     margin-bottom: 10px;
 }

 .modal-btn {
     background-color: #4CAF50;
     color: white;
     border: none;
     padding: 12px 40px;
     border-radius: 12px;
     font-weight: bold;
     font-size: 1rem;
     cursor: pointer;
     margin-top: 20px;
     transition: background 0.3s ease, transform 0.2s ease;
 }

 .modal-btn:hover {
     background-color: #3d8b40;
     transform: scale(1.05);
 }

 .submit-btn {
     width: 200px;
     background-color: var(--accent-red);
     color: white;
     border: none;
     padding: 10px;
     border-radius: 12px;
     font-weight: bold;
     font-size: 1rem;
     cursor: pointer;
     margin-top: 10px;
     transition: background 0.3s ease;
 }

 .submit-btn:hover {
     background-color: #cc0000;
 }

 /* --- FOOTER --- */
 footer {
     text-align: center;
     padding: 40px 20px;
     margin-top: auto;
 }

 .footer-logo {
     max-width: 50%;
     margin-bottom: 40px;
 }

 .social-icons {
     margin-bottom: 15px;
 }

 .social-icons a {
     color: black;
     background: #ccc;
     width: 40px;
     height: 40px;
     border-radius: 8px;
     line-height: 40px;
     text-align: center;
     font-size: 28px;
     margin: 0 10px;
     text-decoration: none;
     display: inline-block;
     transition: background 0.3s;
 }
.fab {
    line-height: 1.4;
}
 .social-icons a:hover {
     background: white;
 }

 .copyright {
     font-size: 0.8rem;
     color: #888;
     text-transform: uppercase;
     letter-spacing: 0.5px
 }

 .desktop-break {
     display: inline;
 }
 .mobile-break {
        display: block;
    }

@media (min-width: 768px) { 
     .logo {
         max-width: 495px;
     }
    .beta-card {
        padding: 20px 65px 30px; }
    .copyright {
        font-size: 0.9rem; }
    .footer-logo {
        max-width: 240px; }
}
 @media (min-width: 992px) {
     main {
         padding-top: 40px;
         padding-bottom: 20px;
     }

     .logo {
         max-width: 495px;
     }

     .split-container {
         flex-direction: row;
         /* Switch to side-by-side */
         align-items: flex-start;
         /* Align top */
         justify-content: center;
         gap: 60px;
         /* Spacing between video and text */
     }

     .media-side {
         /* On desktop, allow the image to be reasonably sized */
         flex: 0 0 auto;
         width: 495px;
         max-width: 472px;
     }

     .content-side {
         /* Content stays contained but aligns right */
         flex: 0 0 auto;
         width: 530px;
         text-align: left;
     }
     .copy-block p {
        font-size: 1rem; 
     }
     .desktop-break {
         display: block;
     }
     .mobile-break {
        display: inline;
    }
 }
