/* ===================================
   CSS CUSTOM PROPERTIES (COLOR PALETTE)
   Adjust these variables to customize the theme
   =================================== */
:root {
    /* Background colors */
    --bg-primary: #0f0f12;
    --bg-secondary: #1a1a1f;
    --bg-tertiary: #23232a;
    
    /* Pink/Accent colors */
    --primary: #ff0080;
    --primary-light: #ff4da6;
    --primary-dark: #cc0066;
    --accent: #ff66b2;
    --accent-light: #ffb3d9;
    
    /* Glass effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    
    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    
    /* Shadows & effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glow-pink: 0 0 20px rgba(255, 0, 128, 0.5);
    
    /* Fonts */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Offset anchor scrolling so the fixed navbar never covers a section title */
section[id],
.sponsored-section {
    scroll-margin-top: 110px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===================================
   ANIMATED BACKGROUND GRADIENT
   =================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, 
        #0f0f12 0%, 
        #1a0a1f 25%, 
        #2a0a2a 50%, 
        #1a0a1f 75%, 
        #0f0f12 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===================================
   SCROLL PROGRESS BAR
   =================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: var(--glow-pink);
}

/* ===================================
   NAVIGATION BAR
   =================================== */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    max-width: 1300px;
    width: calc(100% - 3rem);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(15, 15, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 0, 128, 0.1);
    padding: 0;
}

.navbar-container {
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-logo img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 128, 0.3);
    filter: drop-shadow(0 0 10px rgba(255, 0, 128, 0.3));
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--primary);
}

