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

body {
    font-family: 'DM Sans', sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    position: relative;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero/Video Section with Background Image Support */
.hero-video-section {
    position: relative;
    background: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0 20px 0;
}

/* Add background image by adding this to your HTML or via inline style:
   <section class="hero-video-section" style="background-image: url('your-image.jpg');">
   The pseudo-element will handle the opacity */
.hero-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

/* Sky blue overlay on the background image */
.hero-video-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 100, 160, 0.9);
    z-index: 0;
    pointer-events: none;
}

.hero-video-section .container {
    position: relative;
    z-index: 1;
}

/* Headline Section */
.headline-section {
    text-align: center;
    padding: 0 20px 5px;
}

.eyebrow {
    color: #003366;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.main-headline {
    font-size: 42px;
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.headline-line {
    display: inline-block;
    padding: 8px 20px;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.headline-line.line-1 {
    color: #000;
    background-color: rgba(255, 255, 255, 0.9);
    transform: rotate(-1deg);
}

.headline-line.line-2 {
    color: #000;
    background-color: rgba(255, 215, 0, 0.8);
    transform: rotate(1deg);
}

.headline-line.line-3 {
    color: #fff;
    background-color: rgba(0, 51, 102, 0.9);
    transform: rotate(-0.5deg);
}

.subheadline {
    font-size: 22px;
    color: #555;
    margin-top: 15px;
    font-weight: 500;
}

/* Video Section */
.video-section {
    padding: 0 20px 20px;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 51, 102, 0.2);
    border: 1px solid #333;
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.01);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.play-button {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(0, 51, 102, 0.4));
}

.video-text {
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
    font-weight: 500;
}

/* Order Section */
.order-section {
    padding: 40px 20px;
}

.order-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border: 3px solid #003366;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
    position: relative;
    text-align: center;
}

.special-offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #003366;
    color: white;
    padding: 8px 30px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.4);
}

.order-headline {
    text-align: center;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 30px;
    margin-top: 10px;
}

/* Pricing */
.pricing {
    text-align: center;
    margin-bottom: 30px;
}

.original-price {
    margin-bottom: 10px;
}

.strike {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    color: #003366;
    margin-bottom: 10px;
}

.currency {
    font-size: 36px;
    font-weight: bold;
}

.amount {
    font-size: 72px;
    font-weight: bold;
    line-height: 1;
}

.one-time {
    font-size: 16px;
    color: #555;
    align-self: center;
}

/* CTA Button */
.cta-button {
    width: 100%;
    background: linear-gradient(to bottom, #4A90E2 0%, #003366 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 51, 102, 0.4);
    background: linear-gradient(to bottom, #5AA0F2 0%, #004080 100%);
}

.cta-button:active {
    transform: translateY(0);
}

.button-text {
    letter-spacing: 1px;
}

.button-subtext {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.95;
}

/* Guarantee Section */
.guarantee-section {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px;
    background: #f0f9f0;
    border-radius: 8px;
    border: 2px solid #4CAF50;
    margin-bottom: 25px;
}

.guarantee-badge {
    flex-shrink: 0;
}

.guarantee-text strong {
    display: block;
    color: #2e7d32;
    font-size: 18px;
    margin-bottom: 5px;
}

.guarantee-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Security Badges */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    font-size: 13px;
    color: #666;
    padding: 8px 15px;
    background: #f5f5f5;
    border-radius: 20px;
    border: 1px solid #ddd;
}

/* Footer */
.footer {
    padding: 40px 20px 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-links {
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.separator {
    color: #ccc;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
}

/* Support Section */
.support-section {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.support-section p {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
    text-align: center !important;
}

.support-link {
    color: #003366;
    font-weight: 600;
    text-decoration: none;
}

.support-link:hover {
    text-decoration: underline;
}

/* ClickBank Disclaimer */
.clickbank-disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.disclaimer p {
    font-size: 11px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-video-section {
        padding: 40px 0;
    }

    .main-headline {
        font-size: 28px;
    }

    .headline-line {
        padding: 6px 15px;
        font-size: 28px;
    }

    .subheadline {
        font-size: 18px;
    }

    .order-box {
        padding: 30px 20px;
    }

    .order-headline {
        font-size: 24px;
    }

    .amount {
        font-size: 56px;
    }

    .cta-button {
        font-size: 20px;
        padding: 18px 30px;
    }

    .guarantee-section {
        flex-direction: column;
        text-align: center;
    }

    .security-badges {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-video-section {
        padding: 30px 0;
    }

    .container {
        padding: 10px;
    }

    .headline-section {
        padding: 0 10px 30px;
    }

    .main-headline {
        font-size: 24px;
    }

    .headline-line {
        padding: 5px 12px;
        font-size: 24px;
    }

    .subheadline {
        font-size: 16px;
    }

    .order-box {
        padding: 25px 15px;
    }

    .amount {
        font-size: 48px;
    }
}