.page-advertiser {
            /* Updated Primary Color */
            --brand-primary: #92d60f;
            --brand-dark: #090910;
            --brand-darker: #11111a; 
            --brand-muted: #A7ACB0;
            --brand-text: #ffffff;
        }

        .page-advertiser {
            font-family: 'Geist', sans-serif;
            background-color: var(--brand-darker);
            color: var(--brand-text);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Utilities */
        .text-primary-brand { color: var(--brand-primary) !important; }
        .bg-primary-brand { background-color: var(--brand-primary) !important; }
        .text-muted-brand { color: var(--brand-muted) !important; }
        .tracking-tight { letter-spacing: -0.03em; }
        .tracking-wide { letter-spacing: 0.2em; }
        
        /* Typography */
        .display-hero { font-size: clamp(40px, 5vw, 72px); font-weight: 600; line-height: 1.1; letter-spacing: -1.6px; }
        .stat-heading { font-size: clamp(42px, 5vw, 60px); font-weight: 600; line-height: 1.2; letter-spacing: -0.03em; }
        .section-heading { font-size: clamp(30px, 4vw, 48px); font-weight: 600; line-height: 1.2; letter-spacing: -0.03em; }
        
        /* Buttons */
        .btn-glow-wrapper { position: relative; display: inline-flex; border-radius: 50px; }
        .btn-glow-wrapper::after {
            content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: 0;
            /* Updated RGB for #92d60f -> 146, 214, 15 */
            background: linear-gradient(90deg, rgba(146, 214, 15, 0) 25.96%, #92d60f 100%);
            opacity: 0; filter: blur(17px); mix-blend-mode: plus-lighter;
            transition: opacity 0.3s ease-out; pointer-events: none;
        }
        .btn-glow-wrapper:hover::after { opacity: 1; }
        .btn-glow-wrapper > * { position: relative; z-index: 10; }

        .btn-outline-brand {
            border: 1px solid #fff; color: #fff; border-radius: 50px; font-weight: 700;
            padding: 12px 24px; transition: transform 0.3s ease-out; text-decoration: none;
        }
        .btn-solid-brand {
            background-color: #fff; color: #000; border-radius: 50px; font-weight: 700;
            padding: 16px 32px; transition: transform 0.3s ease-out; text-decoration: none;
        }
        .btn-solid-primary {
            background-color: var(--brand-primary); color: #000; border-radius: 50px; font-weight: 700;
            padding: 16px 32px; text-decoration: none;
        }

        /* Hero Section */
        .hero-bg {
            position: absolute; inset: 0; z-index: -20;
            background-image: url('https://clipflip.io/_next/static/media/AdvertiserHeroBackground.cdd79507.webp');
            background-position: center 20%; background-size: cover; background-repeat: no-repeat;
        }
        .hero-gradient {
            position: absolute; inset: 0; z-index: -30;
            background: linear-gradient(to bottom, #000000, var(--brand-darker));
        }
        
        /* Avatars */
        .avatar-group img {
            width: 24px; height: 24px; border-radius: 50%; border: 2px solid #000;
            margin-left: -6px; object-fit: cover; background: rgba(255,255,255,0.05);
        }
        .avatar-group img:first-child { margin-left: 0; }

        /* Trust Cards */
        .trust-section { background-color: var(--brand-dark); border-radius: 1.75rem; }
        .trust-icon-box {
            width: 60px; height: 60px; border-radius: 16px; display: flex;
            align-items: center; justify-content: center;
            background-color: rgba(146, 214, 15, 0.1); color: var(--brand-primary);
        }

        /* Campaigns Work Section */
        .campaign-tornado-wrapper {
            background-color: var(--brand-dark); border-radius: 1.75rem; position: relative;
            box-shadow: inset 0 0 120px rgba(9,9,16,0.75); overflow: hidden;
        }
        
        .campaign-tornado-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(9,9,16,0) 0%, rgba(9,9,16,0.6) 50%, var(--brand-darker) 100%);
            z-index: 5;
            pointer-events: none;
        }

        .step-card {
            background: rgba(17, 20, 29, 0.5); 
            backdrop-filter: blur(17px);
            -webkit-backdrop-filter: blur(17px);
            border-radius: 1rem; padding: 2rem; height: 100%; position: relative;
            z-index: 10;
        }
        .step-number { font-size: 60px; font-weight: 800; color: rgba(255,255,255,0.2); line-height: 1; letter-spacing: -1.8px; }

        /* Campaign Types Cards */
        .type-card {
            background: #0d0f12; border: 1px solid #1b1b1f; border-radius: 1rem;
            overflow: hidden; transition: all 0.3s ease-out; cursor: pointer; height: 100%;
        }
        .type-card:hover {
            transform: translateY(-8px); border-color: var(--brand-primary);
            box-shadow: 0 20px 50px -12px rgba(146, 214, 15, 0.35);
        }
        .type-card-img { height: 368px; background: #0a0b10; position: relative; overflow: hidden; }
        .type-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

        /* TikTok Phone Mockup (Infinite Marquee) */
        .tiktok-scroller-container {
            display: flex;
            overflow: hidden;
            width: 100%;
            padding-bottom: 2rem;
            gap: 1.5rem; /* Gap between the duplicated tracks */
            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);
        }
        
        .tiktok-scroller-track {
            display: flex;
            gap: 1.5rem;
            flex-shrink: 0;
            animation: scroll-left 45s linear infinite;
            will-change: transform;
        }

        @keyframes scroll-left {
            0% { transform: translateX(0); }
            /* Shift by the exact width of one track + the gap to make it perfectly seamless */
            100% { transform: translateX(calc(-100% - 1.5rem)); }
        }

        .tiktok-mockup {
            width: 312px; height: 672px; flex-shrink: 0;
            border-radius: 12px; position: relative; overflow: hidden;
            background: linear-gradient(to bottom, #1b1f2c, #111520, #090c14);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .tiktok-mockup video {
            position: absolute; inset: 0; width: 100%; height: 100%;
            object-fit: contain; object-position: center; transform: translateY(-16px);
        }
        .music-ticker { display: flex; white-space: nowrap; animation: ticker 12s linear infinite; }
        @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* Table */
        .comparison-table .row { padding: 32px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .comparison-table .row:nth-child(even) { background-color: rgba(255,255,255,0.02); }

        /* Accordion Custom */
        .accordion-item { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
        .accordion-button { 
            background: transparent !important; color: #fff !important; font-weight: 600;
            font-size: 24px; padding: 26px 0; box-shadow: none !important; letter-spacing: -0.72px;
        }
        .accordion-button::after { display: none; }
        .accordion-icon { font-size: 28px; line-height: 1; font-weight: 400; transition: transform 0.3s; }
        .accordion-button:not(.collapsed) .accordion-icon { transform: rotate(45deg); }
        .accordion-.page-advertiser { color: var(--brand-muted); padding: 0 0 26px 0; font-size: 16px; font-weight: 500; }

        /* Testimonial specific */
        .testi-nav-btn {
            width: 92px; height: 56px; border-radius: 70px; display: flex;
            align-items: center; justify-content: center; transition: transform 0.3s;
        }
        .testi-nav-btn:hover { transform: translateX(-4px); }
        .testi-nav-btn.next:hover { transform: translateX(4px); }
        
        .testi-avatar-btn {
            width: 32px; height: 32px; border-radius: 50%; border: 2px solid #000;
            background: #11141d; display: flex; align-items: center; justify-content: center;
            overflow: hidden; cursor: pointer; transition: all 0.2s ease; margin-left: -8px;
        }
        .testi-avatar-btn:first-child { margin-left: 0; }
        .testi-avatar-btn.active {
            box-shadow: 0 0 0 2px var(--brand-primary);
            z-index: 5;
            transform: translateY(-2px);
        }
        .testi-fade {
            animation: fadeEffect 0.4s ease-in-out;
        }
        @keyframes fadeEffect {
            0% { opacity: 0; transform: translateY(10px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Site footer (shared markup) */
        .fp-site-footer {
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .fp-footer-desc {
            color: var(--brand-muted);
            font-size: 15px;
            line-height: 1.8;
        }
        .fp-site-footer-nav a {
            color: var(--brand-muted);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.2s;
        }
        .fp-site-footer-nav a:hover {
            color: #fff;
        }
        .fp-footer-copy {
            color: var(--brand-muted);
        }