.nav-links li a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-primary);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 0 rgba(255, 0, 128, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 0, 128, 0.6),
                0 10px 40px rgba(255, 0, 128, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 0 2px rgba(255, 0, 128, 0.2);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.nav-cta:hover::before {
    width: 200px;
    height: 200px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background: var(--primary);
}

/* Tablet + Mobile Navigation
   Collapses at 1024px because the inline links + CTA stop fitting well
   before that (they used to get clipped between 769px and ~1000px). */
@media (max-width: 1024px) {
    .navbar {
        top: 1rem;
        width: calc(100% - 2rem);
        border-radius: 50px;
    }

    .navbar-container {
        padding: 0.5rem 1rem;
        gap: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(-120%);
        width: calc(100% - 2rem);
        max-width: 500px;
        flex-direction: column;
        background: rgba(15, 15, 18, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        /* Short landscape screens must still be able to scroll the menu */
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
    }

    /* Keep "Get Access" reachable on tablets, next to the menu button */
    .nav-cta {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .navbar-logo img {
        height: 40px;
        width: 40px;
    }
}



/* ===================================
   GLASSMORPHISM PANEL UTILITY
   =================================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-pink);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-price {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-highlight {
    color: #00ff88;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.hero-pitch {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   CTA BUTTON
   =================================== */
.cta-button {
    position: relative;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(255, 0, 128, 0.5), 
                inset 0 2px 0 rgba(255, 255, 255, 0.2),
                0 0 0 0 rgba(255, 0, 128, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    will-change: transform;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 40px rgba(255, 0, 128, 0.7),
                0 15px 60px rgba(255, 0, 128, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.3),
                0 0 0 3px rgba(255, 0, 128, 0.2);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.03);
    transition: all 0.1s ease;
}

.cta-button.small {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.cta-glow {
    pointer-events: none;
}

/* ===================================
   MODEL CAROUSEL
   =================================== */
.model-carousel {
    position: absolute;
    bottom: 5%;
    width: 100%;
    overflow: hidden;
    opacity: 0.3;
    pointer-events: none;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    animation: carouselScroll 30s linear infinite;
    will-change: transform;
}

@keyframes carouselScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.model-card {
    min-width: 200px;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.model-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   SECTION COMMON STYLES
   =================================== */
section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(255, 102, 178, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 35px;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.4), 
                0 0 0 1px rgba(255, 0, 128, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 0, 128, 0.5);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    filter: drop-shadow(var(--glow-pink));
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 0 25px rgba(255, 0, 128, 0.8));
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 40px rgba(255, 0, 128, 0.4), 0 0 0 1px rgba(255, 0, 128, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.preview-btn {
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    color: var(--text-primary);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

/* Hide gallery items based on filter */
.gallery-item.hidden {
    display: none;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.08), rgba(255, 102, 178, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 30px;
}

.step:hover::before {
    opacity: 1;
}

.step > * {
    position: relative;
    z-index: 1;
}

.step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.4),
                0 0 0 1px rgba(255, 0, 128, 0.3);
    border-color: rgba(255, 0, 128, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--glow-pink);
    transition: all 0.4s ease;
}

.step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.8);
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
}

.step-arrow {
    color: var(--primary);
    opacity: 0.5;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.testimonials-carousel {
    position: relative;
    min-height: 300px;
    padding: 1rem 0;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 100%;
    padding: 3rem 2.5rem;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.testimonial-card.active:hover {
    transform: translateX(-50%) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3),
                0 0 0 1px rgba(255, 0, 128, 0.2);
    border-color: rgba(255, 0, 128, 0.4);
}

.stars {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    /* Comfortable 44x44 touch target instead of the bare icon size */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.footer-disclaimer {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===================================
   MOBILE STICKY CTA
   =================================== */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-cta .cta-button {
    width: 100%;
}

/* ===================================
   MODALS
   =================================== */
.modal,
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.modal.active,
.preview-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content,
.preview-content {
    position: relative;
    max-width: 500px;
    width: 100%;
    max-height: none;
    overflow-y: visible;
    padding: 3rem 2.5rem;
    animation: scaleUp 0.3s ease;
    z-index: 1;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 0, 128, 0.2);
}

/* Add scrolling only on mobile if needed */
@media (max-width: 768px) {
    .modal-content,
    .preview-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.price-card {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05), rgba(255, 102, 178, 0.05));
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 25px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(255, 0, 128, 0.15);
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.price-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.payment-btn.primary:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.payment-btn.secondary {
    background: var(--glass-bg);
    color: var(--text-secondary);
    border-radius: 20px;
}

.payment-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.modal-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    padding: 1rem;
    background: var(--glass-bg);
    border-radius: 8px;
    display: none;
}

/* Show disclaimer on mobile only */
@media (max-width: 768px) {
    .modal-disclaimer {
        display: block;
    }
}

/* ===================================
   PROCESSING LOADER
   =================================== */
.processing-loader {
    display: none;
    text-align: center;
    padding: 2rem;
}

.processing-loader.active {
    display: block;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border: 4px solid var(--glass-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.processing-loader p {
    color: var(--text-secondary);
    font-weight: 600;
}

/* ===================================
   PREVIEW MODAL
   =================================== */
.preview-content {
    max-width: 700px;
}

.preview-content img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.preview-info {
    text-align: center;
}

.preview-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.preview-info p {
    color: var(--text-secondary);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets: tighter rhythm than desktop.
   Declared here (after the base rules) so it actually wins the cascade. */
@media (max-width: 1024px) {
    section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        margin-bottom: 2.25rem;
    }
}

@media (max-width: 768px) {
    /* Show mobile sticky CTA */
    .mobile-cta {
        display: block;
    }

    /* The sticky bottom CTA replaces the bar button on phones */
    .nav-cta {
        display: none;
    }

    .hamburger {
        margin-left: 0;
    }
    
    /* Adjust hero */
    .hero {
        min-height: 80vh;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Adjust sections */
    section {
        padding: 3rem 1rem;
    }
    
    /* Stack steps vertically */
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    /* Gallery grid */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Modal adjustments */
    .modal-content,
    .preview-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-price {
        font-size: 1.25rem;
    }
    
    .hero-pitch {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .modal-content,
    .preview-content {
        padding: 1.75rem 1.15rem;
    }

    .banners-section {
        padding: 2rem 1rem;
    }
}

/* Very small phones (iPhone SE, older Androids) */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .brand-name {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for keyboard navigation */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Smooth scrolling for internal links */
html:focus-within {
    scroll-behavior: smooth;
}

/* Performance optimization */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* ===================================
   BANNERS & PROMOTIONS SECTION
   =================================== */
.banners-section {
    padding: 5rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: var(--bg-secondary);
}

.banners-section .section-title {
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banners-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0.5rem auto 2.5rem;
}

.banners-container {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

/* Banner track: slides horizontally */
.banners-track {
    display: flex;
    overflow: hidden;
    border-radius: 28px;
    position: relative;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem;
    min-height: 220px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-card {
    min-width: 100%;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 22px;
    position: relative;
    background: var(--bg-secondary);
}

.banner-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 40px rgba(255, 0, 128, 0.18);
}

.banner-card.active {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* Each script block is shown/hidden via the track */
.banner-card .banner-code {
    min-height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--glass-border);
    font-family: 'Consolas', 'Menlo', monospace;
    font-size: 0.78rem;
    color: var(--text-muted);
    overflow: hidden;
    white-space: pre-wrap;
    word-break: break-word;
}

.banner-card .banner-code script {
    display: none;
}

.banner-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.banner-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    max-width: 320px;
}

/* Controls */
.banners-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.banner-prev,
.banner-next {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.banner-prev:hover,
.banner-next:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
    transform: scale(1.07);
}

/* Counter */
.banners-counter {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1.25rem;
}

.banners-counter strong {
    color: var(--primary);
    font-size: 1.15rem;
}

/* All-time counter */
.counter {
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    .counter {
        padding: 2rem 1rem;
    }
}

.counter-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 35px;
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, var(--glass-bg), var(--glass-bg) 45%, rgba(255, 0, 128, 0.04));
}

.counter-number {
    /* Clamped so the number never gets clipped on narrow phones */
    font-size: clamp(1.9rem, 7.5vw, 3.2rem);
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1.1;
}

.counter-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-left: 0.35rem;
}

.counter-text {
    color: var(--text-secondary);
    margin-top: 0.6rem;
    font-size: 1.05rem;
}

/* Banners that don't fit, stack them */
@media (max-width: 768px) {
    .banners-section {
        padding: 3rem 1rem 2rem;
    }

    .banners-track {
        min-height: 180px;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .banner-card {
        min-width: auto;
        flex: 1;
        min-height: 160px;
    }

    .banner-card .banner-code {
        min-height: 0;
        font-size: 0.7rem;
    }

    .banner-label {
        font-size: 0.9rem;
    }

    .banners-controls {
        gap: 0.75rem;
    }

    .banner-prev,
    .banner-next {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .counter-number {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .banners-section {
        padding: 2rem 0.75rem 1.5rem;
    }

    .banner-card {
        padding: 1.25rem;
    }

    .banner-card .banner-code {
        font-size: 0.65rem;
        min-height: 50px;
    }

    .banners-counter {
        font-size: 0.85rem;
    }
}

/* ===================================
   PAID-PLATFORM COMPARISON
   =================================== */
.platforms-sub {
    max-width: 760px;
    margin: -1.5rem auto 2.5rem;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* 8 cards -> 4x2 on desktop, 2x4 on tablet, 1x8 on phones */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1.5rem 1.25rem;
    border-radius: 22px;
    text-align: center;
    transition: all 0.35s ease;
}

.platform-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 128, 0.45);
    box-shadow: 0 14px 40px rgba(255, 0, 128, 0.22);
}

.platform-mark {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--text-primary);
}

.platform-meta {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-secondary);
}

.platforms-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 760px;
    margin: 1.5rem auto 0;
    padding: 1.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 0, 128, 0.35);
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.12), rgba(255, 102, 178, 0.05));
}

