:root {
    --primary-text: #1a1a1a;
    --secondary-text: #4a4a4a;
    --background-color: #f9f9f9;
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #128C7E;
    --highlight-color: #f0f0f0;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--primary-text);
    line-height: 1.6;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.sub-headline {
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(0,0,0,0.5); /* Optional: darkens the video a bit */
}

#video-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.2s ease-in-out;
}

#video-overlay:hover img {
    opacity: 1;
}

/* --- Timed CTA Section (Hidden by Default) --- */
#timed-cta-section {
    display: none; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    margin-top: 40px; /* Creates space below the video */
}

#timed-cta-section.visible {
    display: block;
    opacity: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    background-color: var(--whatsapp-green);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.cta-button:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    background-color: var(--whatsapp-green);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
    box-sizing: border-box;
}

.website-button {
    background-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.website-button:hover {
    background-color: #1d4ed8;
}

.cta-button .whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.value-prop-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 30px auto;
    text-align: left;
    max-width: 450px;
}

.value-prop-list h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.value-prop-list li {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    margin-bottom: 16px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.value-prop-list .check-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.scarcity-note {
    font-style: italic;
    color: var(--secondary-text);
    font-size: 14px;
}

@media (min-width: 768px) {
    .button-group {
        flex-direction: row;
        max-width: 600px;
    }
    
    .cta-button {
        width: 50%;
    }
    
    h1 {
        font-size: 36px;
    }
     h2 {
        font-size: 28px;
    }
    .sub-headline {
        font-size: 20px;
    }
    .cta-button {
        font-size: 20px;
        padding: 18px 32px;
    }
}
