
    :root {
        --primary: #ff9800;
        --secondary: #ff5722;
        --accent: #2196f3;
        --text: #202124;
        --bg: #ffffff;
        --light-bg: #fff3e0;
        --font-main: 'Poppins', sans-serif;
    }

    * { box-sizing: border-box; }
    body {
        font-family: var(--font-main);
        color: var(--text);
        background-color: var(--bg);
        margin: 0;
        line-height: 1.6;
    }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    a { color: var(--primary); text-decoration: none; transition: 0.3s; }
    a:hover { color: var(--accent); }

    /* Header */
    header {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        padding: 15px 0;
        position: relative;
        z-index: 100;
    }
    nav ul {
        list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; flex-wrap: wrap;
    }
    nav a { color: var(--text); font-weight: 600; }
    nav a:hover { color: var(--primary); }

    /* Hero */
    .hero {
        padding: 60px 0;
        background: var(--light-bg);
        margin-bottom: 40px;
        border-radius: 0 0 20px 20px;
        text-align: center;
    }
    .hero h1 { font-size: 2.6rem; margin-bottom: 16px; color: var(--primary); }
    .hero p { font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto 28px; }

    /* Article cards */
    .article-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 24px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        display: flex;
        flex-direction: column;
    }
    .article-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.08);
        border-color: var(--accent);
    }
    .article-category-tag {
        display: inline-block;
        background: var(--light-bg);
        color: var(--primary);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 3px 10px;
        border-radius: 20px;
        margin-bottom: 12px;
    }
    .article-card h3 { margin: 0 0 10px; font-size: 1.15rem; line-height: 1.4; }
    .article-card p { color: #666; font-size: 0.93rem; margin: 0 0 16px; flex: 1; }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 10px 22px;
        background: var(--accent);
        color: #fff;
        border-radius: 6px;
        font-weight: 600;
        text-align: center;
        border: none;
        cursor: pointer;
        font-size: 0.95rem;
        transition: background 0.2s, transform 0.2s;
    }
    .btn:hover {
        background: var(--primary);
        color: #fff;
        text-decoration: none;
        transform: translateY(-1px);
    }
    .btn-outline {
        background: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
    }
    .btn-outline:hover { background: var(--primary); color: #fff; }

    /* Article page */
    .article-body { max-width: 860px; margin: 0 auto; }
    .article-body h1 { font-size: 2rem; margin-bottom: 24px; color: var(--primary); }
    .article-body h2 { font-size: 1.5rem; margin-top: 32px; margin-bottom: 12px; }
    .article-body h3 { font-size: 1.2rem; margin-top: 24px; margin-bottom: 8px; }
    .article-body p { margin: 0 0 16px; line-height: 1.75; }
    .article-body ul, .article-body ol { margin: 0 0 16px; padding-left: 24px; }
    .article-body li { margin-bottom: 6px; }
    .article-body table {
        width: 100%; border-collapse: collapse; margin: 20px 0;
        font-size: 0.9rem;
    }
    .article-body table th, .article-body table td {
        border: 1px solid #ddd; padding: 10px 14px; text-align: left;
    }
    .article-body table th { background: var(--light-bg); font-weight: 700; }

    /* Sidebar */
    .blog-sidebar { }
    .sidebar-widget { margin-bottom: 30px; }
    .sidebar-widget h4 {
        font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px;
        color: var(--primary); border-bottom: 2px solid var(--accent);
        padding-bottom: 8px; margin-bottom: 16px;
    }

    /* Footer */
    footer {
        background: var(--primary);
        color: #fff;
        padding: 40px 0;
        margin-top: 60px;
    }
    footer a { color: rgba(255,255,255,0.8); }
    footer a:hover { color: #fff; }

    
    .logo {
        display: inline-block;
        width: 40px;
        height: 40px;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCA1MCA1MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIyNSIgY3k9IjI1IiByPSIyNSIgZmlsbD0iI2ZmOTgwMCIgLz48cmVjdCB4PSIxNSIgeT0iMTUiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdHJhbnNmb3JtPSJyb3RhdGUoNDUgMjUgMjUpIiBmaWxsPSIjZmY1NzIyIiAvPjxjaXJjbGUgY3g9IjI1IiBjeT0iMjUiIHI9IjUiIGZpbGw9IiMyMTk2ZjMiIC8+PC9zdmc+');
        background-size: contain;
        background-repeat: no-repeat;
        margin-right: 10px;
        vertical-align: middle;
    }
    .site-branding {
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    .site-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #ff9800;
        margin: 0;
    }
    
    
        .article-grid { column-count: 3; column-gap: 24px; }
        .article-card { display: inline-block; width: 100%; margin-bottom: 24px; }
        @media (max-width: 900px) { .article-grid { column-count: 2; } }
        @media (max-width: 600px) { .article-grid { column-count: 1; } }
        

    /* Article card thumbnail */
    .article-card-thumb {
        width: calc(100% + 48px);
        height: 180px;
        object-fit: cover;
        border-radius: 12px 12px 0 0;
        margin: -24px -24px 16px -24px;
        display: block;
        flex-shrink: 0;
    }

    /* Inline article images (injected into body) */
    .article-img-left {
        float: left;
        max-width: 42%;
        height: auto;
        border-radius: 8px;
        margin: 6px 20px 16px 0;
        display: block;
    }
    .article-img-right {
        float: right;
        max-width: 42%;
        height: auto;
        border-radius: 8px;
        margin: 6px 0 16px 20px;
        display: block;
    }
    .article-img-center {
        display: block;
        max-width: 80%;
        height: auto;
        border-radius: 8px;
        margin: 20px auto;
    }
    .article-img-clearfix { clear: both; }

    /* Affiliate CTA box */
    .article-cta {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: white;
        padding: 36px 40px;
        border-radius: 14px;
        margin: 44px 0;
        text-align: center;
    }
    .article-cta h3 {
        color: white;
        font-size: 1.5rem;
        margin: 0 0 10px;
    }
    .article-cta p {
        color: rgba(255,255,255,0.88);
        margin: 0 0 22px;
        font-size: 1rem;
    }
    .btn-cta {
        background: white;
        color: var(--primary);
        font-size: 1.05rem;
        font-weight: 700;
        padding: 14px 34px;
        border-radius: 8px;
        display: inline-block;
        transition: all 0.2s;
        text-decoration: none;
    }
    .btn-cta:hover {
        background: var(--light-bg);
        color: var(--accent);
        text-decoration: none;
        transform: translateY(-2px);
    }

    /* Mid-article inline deal box */
    .inline-deal-box {
        border: 2px solid var(--primary);
        border-radius: 10px;
        padding: 20px 24px;
        margin: 32px 0;
        background: var(--light-bg);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 14px;
    }
    .inline-deal-box p {
        margin: 0;
        font-size: 0.97rem;
        color: var(--text);
        flex: 1;
    }
    .inline-deal-box .btn-inline {
        background: var(--primary);
        color: white;
        font-size: 0.92rem;
        font-weight: 700;
        padding: 10px 22px;
        border-radius: 7px;
        text-decoration: none;
        white-space: nowrap;
        transition: opacity 0.2s;
    }
    .inline-deal-box .btn-inline:hover {
        opacity: 0.85;
        text-decoration: none;
    }
    