/* =========================================
   1. GLOBAL & RESET
   ========================================= */
:root {
    /* Colors */
    --color-bg: #050505;
    --color-bg-card: #121212;
    --color-bg-card-hover: #1E1E1E;

    --color-primary: #39FF14;
    /* Neon Green */
    --color-primary-glow: rgba(57, 255, 20, 0.5);

    --color-secondary: #00F3FF;
    /* Cyan */
    --color-secondary-glow: rgba(0, 243, 255, 0.5);

    --color-urgent: #FF2E2E;
    /* Red */
    --color-white: #FFFFFF;
    --color-text-dim: #B0B0B0;

    /* Spacing */
    --container-padding: 2rem;
    --section-gap: 5rem;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Common */
.section-padding {
    padding: 4rem 0;
}

@media(min-width: 768px) {
    .section-padding {
        padding: 6rem 0;
    }
}

.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* =========================================
   2. BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .btn {
        padding: 1rem 1.5rem;
        /* Reduce side padding */
        font-size: 0.9rem;
        /* Slightly smaller font */
        width: 100%;
        /* Full width on mobile to give max space */
        white-space: normal;
        /* Allow wrapping */
        text-align: center;
        line-height: 1.3;
    }
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000;
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--color-primary-glow);
    background-color: #fff;
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #000;
    box-shadow: 0 0 20px var(--color-primary-glow);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(57, 255, 20, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.urgency-banner {
    background-color: var(--color-urgent);
    color: white;
    text-align: center;
    padding: 0.6rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 3rem;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media(min-width: 992px) {
    .hero .container {
        grid-template-columns: 1.2fr 1fr;
    }
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media(min-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
    max-width: 500px;
}

.secure-badges {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-dim);
}

.secure-badges i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

/* 3D Mockup */
/* Hero Visual Container */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Target the image specifically for zoom */
.hero-product-img {
    transition: transform 0.4s ease;
    /* Smooth zoom */
}

.hero-product-img:hover,
.hero-product-img:active {
    transform: scale(1.05);
    /* Slight zoom on hover or touch */
}


.multimedia-mockup {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: #000;
    border-radius: 20px;
    border: 4px solid #333;
    position: relative;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow:
        -20px 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(57, 255, 20, 0.2);
    /* Neon glow behind */
    transition: transform 0.5s ease;
    overflow: hidden;
}

.multimedia-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
    background: #111;
}

.screen-bg,
video.screen-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-icon {
    font-size: 2rem;
    color: var(--color-white);
    filter: drop-shadow(0 0 10px var(--color-primary));
}

.volume-toggle {
    font-size: 1.5rem;
    color: var(--color-white);
    transition: all 0.3s ease;
    z-index: 5;
}

.volume-toggle:hover {
    color: var(--color-primary);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--color-primary-glow));
}

.track-info {
    flex: 1;
    color: white;
}

.track-name {
    font-weight: 700;
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 5px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.progress-bar .fill {
    width: 40%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
}

.price-tag {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--color-primary);
    color: #000;
    padding: 1rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 0 20px var(--color-primary-glow);
    z-index: 10;
    transform: rotate(15deg);
}

.price-tag .amount {
    font-size: 2rem;
    line-height: 1;
}

.price-tag .currency {
    font-size: 0.8rem;
}

.price-tag .cents {
    font-size: 1rem;
}

/* =========================================
   4. GENRES SECTION (Swiper)
   ========================================= */
/* =========================================
   4. GENRES SECTION (Swiper)
   ========================================= */
.genres-swiper {
    padding: 2rem 0 4rem !important;
}

/* Linear easing for smooth marquee effect */
.genres-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.genre-card {
    background: var(--color-bg-card);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    user-select: none;
    border: 1px solid #222;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.genre-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.genre-card:hover img {
    transform: scale(1.1);
}

.genre-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.genre-title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.swiper-slide {
    width: 220px;
    /* Adjusted width */
    height: auto;
}

