:root {
    --primary-black: #0a0a0a;
    --secondary-black: #141414;
    --gold: #D4AF37;
    --gold-light: #F2D06B;
    --gold-dark: #AA8C2C;
    --white: #ffffff;
    --text-gray: #e0e0e0;
    --border-color: #333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    color: var(--white);
    font-weight: 700;
}

.gold-text {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #dc2626;
    /* Red */
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    /* Static, not fixed */
}

.announcement-bar .container {
    padding: 0;
    /* Override default container padding if needed for this bar */
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.headline {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subheadline {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #ccc;
}

/* VSL Container */
.vsl-container {
    margin-bottom: 40px;
}

.video-placeholder {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    background: #222;
    border: 2px solid var(--gold-dark);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.play-button {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 10px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.primary-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: black;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.secondary-cta {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.secondary-cta:hover {
    background: rgba(212, 175, 55, 0.1);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--secondary-black);
    text-align: center;
}

.icon-warning {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.problem-content {
    max-width: 700px;
    margin: 0 auto;
}

.problem-content h2 {
    margin-bottom: 20px;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-title span {
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-text {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Showcase (Testimonials Carousel) */
.showcase-section {
    padding: 80px 0;
    background: var(--secondary-black);
    text-align: center;
}

.carousel-container {
    position: relative;
    max-width: 500px;
    /* Limit width for vertical testimonial screenshots */
    margin: 40px auto 0;
    padding: 0 40px;
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    list-style: none;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 700px;
    /* Prevent being too tall */
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    border: 1px solid var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--gold);
    color: #000;
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.current-indicator {
    background: var(--gold);
}

/* Benefits */
.benefits-section {
    padding: 80px 0;
    text-align: center;
}

.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 40px auto 0;
    text-align: left;
}

.benefits-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Offers Section */
.offers-section {
    padding: 100px 0;
    background: radial-gradient(circle at top, #1c1c1c 0%, #000 100%);
    scroll-margin-top: 60px;
}

.headline-group {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: start;
}

.pricing-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.price .payment-type {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.pricing-card .features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    color: #ccc;
}

.pricing-card .features li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.pricing-card .features i {
    color: var(--gold);
    margin-top: 4px;
}

/* Featured Card Styling */
.pricing-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: black;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.alert-box {
    margin-top: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--gold-light);
}

.objection-text {
    text-align: center;
    max-width: 600px;
    margin: 40px auto 0;
    font-style: italic;
    color: #aaa;
}

/* Final CTA */
.final-cta-section {
    padding: 100px 0;
    text-align: center;
    background: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    /* Subtle texture if visible, else fallback color */
}

.final-cta-section h2 {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 2rem;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #000;
    text-align: center;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 10px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Specifics */
@media (max-width: 600px) {
    .headline {
        font-size: 1.8rem;
    }

    .hero-section {
        padding-top: 100px;
    }

    .cta-button {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }

    .carousel-container {
        padding: 0 10px;
        /* Reduce padding on mobile */
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .prev-btn {
        left: -15px;
    }

    .next-btn {
        right: -15px;
    }
}

/* Episodes Marquee */
.episodes-section {
    padding: 60px 0;
    text-align: center;
    background: #000;
    overflow: hidden;
}

.episodes-section h2 {
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--white);
    /* Optional: Make it gold or white. Using White for contrast. */
}

.marquee-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* Full width break out of container */
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    padding: 20px 0;
}

.marquee-track img {
    height: 350px;
    /* Poster vertical size */
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid #333;
    object-fit: contain;
    background: #111;
}

.marquee-track img:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    z-index: 2;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

@media (max-width: 600px) {
    .marquee-track img {
        height: 250px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--secondary-black);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #555;
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-item.highlighted {
    border: 1px solid var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.faq-item.highlighted .faq-question {
    color: var(--gold-light);
    font-weight: 700;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 20px;
    text-align: left;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.highlighted .faq-question i {
    color: var(--gold-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    padding: 20px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid #222;
}

/* Upsell Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #111;
    border: 2px solid var(--gold);
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popup-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ddd;
}

.popup-highlight {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin: 25px 0;
    font-size: 0.95rem;
    color: var(--gold-light);
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.text-button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
}

.text-button:hover {
    color: #999;
}

/* Social Proof Notification */
.notification-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #f0fdf4;
    /* Soft green background (Tailwind green-50) */
    border-left: 4px solid #22c55e;
    /* Green-500 */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    transform: translateX(-150%);
    /* Start hidden off-screen */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
    font-family: 'Outfit', sans-serif;
}

.notification-toast.visible {
    transform: translateX(0);
}

.notification-icon i {
    font-size: 1.5rem;
    color: #22c55e;
    /* Green check */
}

.notification-content p {
    color: #14532d;
    /* Dark green text */
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 2px;
}

.notification-time {
    font-size: 0.75rem;
    color: #86efac;
    /* Lighter green/gray */
    color: #666;
}

@media (max-width: 600px) {
    .notification-toast {
        left: 10px;
        bottom: 10px;
        right: 10px;
        /* Full width on mobile mostly */
        max-width: none;
    }
}