.platforms-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.platform-mark-ours {
    color: var(--primary);
}

.platforms-price {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 900;
    white-space: nowrap;
    color: var(--text-primary);
}

.platforms-price-note {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.platforms-note {
    max-width: 780px;
    margin: 1.75rem auto 0;
    font-size: 0.78rem;
    line-height: 1.55;
    text-align: center;
    color: var(--text-muted);
}

/* ===================================
   NATIVE-STYLE SPONSORED STORIES
   =================================== */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.story-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 24px;
    transition: all 0.35s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 128, 0.4);
    box-shadow: 0 14px 40px rgba(255, 0, 128, 0.2);
}

.story-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
}

.story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-tag {
    position: absolute;
    top: 0.45rem;
    left: 0.45rem;
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(15, 15, 18, 0.85);
    border: 1px solid rgba(255, 0, 128, 0.35);
}

.story-body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.story-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.story-cta {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.story-cta:hover {
    text-decoration: underline;
}

.stories-note {
    max-width: 780px;
    margin: 1.75rem auto 0;
    font-size: 0.78rem;
    text-align: center;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .story-card {
        grid-template-columns: 1fr;
    }

    .story-thumb {
        aspect-ratio: 16 / 9;
    }
}

/* ===================================
   AD SLOTS & SPONSORED PLACEMENTS
   =================================== */
.ad-strip {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-slot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.25rem 1.25rem;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    max-width: 100%;
    overflow: hidden;
}

.ad-slot-label {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
}

.ad-slot-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.ad-slot-frame iframe {
    border: 0;
    max-width: 100%;
}

.ad-cta-slot {
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.ad-cta-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0.25rem 0 0.5rem;
}

.cta-button.cta-slim {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    text-decoration: none;
}

.ad-native-slot {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 1.25rem;
}

.ad-native-slot #container-fb81f7ddc2ba9e7cd4849be2b42833a0 {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Sponsored native banner section */
.sponsored-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 2rem 1rem;
    text-align: center;
}

