* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    background-image: 
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo Styles */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Menu Styles */
.nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 0 15px;
    transition: right 0.3s ease;
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-list {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item:last-child {
    border-bottom: none;
}

.nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 68, 68, 0.1);
    color: #FF4444;
    padding-left: 35px;
}

/* Main Content Adjustment */
.container {
    width: 100%;
    max-width: 1400px;
    padding: 20px;
    text-align: center;
    margin: 80px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Video Section Styles */
.video-section {
    margin-bottom: 40px;
}

.video-title {
    color: #ccd3d6;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.unbelievable-button {
    background: linear-gradient(to left, #28cc65, #00b9a9, #009eff, #0079ff, #0000ff);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 9px 80px;
    border-radius: 25px;
    margin: 0 auto 30px auto;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
}

.earnings-claim {
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.claim-line-1,
.claim-line-2 {
    display: block;
}

.claim-line-1 {
    margin-bottom: 8px;
}

.claim-text {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: Arial, sans-serif;
}

.earnings-amount {
    color: #FF4444;
    font-size: 3rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.underlined-text {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.italic {
    font-style: italic;
    font-size: 2.5rem;
}

.instruction-text {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.video-player-frame {
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.video-title-bar {
    background-color: #4A90E2;
    color: #ffffff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.video-title-text {
    font-size: 1rem;
}

.close-button {
    background-color: #FF4444;
    color: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
}

.video-content {
    background-color: #000000;
    background-image: 
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 15px 15px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    text-align: center;
    position: relative;
}

.overlay-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.overlay-subtext {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.muted-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-top: 20px;
}

/* Video Section Styles */
.video-section {
    position: relative;
    margin-bottom: 0px;
    width: 100%;
}

.video-container-border {
    max-width: 1072px;
    margin: 0 auto;
    border: 5px solid #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.video-blue-bar {
    background-color: #0047FF;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
}

.video-row {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #000000;
}

.main-page-video {
    width: 100%;
    height: auto;
    cursor: pointer;
    display: block;
    border: none;
}

#main-page-video-full-mobile,
#main-page-video-full {
    display: none;
}

@media (max-width: 768px) {
    #main-page-video-full {
        display: none;
    }
}

.text-overlay {
    position: absolute;
    top: 20px;
    right: 82px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 10;
}

.static-content {
    text-align: center;
    margin-top: 30px;
}

.static-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.static-content p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.text-decoration {
    text-decoration: underline;
    text-decoration-color: #2fda7a;
}

.cta-button {
    background: linear-gradient(45deg, #2fda7a, #10B981);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 218, 122, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 218, 122, 0.4);
}

/* Form Section Styles */
.form-section {
    margin-bottom: 60px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hidden {
    display: none;
}

.section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.nova {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.title-decoration {
    color: #2fda7a;
}

.form-and-access {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#access-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#access-form label {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

#access-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#access-form input:focus {
    outline: none;
    border-color: #2fda7a;
}

#access-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.error-message {
    color: #FF4444;
    font-size: 0.8rem;
    display: none;
    margin-top: 5px;
}

.error-messages {
    color: #FF4444;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.gain-access-btn {
    background: linear-gradient(45deg, #2fda7a, #10B981);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gain-access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 218, 122, 0.4);
}

.gain-access-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.gained-access {
    text-align: center;
    padding: 20px;
    background-color: rgba(47, 218, 122, 0.1);
    border-radius: 10px;
    border: 1px solid #2fda7a;
}

.gained-access h3 {
    color: #2fda7a;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gained-access p {
    color: #ffffff;
    margin-bottom: 10px;
}

#access-notification {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#access-notification.show {
    opacity: 1;
}

/* Features Section Styles */
.features-section {
    margin-bottom: 60px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.feature.second {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.feature-text p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-image-container {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.feature-image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.feature-image-gradient-first {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(47, 218, 122, 0.3), rgba(16, 185, 129, 0.3));
    z-index: 1;
}

.feature-image-gradient-second {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.3), rgba(79, 70, 229, 0.3));
    z-index: 1;
}

/* User Stories Section Styles */
.user-stories-section {
    margin-bottom: 60px;
    text-align: center;
}

.user-stories-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.user-cards-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.user-cards-container::-webkit-scrollbar {
    display: none;
}

.user-card {
    min-width: 350px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.title-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.title-info p {
    color: #2fda7a;
    font-size: 0.9rem;
}

.storie {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.page-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.page-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-dot.active {
    background-color: #2fda7a;
}

/* CTA Section Styles */
.cta-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(47, 218, 122, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 20px;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hide-br {
    display: none;
}

@media (max-width: 768px) {
    .hide-br {
        display: block;
    }
    
    .video-title {
        font-size: 1.75rem;
    }
    
    .unbelievable-button {
        font-size: 1.3rem;
        padding: 10px 25px;
    }
    
    .claim-text {
        font-size: 1.25rem;
    }
    
    .earnings-amount {
        font-size: 1.75rem;
    }
    
    .italic {
        font-size: 1.25rem;
    }
    
    .video-container-border {
        border-width: 3px;
    }
    
    .video-blue-bar {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature.second {
        flex-direction: column;
    }
    
    .user-card {
        min-width: 280px;
    }
    
    .static-content h2 {
        font-size: 2rem;
    }
    
    .feature-text h2 {
        font-size: 2rem;
    }
    
    .user-stories-section h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .form-container-white {
        margin: 0 20px 40px 20px;
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .phone-group {
        flex-direction: row;
        align-items: stretch;
        gap: 6px;
    }
    
    .phone-dropdown select {
        min-width: 80px;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .access-button {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
}

.purple-box {
    width: 100%;
    max-width: 800px;
    height: 200px;
    background-color: #8B5CF6;
    border: 3px solid #ffffff;
    margin: 0 auto 40px auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.purple-box::before {
    content: "Video/Image Placeholder";
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.main-heading {
    color: #FF4444;
    font-size: 32px !important;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.countdown-timer {
    color: #FF4444;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    font-family: sans-serif;
}

/* White Form Container Styles (restyled to dark card with white border) */
.form-container-white {
    max-width: 780px;
    margin: 0 auto 40px auto;
    background-color: #0b0b0b; /* dark card */
    border: 2px solid #ffffff; /* white border */
    border-radius: 14px;
    padding: 42px 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

/* Header white bar with black title */
.form-header {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.form-header h3 {
    color: #000000;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin: 0;
    font-family: Arial, sans-serif;
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Dark inputs */
.account-form input {
    width: 100%;
    padding: 16px 14px;
    border: 2px solid #4b4b4b;
    border-radius: 8px;
    background-color: #575757;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.account-form input:focus {
    outline: none;
    border-color: #ffffff;
    background-color: #606060;
}

.account-form input::placeholder {
    color: #e6e6e6;
    font-weight: 600;
}

/* Phone area + number in one line */
.phone-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
    flex-wrap: nowrap;
}

.phone-dropdown {
    padding: 16px 14px;
    border: 2px solid #4b4b4b;
    border-radius: 8px;
    background-color: #575757;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    min-width: 105px;
    flex-shrink: 0;
}

.phone-group input[type="tel"] {
    border-radius: 8px;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
}

/* Large red CTA */
.access-button {
    width: 100%;
    background-color: #FF1F1F;
    color: #ffffff;
    padding: 20px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.1s ease, background-color 0.2s ease;
    margin-top: 8px;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.access-button:hover {
    background-color: #e01b1b;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(224, 27, 27, 0.35);
}

.button-main-text {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
}

.button-subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 8px;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.legal-disclaimer {
    max-width: 1000px;
    margin: 0 auto 30px auto;
    text-align: left;
    padding: 0 20px;
}

.legal-disclaimer p {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0;
}

/* Social Media Disclaimer */
.social-disclaimer {
    max-width: 1000px;
    margin: 0 auto 30px auto;
    text-align: left;
    padding: 0 20px;
}

.social-disclaimer p {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0;
}

/* Footer Links */
.footer-links {
    text-align: center;
    margin: 30px auto 40px auto;
    padding: 0 20px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF4444;
    text-decoration: underline;
}

.footer-separator {
    color: #ffffff;
    margin: 0 8px;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-heading {
        font-size: 1.5rem !important;
    }
    
    .countdown-timer {
        font-size: 3.5rem;
    }
    
    .purple-box {
        height: 150px;
        margin-bottom: 30px;
    }
    
    .contact-info p {
        font-size: 0.75rem;
    }
    
    .legal-disclaimer p {
        font-size: 0.65rem;
    }
    
    .social-disclaimer p {
        font-size: 0.65rem;
    }
    
    .footer-link {
        font-size: 0.7rem;
    }
    
    .footer-separator {
        margin: 0 6px;
    }
    
    /* Header responsive */
    .header-content {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 1.6rem;
    }
    
    .unbelievable-button {
        font-size: 1.2rem;
        padding: 13px 45px;
    }
    
    .claim-text {
        font-size: 1.15rem;
    }
    
    .earnings-amount {
        font-size: 1.6rem;
    }
    
    .italic {
        font-size: 1.15rem;
    }
    
    .main-heading {
        font-size: 1.3rem !important;
    }
    
    .countdown-timer {
        font-size: 3rem;
    }
    
    .video-container-border {
        border-width: 2px;
    }
    
    .video-blue-bar {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .contact-info p {
        font-size: 0.7rem;
    }
    
    .legal-disclaimer p {
        font-size: 0.6rem;
    }
    
    .social-disclaimer p {
        font-size: 0.6rem;
    }
    
    .footer-link {
        font-size: 0.65rem;
    }
    
    .purple-box {
        height: 120px;
    }
    
    .purple-box::before {
        font-size: 14px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-container-white {
        margin: 0 20px 32px 20px;
        padding: 22px;
    }

    .form-header h3 {
        font-size: 1.6rem;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .phone-group {
        flex-direction: row;
        gap: 8px;
    }

    .phone-dropdown {
        min-width: 88px;
        padding: 16px 12px;
    }

    .access-button {
        padding: 18px 24px;
        gap: 5px;
    }
    
    .button-main-text {
        font-size: 1.5rem;
    }
    
    .button-subtitle {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .main-heading {
         font-size: 1.1rem !important; 
    }
    
    .countdown-timer {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .earnings-amount {
       line-height: 45px !important;
    }
}