:root {
    --bg-black: #050505;
    --bg-dark-gray: #111111;
    --blood-red: #CC0000;
    --amber-gold: #FFBF00;
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --font-headline: 'Oswald', sans-serif; /* Fallback to Oswald as requested */
    --font-body: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 18px; /* Mobile first min 18px */
    line-height: 1.5;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--blood-red);
    color: var(--text-white);
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    z-index: 1000;
}
.sticky-top {
    position: sticky;
    top: 0;
}
.pulse-text {
    /* Animation removed as requested */
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-headline);
    line-height: 1.2;
}
.super-headline {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.highlight-gold { color: var(--amber-gold); }
.highlight-red { color: var(--blood-red); }

.sub-headline {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: #CCCCCC;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

/* Video Player Mockup */
.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px auto;
}
.video-mockup {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border: 3px solid var(--blood-red);
    position: relative;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%23222"/></svg>'); /* Placeholder background */
}
.play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
}
.play-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(204, 0, 0, 0.9);
    padding: 20px 30px;
    border-radius: 10px;
    animation: pulse-scale 1.5s infinite;
}
.play-button span {
    font-weight: bold;
    margin-top: 10px;
    font-size: 20px;
}
@keyframes pulse-scale {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 8px;
    color: #AAAAAA;
}
.live-viewers {
    display: flex;
    align-items: center;
    font-weight: bold;
}
.red-dot {
    width: 10px; height: 10px;
    background-color: var(--blood-red);
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Utility */
.hidden { display: none !important; }


/* Offer Section */
.offer-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
}
.offer-headline {
    color: var(--amber-gold);
    font-size: 22px;
    margin-bottom: 5px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    padding: 0 5px;
}
.offer-sub {
    font-size: 18px;
    color: #CCC;
    margin-bottom: 60px;
}

/* Pricing Table */
.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.package {
    background-color: var(--bg-dark-gray);
    border: 1px solid #333;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* Mobile Order: 6 bottles (center), 3 bottles (right), 2 bottles (left) */
.package.center { order: 1; }
.package.right { order: 2; }
.package.left { order: 3; }
.package-header {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: bold;
}
.package-sub {
    font-size: 16px;
    color: #999;
}
.price {
    font-size: 40px;
    font-weight: bold;
    margin: 15px 0;
    font-family: var(--font-headline);
}
.price span {
    font-size: 16px;
    color: #888;
    font-weight: normal;
    font-family: var(--font-body);
}
.package-desc {
    font-size: 16px;
    margin-bottom: 20px;
    flex-grow: 1;
}
.alert-text {
    color: var(--blood-red);
    font-weight: bold;
}
.shipping-free {
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: block;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-headline);
    transition: all 0.3s ease;
}
.btn-gray { background-color: #444; color: #FFF; }
.btn-blue { background-color: #2196F3; color: #FFF; }
.btn-pulse-gold {
    background-color: #00CC00; /* Florescent green base as requested */
    color: #FFF;
    border: 2px solid var(--amber-gold);
    box-shadow: 0 0 15px rgba(255, 191, 0, 0.5);
    animation: heartbeat 1.5s infinite;
}
.btn-large {
    font-size: 24px;
    padding: 20px;
}

@keyframes heartbeat {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 204, 0, 0.5); }
    15% { transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 204, 0, 0.8); }
    30% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 204, 0, 0.5); }
    45% { transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 204, 0, 0.8); }
    60% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 204, 0, 0.5); }
}

/* Target Package Styling */
.package.target {
    border: 3px solid var(--amber-gold);
    box-shadow: 0 0 20px rgba(255, 191, 0, 0.2);
    position: relative;
    padding-top: 35px;
    background-color: #1a1a1a;
}
.target-badges {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.dr-recommended { background-color: #FFF; color: #000; }
.best-deal { background-color: var(--amber-gold); color: #000; }
.package.target .price {
    color: var(--amber-gold);
}

/* Bonus Section */
.bonus-section {
    margin: 40px 0;
}
.bonus-headline {
    color: var(--amber-gold);
    margin-bottom: 20px;
}
.bonus-mockups {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.bonus-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Guarantee Section */
.guarantee-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #111;
    border: 2px solid var(--amber-gold);
    padding: 30px 20px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}
.guarantee-icon {
    font-size: 60px;
    margin-bottom: 15px;
}
.guarantee-text h4 {
    color: var(--amber-gold);
    font-size: 22px;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    margin: 50px 0;
    text-align: left;
}
.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}
.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background-color: #1a1a1a;
    color: #FFF;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover { background-color: #222; }
.faq-answer {
    background-color: #0d0d0d;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 15px 0;
    color: #CCC;
}
.faq-item.active .faq-answer {
    max-height: 1000px;
}
.faq-item.active .icon {
    transform: rotate(45deg);
}
.icon {
    transition: transform 0.3s ease;
    font-size: 24px;
}

.bottom-cta-wrapper {
    margin-top: 40px;
    text-align: center;
}

/* Footer */
footer {
    border-top: 1px solid #222;
    padding: 30px 15px;
    text-align: center;
    background-color: #000;
}
.security-logos {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 14px;
}
.fda-disclaimer {
    font-size: 10px;
    color: #333; /* Almost invisible */
    margin: 20px auto;
    max-width: 800px;
    line-height: 1.2;
}
.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}
.footer-links a:hover {
    text-decoration: underline;
}

/* Exit Modal */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85);
}
.modal-content {
    position: relative;
    background-color: var(--bg-dark-gray);
    border: 3px solid var(--blood-red);
    padding: 30px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    border-radius: 10px;
    z-index: 10000;
}
.modal-headline {
    color: var(--blood-red);
    font-size: 32px;
    margin-bottom: 15px;
}
.modal-copy {
    font-size: 20px;
    margin-bottom: 25px;
}
.btn-text {
    background: none;
    border: none;
    color: #666;
    text-decoration: underline;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .super-headline { font-size: 48px; }
    .sub-headline { font-size: 24px; }
    .offer-headline { font-size: 32px; letter-spacing: 0; padding: 0; }
    
    .pricing-table {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
    }
    .package {
        flex: 1;
        max-width: 33%;
    }
    .package.target {
        transform: scale(1.05);
        z-index: 10;
        margin: 0 10px;
    }
    /* Force Decoy Order on Desktop */
    .package.left { order: 1; }
    .package.center { order: 2; }
    .package.right { order: 3; }
    
    .bonus-mockups {
        flex-direction: row;
        justify-content: center;
    }
    .bonus-item {
        flex: 1;
        max-width: 300px;
    }
    
    .guarantee-section {
        flex-direction: row;
        text-align: left;
    }
    .guarantee-icon {
        margin-right: 30px;
        margin-bottom: 0;
    }
}

/* Image Assets Styling */
.product-image {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    object-fit: contain;
}

.target-image {
    transform: scale(1.15);
    margin: 20px 0;
}

.guarantee-image {
    max-width: 150px;
    height: auto;
}

.security-img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

