:root {
    --primary-color: #c82a98;
    --secondary-color: #a530cc;
    --dark-blue: #2c3e50; /* A dark color for text to ensure contrast */
    --light-gray: #f8f9fa;
    --soft-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    --border-radius-lg: 1rem;
    --section-padding-desktop: 70px;
    --section-padding-mobile: 40px;
    --card-padding: 24px;
    --primary-color-rgb: 200, 42, 152; /* RGB for #c82a98 */
    --secondary-color-rgb: 165, 48, 204; /* RGB for #a530cc */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
    background-color: var(--light-gray);
    overflow-x: hidden;
}

/* Global Styles */
.bg-primary-gradient {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.bg-secondary-gradient {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

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

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

.bg-primary-light {
    background-color: rgba(var(--primary-color-rgb), 0.1);
}

.bg-secondary-light {
    background-color: rgba(var(--secondary-color-rgb), 0.1);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--soft-shadow);
}
.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

.btn-warning-custom {
    background-color: #ffc107; /* Bootstrap warning color */
    border-color: #ffc107;
    color: var(--dark-blue);
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--soft-shadow);
}
.btn-warning-custom:hover {
    background-color: #e0a800; /* Darker warning color */
    border-color: #e0a800;
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

.card {
    border: none;
    box-shadow: var(--soft-shadow);
    border-radius: var(--border-radius-lg);
    padding: var(--card-padding);
}

section {
    padding-top: var(--section-padding-desktop);
    padding-bottom: var(--section-padding-desktop);
}
@media (max-width: 767.98px) {
    section {
        padding-top: var(--section-padding-mobile);
        padding-bottom: var(--section-padding-mobile);
    }
    .btn-lg, .btn-xl {
        width: 100%;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    .hero-logo {
        max-width: 200px;
    }
}

/* Attention Bar */
#attention-bar {
    font-size: 0.95rem;
}

/* Hero Section */
#hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    position: relative;
    padding-bottom: calc(var(--section-padding-desktop) + 50px); /* Extra space for badge */
}
#hero-section .hero-logo {
    max-width: 250px;
    height: auto;
}
#hero-section h1 {
    color: #fff;
    font-size: 3.5rem;
}
#hero-section p.lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.urgency-badge {
    position: absolute;
    bottom: -20px; /* Adjust based on button height */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem !important;
    z-index: 10;
    box-shadow: var(--soft-shadow);
}
@media (max-width: 767.98px) {
    #hero-section h1 {
        font-size: 2.5rem;
    }
    .urgency-badge {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Primary CTA */
#primary-cta {
    border-bottom: 1px solid #eee;
}
#primary-cta h2 {
    font-size: 2.5rem;
}
@media (max-width: 767.98px) {
    #primary-cta h2 {
        font-size: 1.8rem;
    }
}

/* Product Introduction */
#product-intro .product-benefits {
    font-size: 1.1rem;
}
#product-intro .product-benefits .icon-check {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-color);
}
#product-intro img {
    max-width: 100%;
}

/* Feature Highlights */
.icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
}
.icon-wrapper svg {
    width: 30px;
    height: 30px;
}
.text-secondary-dark {
    color: #6c757d; /* a slightly darker gray for secondary text */
}

/* Video Section */
#video-section .gen-media-wrapper {
    background-color: #000; /* For videos, give a black background */
}

/* Mid Page CTA */
#mid-page-cta {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Bonus Stack */
#bonus-container {
    display: grid;
    gap: 2rem; /* Spacing between bonus cards */
}
.bonus-card {
    border: 1px solid #e0e0e0;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    padding: 2rem; /* Consistent padding */
}
.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.1);
}
.bonus-card .bonus-image-wrapper {
    flex-shrink: 0;
    width: 200px; /* Fixed width for image on desktop */
    height: auto;
}
.bonus-card .bonus-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.bonus-card .bonus-content {
    flex-grow: 1;
}
.bonus-card .value-badge {
    background-color: #28a745; /* Green for value badge */
    color: #fff;
}
@media (max-width: 991.98px) { /* Stacks vertically on smaller screens */
    .bonus-card {
        flex-direction: column;
    }
    .bonus-card .bonus-image-wrapper {
        width: 100%;
        max-width: 300px; /* Limit image size on mobile */
        margin-left: auto;
        margin-right: auto;
    }
    .bonus-card .bonus-content {
        text-align: center;
    }
    .bonus-card .d-flex {
        justify-content: center !important;
    }
    .bonus-card .btn {
        width: 100%;
    }
}

/* Final Urgency CTA */
#final-cta h2 {
    color: #fff;
}
#final-cta p.lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Affiliate Disclaimer */
.disclaimer-card {
    background-color: #fff;
    border-color: #e0e0e0 !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

/* Footer */
#main-footer {
    font-size: 0.9rem;
}
#main-footer .social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
#main-footer .social-icons a:hover {
    color: var(--primary-color) !important;
}
#main-footer .social-icons svg {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

/* Custom CSS for Bootstrap variable overrides */
.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    border-radius: 0.85rem;
}

/* AOS Animations */
[data-aos] {
    transition-property: opacity, transform;
}