 /* CSS for Styling */

 @import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

 /* --- General & Body Styling --- */
 :root {

     --primary-yellow: #FFD700;
     --dark-bg: #121212;
     --text-light: #e5e7eb;
     --text-dark: #1f2937;
     --border-color: rgba(255, 255, 255, 0.1);
 }

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

 body {
     font-family: 'Poppins', sans-serif;
     background-color: var(--dark-bg);
     color: var(--text-light);
     text-align: center;
     overflow-x: hidden;
     position: relative;
 }

 /* --- Background Geometric Lines --- */
 .background-lines {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     overflow: hidden;
 }

 .background-lines::before,
 .background-lines::after {
     content: '';
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%) rotate(45deg);
     width: 70vw;
     height: 70vw;
     max-width: 800px;
     max-height: 800px;
     border: 1px solid var(--border-color);
 }

 .background-lines::after {
     transform: translate(-50%, -50%) rotate(-45deg);
     width: 65vw;
     height: 65vw;
     max-width: 750px;
     max-height: 750px;
 }


 /* --- Main Layout Container --- */
 .container {
     max-width: 800px;
     margin: 0 auto;
     padding: 2rem;
     position: relative;
     z-index: 1;
 }

 /* --- Header --- */
 header p {
     color: var(--primary-yellow);
     font-weight: 400;
     letter-spacing: 2px;
     font-family: 'Inter Tight', sans-serif;
     font-size: 1.2rem;
     margin-bottom: 1.7rem;
     letter-spacing: 4px;
 }

 /* --- Main Content --- */
 main h1 {

     font-size: 2.3rem;
     font-weight: 700;
     line-height: 1.6;

 }

 main h2 {

     font-size: 1.8rem;
     font-weight: 700;
     color: var(--text-light);
     font-weight: 400;
     margin: 1.7rem 0 2rem;
 }

 /* --- Video Placeholder --- */
 .video-container {
     position: relative;
     cursor: pointer;
     max-width: 640px;
     margin: 0 auto;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
     border: solid 2.5px white;
 }

 .video-container img {
     width: 100%;
     display: block;
     opacity: 0.8;
     transition: filter ease;
 }

 .video-container img:hover {
     filter: blur(6px);
 }

 .play-button {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 5rem;
     color: rgba(255, 255, 255, 0.9);
     text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
     transition: transform 0.2s ease, color 0.2s ease;
 }

 .video-container:hover .play-button {
     transform: translate(-50%, -50%) scale(1.1);
     color: #fff;
 }

 /* --- Call to Action Button --- */
 .cta-button {
     background-color: var(--primary-yellow);
     color: var(--text-dark);
     border: none;
     padding: 1rem 2.5rem;
     font-size: 1rem;
     font-weight: 600;
     border-radius: 10px;
     cursor: pointer;
     margin-top: 2.5rem;
     transition: background-color 0.2s ease, transform 0.2s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .cta-button:hover {
     background-color: #facc15;
     transform: translateY(-3px);
 }

 /* --- Social Icons (now in Main) --- */
 .social-icons {
     display: flex;
     justify-content: center;
     gap: 1rem;
     margin: 2rem auto 2rem;
 }

 .icon-link {
     width: 50px;
     height: 58px;
     display: flex;
     justify-content: center;
     align-items: center;
     background-color: transparent;
     border-left: 1.5px solid var(--primary-yellow);
     border-right: 1.5px solid var(--primary-yellow);
     clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
     transition: border-color 0.2s ease;
     background-color: rgba(255, 215, 0, 0.1);
     color: inherit;
     text-decoration: none !important;

 }


 .icon-link i {
     font-size: 1.4rem;
     color: var(--primary-yellow);
     transition: color 0.2s ease;
 }


 .icon-link:hover i {
     color: var(--text-light);
 }

 /* --- Footer --- */
 footer {
     padding-bottom: 20px;
     border: 2px dotted #4b5563;
 }

 .disclaimer {

     padding: 1.5rem;
     font-size: 0.75rem;
     color: #9ca3af;
     line-height: 1.6;
     max-width: 700px;
 }

 .footer-links {
     color: #9ca3af;
     font-size: 0.8rem;
 }

 .footer-links a {
     color: #9ca3af;
     text-decoration: none;
     font-size: 0.9rem;
 }

 .footer-links a:hover {
     text-decoration: underline;
 }

 .footer-links p {
     margin-top: 0.6rem;
     font-size: 0.9rem;
 }

 /* --- Popup Modal --- */
 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.8);
     display: none;
     justify-content: center;
     align-items: center;
     z-index: 1000;
     backdrop-filter: blur(5px);
 }

 .modal-content {
     background-color: #1f2937;
     padding: 2.5rem;
     border-radius: 8px;
     width: 90%;
     max-width: 400px;
     position: relative;
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
 }

 .modal-content h3 {
     margin-bottom: 0.5rem;
     font-size: 1.5rem;
 }

 .modal-content p {
     margin-bottom: 1.5rem;
     color: var(--text-light);
 }

 .close-button {
     position: absolute;
     top: 15px;
     right: 20px;
     font-size: 2rem;
     color: #9ca3af;
     cursor: pointer;
     line-height: 1;
 }

 .close-button:hover {
     color: #fff;
 }

 .signup-form input {
     width: 100%;
     padding: 0.8rem;
     margin-bottom: 1rem;
     border-radius: 4px;
     border: 1px solid #4b5563;
     background-color: #374151;
     color: var(--text-light);
     font-size: 1rem;
     font-family: 'Poppins', sans-serif;
 }

 .signup-form input::placeholder {
     color: #9ca3af;
 }

 .signup-form button {
     width: 100%;
     background-color: var(--primary-yellow);
     color: var(--text-dark);
     border: none;
     padding: 0.8rem;
     font-size: 1rem;
     font-weight: 600;
     border-radius: 5px;
     cursor: pointer;
     transition: background-color 0.2s ease;
 }

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

 /* --- Responsive Design --- */
 @media (max-width: 768px) {
     main h1 {
         font-size: 2.2rem;
     }

     main h2 {
         font-size: 1.2rem;
     }

     .container {
         padding: 1rem;
     }
 }
