/* Global Styles */
:root {
    --primary-color: #c82a98;
    --secondary-color: #a530cc;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --card-bg: #ffffff;
    --shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
    --shadow-lg: 0 .5rem 1rem rgba(0,0,0,.15);
    --primary-color-rgb: 200, 42, 152;
    --secondary-color-rgb: 165, 48, 204;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-light), var(--secondary-color), var(--primary-color)) fixed;
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    color: var(--text-dark);
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
}

p {
    line-height: 1.6;
    color: var(--text-light);
}

section {
    padding: 70px 0; /* Desktop padding */
}

@media (max-width: 767.98px) {
    section {
        padding: 40px 0; /* Mobile padding */
    }
    .custom-btn {
        width: 100% !important;
    }
}

.card {
    border: none;
    border-radius: 15px;
    background-color: var(--card-bg);
    box-shadow: var(--shadow-sm);
}

/* Attention Bar */
.attention-bar {
    background-color: var(--primary-color);
    padding: 10px 0;
    font-size: 0.95rem;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background: transparent;
    color: var(--text-dark);
}

.hero-logo {
    max-width: 250px;
    height: auto;
}

.hero-section h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    color: #e0e0e0;
    font-size: 1.25rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.custom-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg) !important;
    color: #fff;
}

.urgency-badge {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 20px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Primary CTA Section */
.primary-cta-section {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: #fff;
}

.primary-cta-section h2, .primary-cta-section p {
    color: #fff !important;
}

/* Product Intro Section */
.product-intro-section .card {
    background-color: var(--card-bg);
    box-shadow: var(--shadow-lg);
}

.product-benefits {
    list-style: none;
    padding-left: 0;
}

.product-benefits li {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.product-benefits i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Feature Highlights Section */
.feature-card {
    border: 1px solid rgba(0,0,0,.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
}

/* Video Section */
.gen-media-wrapper {
    background-color: #000; /* For better contrast on video edges */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gen-media-wrapper iframe {
    border-radius: 10px;
}

/* Mid Page CTA Banner */
.mid-page-cta-banner {
    background: var(--secondary-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.mid-page-cta-banner h2, .mid-page-cta-banner p {
    color: #fff !important;
}

.mid-page-cta-banner .btn-light {
    color: var(--primary-color) !important;
    background-color: #fff;
    border-color: #fff;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.mid-page-cta-banner .btn-light:hover {
    background-color: var(--bg-light);
    border-color: var(--bg-light);
    transform: translateY(-3px);
}

/* Bonus Section */
#bonus-container {
    padding-top: 20px;
}

.bonus-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex; /* For desktop layout */
    align-items: center;
    flex-wrap: wrap; /* Allows stacking on small screens */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bonus-card .bonus-image-wrapper {
    flex: 0 0 35%; /* Image takes 35% width on desktop */
    max-width: 35%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--primary-color-rgb), 0.05); /* Light tint for image background */
    border-right: 1px solid rgba(0,0,0,.05);
}

.bonus-card .bonus-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.bonus-card .bonus-content {
    flex: 0 0 65%; /* Content takes 65% width on desktop */
    max-width: 65%;
    padding: 24px;
    position: relative;
}

.bonus-card .bonus-label {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-bottom-right-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 1;
}

.bonus-card h3 {
    margin-top: 25px; /* Space for label */
    font-size: 1.75rem;
    color: var(--primary-color);
}

.bonus-card p {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.bonus-card .value-badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 15px;
}

.bonus-card .cta-strip {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    padding: 15px 24px;
    margin: 0 -24px -24px -24px; /* Extend full width of content area */
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.bonus-card .cta-strip .btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 30px;
}

@media (max-width: 767.98px) {
    .bonus-card {
        flex-direction: column;
        align-items: stretch;
    }
    .bonus-card .bonus-image-wrapper,
    .bonus-card .bonus-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .bonus-card .bonus-image-wrapper {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,.05);
        padding: 20px 20px 0 20px; /* Adjust padding to avoid too much space at bottom of img */
    }
    .bonus-card .bonus-image-wrapper img {
        margin-bottom: 20px; /* Add space below image */
    }
    .bonus-card .bonus-label {
        position: static;
        display: block;
        width: fit-content;
        margin-bottom: 15px;
        border-radius: 10px 0 10px 0;
    }
    .bonus-card h3 {
        margin-top: 0;
        font-size: 1.5rem;
    }
    .bonus-card .cta-strip {
        margin: 0 -24px -24px -24px; /* Keep consistent with desktop */
        border-top: 1px solid rgba(0,0,0,.1);
        text-align: center;
        justify-content: center;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }
    .bonus-card .cta-strip .btn {
        width: 100%;
    }
}


/* Final CTA Section */
.final-cta-section .card {
    border: 3px solid var(--primary-color);
    background-color: var(--card-bg);
}

/* Affiliate Disclaimer */
.affiliate-disclaimer .card {
    border: 1px solid rgba(var(--primary-color-rgb), 0.3);
    background-color: rgba(var(--primary-color-rgb), 0.05);
}

.affiliate-disclaimer h4 {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    padding: 20px 0;
}

.footer .social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: var(--primary-color) !important;
}

/* FontAwesome for custom icons */
.fas, .far, .fab {
    line-height: 1; /* Adjust if icons look off-center */
}

/* Ensure contrast for primary color */
.btn-primary, .bg-primary, .text-primary, .attention-bar {
    --bs-primary-rgb: 200, 42, 152;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}
