:root {
    --primary-color: #ffa726;
    --secondary-color: #5d2e1f;
    --bg-gradient-start: #ffe0b2; /* Lighter primary */
    --bg-gradient-end: #c7a488;   /* Lighter secondary */
    --text-dark: #333;
    --text-light: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 70px 0;
}

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

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

.primary-bg-gradient {
    background: linear-gradient(90deg, var(--primary-color), #ffcc80);
}

.secondary-bg {
    background-color: var(--secondary-color);
}

.bg-light-gradient {
    background: linear-gradient(180deg, #f8f9fa, #e9ecef);
}

.card-container {
    background-color: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

/* Attention Bar */
.attention-bar {
    background-color: var(--secondary-color);
    font-size: 0.95rem;
}

/* Hero Section */
#hero-section {
    min-height: 80vh;
    background: url('https://images.unsplash.com/photo-1542744173-05336fcc7ad4?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center;
    background-size: cover;
    position: relative;
    color: var(--text-light);
    padding-top: 100px;
    padding-bottom: 100px;
}

#hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

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

.hero-logo {
    max-width: 200px;
    filter: brightness(0) invert(1); /* Makes dark logos visible on dark backgrounds */
}

#hero-section h1 {
    font-size: 3.8rem;
    line-height: 1.2;
}

#hero-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    #hero-section h1 {
        font-size: 2.5rem;
    }
    #hero-section p {
        font-size: 1rem;
    }
    .hero-logo {
        max-width: 150px;
    }
}

.urgency-badge {
    font-size: 0.9rem;
    padding: 8px 15px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Custom Buttons */
.custom-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.custom-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

.custom-btn-secondary {
    background-color: var(--text-light);
    border-color: var(--text-light);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.custom-btn-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0.4);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .custom-btn, .custom-btn-secondary {
        width: 100%;
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* Product Introduction */
.product-intro-img {
    max-height: 350px;
    object-fit: contain;
    width: 100%;
}

.benefits-list li {
    font-size: 1.1rem;
}

/* Feature Highlights */
.feature-card .feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff3e0; /* Lighter primary for icon background */
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Video Section */
.gen-media-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 15px;
}

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

/* Mid Page CTA Banner */
#mid-page-cta-banner {
    border-radius: 15px;
    margin: 50px 0;
}

/* Bonus Section */
.bonus-card {
    border: 1px solid #eee;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bonus-label {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.bonus-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    max-height: 180px;
}

.bonus-value {
    font-size: 1.1rem;
    color: #28a745; /* Green for value */
}

/* Affiliate Disclaimer */
.disclaimer-card {
    border: 1px dashed #ced4da;
    background-color: #f8f9fa;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: 30px 0;
    font-size: 0.9rem;
}

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

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