/* =========================================
   5. FEATURES (Accordion)
   ========================================= */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--color-bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #222;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #1a1a1a;
}

.accordion-header span i {
    color: var(--color-primary);
    margin-right: 10px;
    width: 20px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    /* Ease-out */
    padding: 0 1.5rem;
    color: var(--color-text-dim);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Arbitrary large height */
    padding-bottom: 1.5rem;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.arrow {
    transition: transform 0.3s;
}

/* =========================================
   6. SUPPORT & TESTIMONIALS
   ========================================= */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.support-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.support-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.testimonials-swiper {
    padding-bottom: 3rem !important;
}

.testimonials-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.testimonial-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #222;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background-color: #333;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.quote {
    font-style: italic;
    color: #ccc;
    margin-bottom: 1rem;
}

.author {
    font-weight: 700;
    color: var(--color-primary);
}

/* =========================================
   7. COMPATIBILITY (Marquee)
   ========================================= */
.logos-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logos-marquee::before,
.logos-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logos-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg), transparent);
}

.logos-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg), transparent);
}

.marquee-content {
    display: flex;
    /* Ensures items are in a row */
    width: max-content;
    /* Forces content to be as wide as needed, preventing wrap */
    animation: marquee 30s linear infinite;
    /* Slower, smoother animation */
}

