:root {
    --primary-color: #c82a98;
    --secondary-color: #a530cc;
    --primary-color-hover: #b32588;
    --text-dark: #212529;
    --text-light: #f8f9fa;
    --bg-light: #f8f9fa;
    --card-bg: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-padding {
    padding: 70px 0;
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 40px 0;
    }
}

.section-padding-sm {
    padding: 30px 0;
}

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

/* General Button Styles */
.btn-main {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 15px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-main:hover {
    background-color: var(--primary-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.btn-white-text {
    color: var(--text-light) !important;
}

/* Mobile Button Adjustment */
@media (max-width: 767.98px) {
    .btn-main {
        width: 100%;
        font-size: 1.1rem;
        padding: 12px 20px;
    }
}

/* Top Attention Bar */
.top-attention-bar {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.95rem;
    z-index: 1000;
    position: sticky;
    top: 0;
}

.top-attention-bar a {
    color: var(--secondary-color);
    text-decoration: none;
}

.top-attention-bar a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    color: var(--text-light);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(200, 42, 152, 0.8) 0%, rgba(165, 48, 204, 0.8) 100%);
}

.hero-section .logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.hero-section h1 {
    color: var(--text-light);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.badge-urgency {
    background-color: #ffc107; /* Bright yellow */
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 5px;
    display: inline-block;
    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-color: var(--card-bg);
    box-shadow: 0 0 20px var(--shadow-light);
}

.primary-cta-section h2, .primary-cta-section p {
    color: var(--text-dark);
}

/* Product Intro Section */
.product-intro {
    background-color: var(--bg-light);
    padding-top: 70px;
    padding-bottom: 70px;
}

.product-intro h2 {
    color: var(--text-dark);
}

.product-img-intro {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    height: auto;
}

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

.benefits-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.benefits-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 10px;
}

/* Feature Highlights */
.feature-highlights {
    background-color: var(--card-bg);
    padding-bottom: 70px;
}

.feature-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card .icon-large {
    font-size: 3rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6c757d;
}

/* Video Section */
.video-section {
    background-color: var(--bg-light);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 900px; /* Max width for the video */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mid Page CTA Banner */
.mid-page-cta {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border-radius: 12px;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.mid-page-cta h3 {
    color: var(--text-light);
}

/* Bonus Section */
#bonus-section {
    background-color: var(--card-bg);
}

.bonus-card {
    background-color: var(--card-bg);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.bonus-label {
    position: absolute;
    top: 15px;
    left: -20px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 5px 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: rotate(-45deg);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.bonus-content-wrapper {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 24px;
}

.bonus-image-col {
    flex-shrink: 0;
    width: 250px; /* Fixed width for desktop image */
}

.bonus-img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    display: block;
}

.bonus-details-col {
    flex-grow: 1;
}

.bonus-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.bonus-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.bonus-value-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.bonus-value-badge {
    background-color: #28a745; /* Green */
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bonus-cta-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.bonus-cta-btn:hover {
    background-color: var(--primary-color-hover);
    color: var(--text-light);
}

/* Bonus Card Mobile Adjustments */
@media (max-width: 767.98px) {
    .bonus-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .bonus-image-col {
        width: 100%;
        margin-bottom: 15px;
    }

    .bonus-title {
        font-size: 1.5rem;
    }

    .bonus-description {
        font-size: 1rem;
    }

    .bonus-value-strip {
        flex-direction: column;
        gap: 15px;
    }

    .bonus-cta-btn {
        width: 100%;
    }

    .bonus-label {
        top: 5px;
        left: -10px;
        padding: 5px 20px;
        font-size: 0.8rem;
    }
}

/* Final CTA Urgency */
.final-cta-urgency {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    text-align: center;
}

.final-cta-urgency h2 {
    color: var(--text-light);
}

/* Affiliate Disclaimer */
.affiliate-disclaimer {
    background-color: var(--bg-light);
}

.disclaimer-card {
    background-color: var(--card-bg);
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.disclaimer-card h5 {
    color: var(--primary-color);
}

.disclaimer-card p {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Social Footer */
.social-footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

.copyright-year {
    margin-top: 15px;
}