.sponsored-heading {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

/* Partner / smart-link button */
.smart-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 100px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin: 0.5rem 0 1.5rem;
}

.smart-link-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.25);
}

.banner-live-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.banner-live-link:hover {
    text-decoration: underline;
}

/* ===================================
   SPONSORED BREAK ROWS (IN-FEED ADS)
   =================================== */
.ad-break {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 2.5rem;
}

.ad-break-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.75rem 1.5rem;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.ad-break-inner .sponsored-heading {
    margin-bottom: 1rem;
}

.ad-grid {
    display: grid;
    /* 344px min keeps the fixed 320px creatives whole; min() keeps a single
       column from overflowing on narrow phones. 1 -> 2 -> 3 columns. */
    grid-template-columns: repeat(auto-fit, minmax(min(344px, 100%), 1fr));
    gap: 1rem;
    justify-content: center;
    width: 100%;
    max-width: 1120px;
    align-items: stretch;
}

.ad-slot.ad-slot-half {
    width: 100%;
    max-width: none;
    min-height: 130px;
    padding: 1rem 0.75rem 1.25rem;
    justify-content: space-between;
    text-align: center;
}

.ad-slot.ad-slot-half .ad-slot-frame {
    flex: 1;
}

.ad-break-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* Footer ad rail (bottom of the site) */
.footer-ads {
    padding-top: 0.5rem;
    padding-bottom: 2.5rem;
}

/* Concentrated sponsored zone */
.ad-zone-sub {
    margin: -0.5rem 0 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Notification-style (in-page push) ad cards */
.ad-push .ad-push-body {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    text-align: left;
    margin-bottom: 0.5rem;
}

.ad-push-icon,
.ad-toast-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: var(--primary);
    background: rgba(255, 0, 128, 0.12);
    border: 1px solid rgba(255, 0, 128, 0.3);
}

.ad-push-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.ad-push-text strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.ad-push-text span {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-secondary);
}

.ad-push .cta-button.cta-slim {
    width: 100%;
}

/* ===================================
   NOTIFICATION ADS (IN-PAGE PUSH TOASTS)
   =================================== */
.ad-toasts {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: min(340px, calc(100% - 2rem));
    pointer-events: none;
}

.ad-toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.35s ease;
}

.ad-toast-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

.ad-toast-body {
    flex: 1;
    min-width: 0;
}

.ad-toast-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ad-toast-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.ad-toast-text {
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--text-secondary);
}

.ad-toast-actions {
    margin-top: 0.5rem;
}

