        /* === THEME === */
        :root {
            --brand-primary: #adff7a;
            --brand-dark: #0a0a0a;
            --text-main: #2d3748;
        }
        
        body { font-family: 'Inter', sans-serif; color: var(--text-main); background: #fff; }
        
        /* OVERRIDES */
        .button.is-primary {
            background-color: var(--brand-primary) !important;
            color: black !important;
            font-weight: 700;
            border: none;
            transition: all 0.2s;
        }
        .button.is-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(173,255,122,0.4); }
        
        /* --- GLASS HEADER --- */
        .navbar.is-glass {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        /* HERO */
        .hero-section {
            background: radial-gradient(circle at 90% 0%, rgba(173, 255, 122, 0.1) 0%, #ffffff 60%);
            padding: 6rem 1.5rem;
        }
        .hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; color: var(--brand-dark); letter-spacing: -2px; }
        
        /* MOCKUP UI (CSS ONLY) */
        .mockup-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            border: 1px solid #f0f0f0;
            overflow: hidden;
            position: relative;
            font-family: sans-serif;
        }
        .mockup-header {
            background: #f9fafb;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        .mockup-dots { display: flex; gap: 6px; margin-right: 15px; }
        .dot { width: 10px; height: 10px; border-radius: 50%; }
        .dot-r { background: #ff5f56; } .dot-y { background: #ffbd2e; } .dot-g { background: #27c93f; }
        
        .mockup-body { padding: 20px; }
        .stat-row { display: flex; justify-content: space-between; margin-bottom: 20px; }
        .stat-box { background: #f8f9fa; padding: 15px; border-radius: 8px; flex: 1; margin-right: 10px; text-align: center; }
        .stat-box:last-child { margin-right: 0; }
        .stat-val { font-size: 1.5rem; font-weight: 800; color: var(--brand-dark); }
        .stat-label { font-size: 0.7rem; text-transform: uppercase; color: #888; font-weight: 600; }
        
        .mock-table-row { display: flex; align-items: center; padding: 12px 0; border-bottom: 1px dashed #eee; }
        .mock-user { width: 32px; height: 32px; background: #eee; border-radius: 50%; margin-right: 10px; }
        .mock-bar { height: 6px; background: #eee; border-radius: 3px; flex-grow: 1; margin: 0 15px; position: relative; }
        .mock-fill { height: 100%; border-radius: 3px; }
        .mock-fill.high { width: 90%; background: #ff3860; }
        .mock-fill.med { width: 45%; background: #ffdd57; }
        .mock-fill.low { width: 15%; background: #23d160; }

        /* --- ENGINE ROOM (Dark Mode Tech Vibe) --- */
        .engine-room {
            background: #111;
            color: #fff;
            border-radius: 24px;
            padding: 4rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            margin: 4rem 0;
        }
        .engine-grid-lines {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
                        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }
        .engine-glow {
            position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(173, 255, 122, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        /* CARDS */
        .feature-box {
            padding: 2rem; border-radius: 16px; background: white; border: 1px solid #eee; height: 100%;
            transition: transform 0.2s;
        }
        .feature-box:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
        
        .step-card { padding-left: 2rem; border-left: 4px solid #eee; margin-bottom: 2.5rem; }
        .step-card.active { border-left-color: var(--brand-primary); }
        
        /* PRICING */
        .pricing-card { padding: 3rem 2rem; border: 1px solid #eee; border-radius: 20px; text-align: center; position: relative; overflow: hidden; }
        .pricing-card.is-featured { border: 2px solid var(--brand-primary); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
        .pop-tag { position: absolute; top: 20px; right: -30px; background: var(--brand-primary); padding: 5px 30px; transform: rotate(45deg); font-weight: 800; font-size: 0.7rem; }

        /* FOOTER */
        .footer-modern { background-color: #0a0a0a; color: #a0aec0; padding: 5rem 1.5rem; }
        .footer-modern h4 { color: white; font-weight: 700; margin-bottom: 1.5rem; }
        .footer-modern a { color: #a0aec0; display: block; margin-bottom: 0.8rem; transition: color 0.2s; }
        .footer-modern a:hover { color: var(--brand-primary); }

        @media(max-width: 768px) { .hero-title { font-size: 2.5rem; } .engine-room { padding: 2rem; } }
 
   
    .blog-hero {
        padding: 5rem 1.5rem 3rem;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        padding: 24px;
    }

    .blog-meta {
        color: #64748b;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    /* MAIN LAYOUT */
    .article-layout {
        max-width: 1300px;
        margin: 0 auto;
    }

    /* ARTICLE */
    .article-container {
        max-width: 750px;
    }

    .article-cover {
        border-radius: 18px;
        overflow: hidden;
        margin-bottom: 2.5rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .article-cover img {
        width: 100%;
        display: block;
    }

    .article-content {
        font-size: 1.15rem;
        line-height: 1.82;
        color: #334155;
    }

    .article-content h2,
    .article-content h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        color: #0f172a;
    }

    .article-content h2 { font-size: 2rem; margin-top: 2.5rem; margin-bottom: 1rem; }
    .article-content h3 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.8rem; }

    .article-content ul {
        list-style: disc;
        padding-left: 2rem;
        margin-bottom: 1.5rem;
    }

    /* SIDEBAR */
    .sidebar-title {
        font-weight: 700;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
        color: #111827;
    }

    .sidebar-card {
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        padding: 0.9rem;
        margin-bottom: 1rem;
        background: white;
        transition: 0.25s;
    }

    .sidebar-card:hover {
        transform: translateY(-3px);
        border-color: #8fff83;
        box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    }

    .sidebar-card-link { text-decoration: none; color: inherit; }

    .sidebar-thumbnail {
        width: 100%;
        height: 110px;
        border-radius: 10px;
        background-size: cover;
        background-position: center;
        margin-bottom: 0.7rem;
    }

    .sidebar-date {
        font-size: 0.75rem;
        color: #94a3b8;
        margin-top: 0.15rem;
    }

    /* AUTHOR BOX */
    .author-box {
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
    }

    .author-avatar {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background-size: cover;
        background-position: center;
        margin-right: 1rem;
    }

    /* RESPONSIVE */
    @media (max-width: 991px) {
        .sidebar {
            margin-top: 3rem;
        }
    }





/* HERO */
.blog-hero {
    background: linear-gradient(135deg, #e0ffe3 0%, #ffffff 100%);
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    max-width: 100%!important;
}
.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
}
.blog-hero p {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 1rem auto 0;
}

/* BLOG GRID */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e5e7eb;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}
.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-img {
    transform: scale(1.05);
}
.blog-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.blog-summary {
    color: #475569;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.read-more {
    margin-top: auto;
    font-weight: 600;
    color: #1d4ed8;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.read-more:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .blog-img {
        height: 180px;
    }
}
@media (max-width: 768px) {
    .blog-hero {
        padding: 4rem 1rem 3rem;
    }
    .blog-img {
        height: 160px;
    }
}


    /* HERO */
    .aff-hero {
        padding: 8rem 1.5rem 6rem;
        background: radial-gradient(circle at 50% 0%, #f0fdf4 0%, #ffffff 60%);
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    .aff-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 3.5rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    .aff-badge {
        background: #dcfce7; color: #15803d; 
        padding: 6px 16px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
        display: inline-block; margin-bottom: 1.5rem; border: 1px solid #86efac;
    }

    /* STEPS GRID */
    .steps-section { padding: 6rem 1.5rem; background: #fff; }
    .step-box {
        text-align: center; padding: 2rem; border-radius: 16px;
        background: #f8fafc; height: 100%; transition: transform 0.2s;
    }
    .step-box:hover { transform: translateY(-5px); background: #eff6ff; }
    .step-num {
        width: 40px; height: 40px; background: #0f172a; color: white;
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        font-weight: 700; margin: 0 auto 1.5rem;
    }

    /* EARNINGS CALCULATOR (Visual) */
    .calc-section {
        padding: 6rem 1.5rem; background: #1e293b; color: white;
        text-align: center;
    }
    .calc-card {
        background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
        border-radius: 24px; padding: 3rem; max-width: 800px; margin: 0 auto;
    }
    .calc-val { font-size: 4rem; font-weight: 800; color: #adff7a; line-height: 1; margin: 1rem 0; }

    @media(max-width: 768px) { .aff-title { font-size: 2.5rem; } }





    /* === FAQ THEME === */
    body { background-color: #fcfcfc; }

    /* HERO */
    .faq-hero {
        padding: 8rem 1.5rem 6rem;
        background: radial-gradient(circle at 50% 0%, rgba(173, 255, 122, 0.15) 0%, #ffffff 60%);
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    .faq-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 3.5rem;
        font-weight: 700;
        color: #0a0a0a;
        margin-bottom: 1.5rem;
    }
    
    /* SEARCH BAR */
    .search-container {
        max-width: 600px;
        margin: 0 auto;
        position: relative;
    }
    .faq-search {
        width: 100%;
        padding: 1.25rem 1.5rem 1.25rem 3.5rem;
        border-radius: 50px;
        border: 1px solid #e2e8f0;
        font-size: 1.1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.2s;
    }
    .faq-search:focus {
        outline: none;
        border-color: var(--brand-primary);
        box-shadow: 0 10px 40px rgba(173, 255, 122, 0.2);
    }
    .search-icon {
        position: absolute;
        left: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 1.2rem;
    }

    /* CATEGORY GRID */
    .cat-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }
    .cat-card {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        border: 1px solid #eee;
        text-align: center;
        transition: transform 0.2s;
        cursor: pointer;
    }
    .cat-card:hover {
        transform: translateY(-5px);
        border-color: var(--brand-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .cat-card.active {
        background: #f0fdf4;
        border-color: var(--brand-primary);
    }
    .cat-icon {
        width: 50px; height: 50px;
        background: #f8fafc; color: #475569;
        border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 1rem; font-size: 1.5rem;
    }

    /* ACCORDION */
    .faq-group { display: none; animation: fadeIn 0.3s ease; }
    .faq-group.active { display: block; }
    
    .accordion-item {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: border-color 0.2s;
    }
    .accordion-item:hover { border-color: #cbd5e1; }
    
    .accordion-header {
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: #1e293b;
        font-size: 1.1rem;
    }
    .accordion-icon {
        color: #94a3b8;
        transition: transform 0.3s;
    }
    
    .accordion-body {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
        color: #64748b;
        line-height: 1.6;
    }
    
    .accordion-item.is-open .accordion-icon { transform: rotate(180deg); color: var(--brand-primary); }
    .accordion-item.is-open .accordion-body {
        padding-bottom: 1.5rem;
        max-height: 500px;
    }

    /* CONTACT CTA */
    .contact-strip {
        background: #1e293b;
        border-radius: 24px;
        padding: 3rem;
        text-align: center;
        color: white;
        margin-top: 4rem;
    }

    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
    @media(max-width: 768px) { .faq-title { font-size: 2.5rem; } }