/* .brand-logo-img was duplicated here. Removed in favor of the definition at line 1036+ */

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   8. PRICING
   ========================================= */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.pricing-card {
    background: var(--color-bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    width: 100%;
    /* Standard width for desktop */
    max-width: 380px;
    text-align: center;
    border: 1px solid #333;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-primary);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    width: max-content;
    white-space: nowrap;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 1.5rem 0;
    color: var(--color-white);
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .period {
    font-size: 1.5rem;
    color: var(--color-text-dim);
}

.features-list {
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 1rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    color: #ddd;
    display: flex;
    align-items: flex-start;
    /* Align top for multi-line items */
}

.features-list li i {
    color: var(--color-primary);
    margin-right: 15px;
    min-width: 20px;
    margin-top: 5px;
    /* Adjust for text alignment */
}

/* Detailed List Styles */
.features-list.detailed li div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.features-list.detailed li strong {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.features-list.detailed li p {
    color: var(--color-text-dim);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.features-list li.disabled {
    color: #555;
}

.features-list li.disabled i {
    color: #555;
}

/* Mobile Pricing Overrides for Side-by-Side */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* =========================================
   9. VSL Container (Mobile 9:16)
   ========================================= */
.vsl-container-mobile {
    position: relative;
    width: 100%;
    max-width: 350px;
    /* Mobile width constraint */
    margin: 2rem auto;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.3);
    border: 2px solid var(--color-primary);
}

.vsl-container-mobile iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =========================================
   10. UPGRADE POPUP
   ========================================= */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.popup-content {
    background: var(--color-bg-card);
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    /* Desktop max width */
    position: relative;
    text-align: center;
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.2);
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-popup:hover {
    color: var(--color-urgent);
}

.popup-header h3 {
    font-size: 1.8rem;
    color: var(--color-urgent);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.upgrade-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 1rem 0;
    font-family: var(--font-heading);
}

.timer-container {
    background: #222;
    padding: 0.8rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 1px solid #333;
}

#popup-timer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-urgent);
    font-family: monospace;
}

.popup-features {
    text-align: left;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.popup-features li {
    margin-bottom: 0.5rem;
}

@keyframes flowGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn.upgrade-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem;
    background: linear-gradient(45deg, var(--color-primary), #00aa00, var(--color-primary));
    background-size: 200% 200%;
    animation: flowGradient 3s ease infinite, pulse 2s infinite;
    color: #000;
}

/* =========================================
   11. FAKE SALES NOTIFICATION
   ========================================= */
.fake-sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Bottom Left */
    z-index: 9990;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.fake-sales-notification.show {
    transform: translateY(0);
}

.sales-content {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(57, 255, 20, 0.3);
    /* Green subtle border */
    border-left: 4px solid var(--color-primary);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 350px;
    min-width: 280px;
}

.sales-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(57, 255, 20, 0.5);
}

.sales-icon-wrapper i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.sales-text p {
    margin: 2px 0;
    line-height: 1.2;
}

/* Typography styles moved inline for specificity, or can be kept here if preferred */
.buyer-name {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.buyer-action strong {
    color: var(--color-primary);
}

.time-ago {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        flex-wrap: wrap;
        /* Stack cards */
        gap: 2rem;
    }

    .pricing-card {
        width: 100%;
        /* Full width */
        max-width: none;
        padding: 2.5rem 1.5rem;
        border-radius: 15px;
        margin-bottom: 1rem;
    }

    .pricing-card h3 {
        font-size: 1.5rem;
    }

    .popular-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1.5rem;
    }

    .price {
        font-size: 3rem;
        margin: 1.5rem 0;
    }

    .price .currency,
    .price .period {
        font-size: 1.2rem;
    }

    .features-list {
        padding-left: 0.5rem;
        margin-bottom: 2rem;
    }

    .features-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
        align-items: flex-start;
    }

    .features-list li i {
        margin-right: 15px;
        font-size: 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* =========================================
   9. FOOTER & EXTRAS
   ========================================= */
footer {
    border-top: 1px solid #222;
    padding: 3rem 0;
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media(min-width: 768px) {
    footer .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    background: #20BA5A;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    transition: transform 0.3s;
}

.instagram-link i {
    font-size: 1.2rem;
    margin-right: 8px;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.instagram-link:hover {
    transform: translateY(-2px);
    color: #fff;
    /* Optional: make text white on hover */
}

/* =========================================
   2.5 AUDIO SAMPLES
   ========================================= */
.audio-card {
    background: var(--color-bg-card);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    /* Reduced padding */
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
}

.audio-card:hover {
    border-color: var(--color-primary);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.audio-card.playing {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.1);
}

.play-btn {
    width: 45px;
    /* Smaller button */
    height: 45px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.audio-info {
    flex: 1;
}

.audio-info h3 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
    color: var(--color-white);
}

.audio-info p {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    margin-bottom: 0.2rem;
}

/* Waveform Timeline */
.audio-timeline {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 25px;
    /* Reduced height */
    width: 100%;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.audio-card:hover .audio-timeline,
.audio-card.playing .audio-timeline {
    opacity: 1;
}

.waveform-bar {
    flex: 1;
    background-color: #333;
    border-radius: 2px;
    transition: height 0.2s ease, background-color 0.1s ease;
    min-height: 3px;
}

.waveform-bar.active {
    background-color: var(--color-primary);
    box-shadow: 0 0 5px var(--color-primary-glow);
}

/* Brand Logos Marquee Sizing */
.brand-logo-img {
    height: 60px;
    width: 140px;
    /* Fixed width for uniform visual weight */
    object-fit: contain;
    /* Ensures logo scales to fit without distortion */
    margin: 0 1rem;
    /* Spacing between logos */
    filter: grayscale(100%) brightness(0.8);
    /* Uniform look */
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Forces transparent images to be pure white silhouettes while preserving alpha (anti-aliasing) */
.white-silhouette {
    /* invert(1) turns black to white. grayscale assures no color. brightness boosts it. */
    filter: invert(1) grayscale(100%) brightness(1.5);
    -webkit-filter: invert(1) grayscale(100%) brightness(1.5);
}

.brand-logo-img:hover {
    filter: grayscale(0%) brightness(1);
    /* Color on hover */
    opacity: 1;
    transform: scale(1.1);
}

/* =========================================
   12. EXIT INTENT POPUP
   ========================================= */
.exit-content {
    border-color: #ff0000 !important;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.3) !important;
}

.btn-text-only:hover {
    color: #fff !important;
}

.no-thanks-link:hover {
    color: #fff !important;
}