.ad-toast-open {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.ad-toast-open:hover {
    text-decoration: underline;
}

.ad-toast-close {
    flex: 0 0 auto;
    padding: 0 0.15rem;
    background: none;
    border: 0;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.ad-toast-close:hover {
    color: var(--text-primary);
}

.ad-toast.is-closing {
    animation: toastOut 0.25s ease forwards;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateY(16px);
    }
}

/* ===================================
   GALLERY SLIDE-IN BANNERS
   =================================== */
.gallery-slideins {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Sits below the modal backdrops (z-index 10000) and lets clicks
       pass through everywhere except the banners themselves. */
    z-index: 1500;
    pointer-events: none;
}

.gallery-slidein {
    position: absolute;
    top: 50%;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1rem 1.15rem;
    border-radius: 20px;
    background: rgba(15, 15, 18, 0.94);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    visibility: hidden;
    pointer-events: auto;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.5s;
}

.gallery-slidein--left {
    left: 0;
    transform: translateY(-50%) translateX(calc(-100% - 1.5rem));
}

.gallery-slidein--right {
    right: 0;
    transform: translateY(-50%) translateX(calc(100% + 1.5rem));
}

.gallery-slidein--left.is-visible {
    transform: translateY(-50%) translateX(1rem);
    visibility: visible;
}

.gallery-slidein--right.is-visible {
    transform: translateY(-50%) translateX(-1rem);
    visibility: visible;
}

.gallery-slidein-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.gallery-slidein-close {
    padding: 0 0.15rem;
    background: none;
    border: 0;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.gallery-slidein-close:hover {
    color: var(--text-primary);
}

.gallery-slidein-body {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.gallery-slidein-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.gallery-slidein-text strong {
    font-size: 0.92rem;
    color: var(--text-primary);
}

.gallery-slidein-text span {
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--text-secondary);
}

.gallery-slidein .cta-button.cta-slim {
    width: 100%;
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
}

/* No room beside the content on tablets and phones */
@media (max-width: 1024px) {
    .gallery-slideins {
        display: none;
    }
}

/* On smaller laptops show one banner instead of two */
@media (max-width: 1399px) {
    .gallery-slidein--left {
        display: none;
    }
}

/* ===================================
   INTERSTITIAL POPUP AD
   =================================== */
.ad-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.ad-popup.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.ad-popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 420px;
    width: 100%;
    padding: 2.75rem 2rem 2rem;
    border-radius: 32px;
    text-align: center;
    animation: scaleUp 0.3s ease;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 0, 128, 0.2);
}

.ad-popup-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.ad-popup-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.ad-popup-slot {
    width: 100%;
    padding: 0.75rem;
}

.ad-popup-dismiss {
    margin-top: 0.25rem;
    background: none;
    border: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.ad-popup-dismiss:hover {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .ad-strip {
        padding: 1rem;
    }

    .ad-slot {
        width: 100%;
        padding: 0.75rem;
    }

    .ad-break {
        padding: 1rem 1rem 1.75rem;
    }

    .ad-break-inner {
        padding: 1.25rem 0.9rem;
    }

    .ad-slot.ad-slot-half {
        min-height: 0;
        padding: 1rem 0.85rem 1.25rem;
    }

    /* Keep notification ads clear of the sticky mobile CTA */
    .ad-toasts {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 5.5rem;
        width: auto;
    }

    /* Stack the comparison highlight on narrow screens */
    .platforms-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
}

/* ===================================
   RESPONSIVE AD & SPONSORED TUNING
   Kept at the end of the file so these win the cascade over the
   base ad rules declared above.
   =================================== */

/* Tablets: give the ad containers more usable width */
@media (max-width: 1024px) {
    .ad-break {
        padding: 1.5rem 1.5rem 2rem;
    }

    .ad-break-inner {
        padding: 1.5rem 1.25rem;
    }
}

/* Phones */
@media (max-width: 768px) {
    .ad-break,
    .footer-ads {
        padding: 1rem 1rem 1.75rem;
    }

    .ad-break-inner {
        padding: 1.25rem 0.9rem;
    }

    .ad-slot.ad-slot-half {
        padding: 1rem 0.85rem 1.25rem;
    }
}

/* Small phones: reclaim every pixel for the fixed-width creatives */
@media (max-width: 380px) {
    .ad-break,
    .footer-ads {
        padding: 0.85rem 0.75rem 1.25rem;
    }

    .ad-break-inner {
        padding: 1rem 0.65rem;
    }

    .ad-slot.ad-slot-half {
        padding: 0.85rem 0.5rem 1rem;
    }

    .ad-strip {
        padding: 0.75rem;
    }

    .ad-popup-content {
        padding: 2.25rem 1.1rem 1.5rem;
    }

    .stories-note,
    .platforms-note,
    .ad-break-note {
        font-size: 0.72rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .banners-track {
        transition: none;
    }

    .banner-card {
        transition: none;
    }

    .ad-toast,
    .ad-toast.is-closing,
    .ad-popup.active,
    .ad-popup-content,
    .gallery-slidein,
    .ad-break {
        animation: none;
        transition: none;
    }
}
