    /* ==========================================================================
       0. ACCESSIBILITY — skip-to-content link (visible on keyboard focus)
       ========================================================================== */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 8px;
        background: #064E3B;
        color: #fff;
        padding: 10px 16px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 4px;
        z-index: 9999;
        transition: top 0.2s ease-out;
    }
    .skip-link:focus { top: 8px; outline: 2px solid #FACC15; outline-offset: 2px; }

    /* ==========================================================================
       1. PREMIUM MINIMALIST AFRICAN PALETTE & TOKENS
       ========================================================================== */
    :root {
        --c-bg-body: #F3F4F6;
        --c-bg-surface: #FFFFFF;
        
        --c-brand-dark: #064E3B;
        --c-brand: #059669;
        --c-brand-light: #D1FAE5;
        
        --c-accent: #D97706;
        --c-accent-hover: #B45309;
        
        --c-text-h: #06291e;
        --c-text-p: #4B5563;
        --c-text-muted: #9CA3AF;
        
        --c-border: #E5E7EB;
        
        --radius-sm: 6px;
        --radius-md: 10px;
        --radius-lg: 16px;
        --radius-pill: 9999px;
        
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        
        --transition: all 0.2s ease-in-out;
        --font-main: 'Plus Jakarta Sans', system-ui, sans-serif;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font-main); background-color: var(--c-bg-body); color: var(--c-text-p); line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font: inherit; }
    
    /* Responsive Images Base */
    img { max-width: 100%; height: auto; display: block; }

    /* ==========================================================================
       2. NEW SKELETON: DASHBOARD / AGGREGATOR LAYOUT
       ========================================================================== */
    .mobile-header { display: none; background: var(--c-brand-dark); color: #fff; padding: 16px; position: sticky; top: 0; z-index: 50; align-items: center; justify-content: space-between; box-shadow: var(--shadow-sm); }
    .mobile-logo { font-size: 18px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
    .mobile-logo svg { color: var(--c-accent); }
    
    .app-layout { display: grid; grid-template-columns: 260px 1fr; max-width: 1440px; margin: 0 auto; min-height: 100vh; }

    /* ==========================================================================
       3. LEFT SIDEBAR (STICKY SILO NAVIGATION)
       ========================================================================== */
    .sidebar { background: var(--c-bg-surface); border-right: 1px solid var(--c-border); padding: 24px 20px; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; }
    
    .brand { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: var(--c-text-h); margin-bottom: 40px; }
    .brand-icon { width: 32px; height: 32px; background: var(--c-brand-dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--c-accent); }

    .nav-group { margin-bottom: 32px; }
    .nav-label { font-size: 11px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; display: block; }
    
    .side-nav { display: flex; flex-direction: column; gap: 6px; }
    .side-link { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--c-text-p); transition: var(--transition); }
    .side-link:hover, .side-link:focus-visible { background: var(--c-bg-body); color: var(--c-brand-dark); outline: none; }
    .side-link.active { background: var(--c-brand-light); color: var(--c-brand-dark); }
    .side-link svg { width: 18px; height: 18px; opacity: 0.7; }
    .side-link.active svg { opacity: 1; color: var(--c-brand); }

    .trust-badge-side { margin-top: auto; padding: 16px; background: #F8FAFC; border: 1px solid var(--c-border); border-radius: var(--radius-md); font-size: 12px; display: flex; align-items: center; gap: 12px; }
    .trust-badge-side svg { color: var(--c-brand); width: 24px; height: 24px; flex-shrink: 0; }
    .trust-badge-side strong { color: var(--c-text-h); display: block; font-size: 13px; }

    /* ==========================================================================
       4. MAIN CONTENT AREA
       ========================================================================== */
    .main-content { padding: 40px; background: var(--c-bg-body); }
    .content-wrapper { max-width: 960px; margin: 0 auto; }

    .breadcrumbs { display: flex; gap: 8px; font-size: 13px; font-weight: 500; color: var(--c-text-muted); margin-bottom: 24px; }
    .breadcrumbs a:hover { color: var(--c-brand); text-decoration: underline; }

    .hero-compact { margin-bottom: 32px; }
    .hero-compact h1 { font-size: 36px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin-bottom: 12px; line-height: 1.2; }
    .hero-compact p { font-size: 16px; color: var(--c-text-p); max-width: 800px; }

    .filter-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--c-border); padding-bottom: 16px; flex-wrap: wrap; gap: 16px;}
    .filter-tabs { display: flex; gap: 8px; }
    .tab-btn { padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--c-text-p); border-radius: var(--radius-pill); background: var(--c-bg-surface); border: 1px solid var(--c-border); transition: var(--transition); }
    .tab-btn:hover, .tab-btn:focus-visible { border-color: var(--c-text-muted); outline: none; }
    .tab-btn.active { background: var(--c-brand-dark); color: #fff; border-color: var(--c-brand-dark); }
    .update-notice { font-size: 12px; font-weight: 600; color: var(--c-brand); display: flex; align-items: center; gap: 6px; }

    /* ==========================================================================
       5. ULTRA-COMPACT LIST VIEW (BOOKIE ROWS)
       ========================================================================== */
    .directory-list { display: flex; flex-direction: column; gap: 12px; }

    .bookie-row { display: grid; grid-template-columns: 50px 140px 1fr 120px 160px; align-items: center; background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 16px; transition: var(--transition); box-shadow: var(--shadow-sm); }
    .bookie-row:hover { border-color: var(--c-brand); box-shadow: var(--shadow-md); transform: translateY(-1px); }
    .bookie-row.hide { display: none; }

    .row-rank { font-size: 18px; font-weight: 800; color: var(--c-text-muted); text-align: center; }
    .bookie-row:nth-child(1) .row-rank { color: var(--c-accent); font-size: 24px; }

    .row-brand { display: flex; flex-direction: column; align-items: center; gap: 6px; border-right: 1px solid var(--c-border); padding-right: 16px; }
    
    /* Image Update for Logos */
    .row-logo-img { width: 100px; height: 36px; object-fit: contain; border-radius: 4px; }
    
    .read-review { font-size: 11px; font-weight: 600; color: var(--c-brand); text-decoration: underline; }

    .row-features { padding: 0 20px; display: flex; flex-direction: column; justify-content: center; }
    .feature-title { font-size: 15px; font-weight: 700; color: var(--c-text-h); margin-bottom: 4px; display: flex; align-items: center; gap: 8px;}
    .feature-tag { font-size: 10px; background: var(--c-brand-light); color: var(--c-brand-dark); padding: 2px 6px; border-radius: 4px; font-weight: 700; text-transform: uppercase; }
    .feature-bullets { display: flex; flex-direction: column; gap: 2px; }
    .feature-bullets li { font-size: 13px; color: var(--c-text-p); display: flex; align-items: center; gap: 6px; }
    .feature-bullets li::before { content: ''; width: 4px; height: 4px; background: var(--c-accent); border-radius: 50%; }

    .row-rating { display: flex; flex-direction: column; align-items: center; justify-content: center; border-left: 1px solid var(--c-border); border-right: 1px solid var(--c-border); padding: 0 16px; }
    .score-circle { width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--c-brand); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: var(--c-brand-dark); margin-bottom: 4px; }
    .votes { font-size: 11px; color: var(--c-text-muted); font-weight: 500; }

    .row-action { padding-left: 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
    .bonus-text { font-size: 14px; font-weight: 800; color: var(--c-accent-hover); margin-bottom: 8px; line-height: 1.2; }
    .btn-claim { width: 100%; background: var(--c-brand-dark); color: #fff; font-size: 13px; font-weight: 700; padding: 10px; border-radius: var(--radius-sm); text-transform: uppercase; transition: var(--transition); text-align: center; }
    .btn-claim:hover, .btn-claim:focus-visible { background: var(--c-brand); outline: none; }

    /* ==========================================================================
       6. SEO ARTICLE SECTION & E-E-A-T AUTHOR BOX
       ========================================================================== */
    .seo-article { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--c-border); background: var(--c-bg-surface); padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
    .seo-article h2 { font-size: 24px; font-weight: 800; color: var(--c-text-h); margin-bottom: 20px; }
    .seo-article h3 { font-size: 18px; font-weight: 700; color: var(--c-text-h); margin: 30px 0 16px; }
    .seo-article p { font-size: 15px; margin-bottom: 16px; color: var(--c-text-p); }
    
    /* Content Image Block */
    .content-image-wrapper { margin: 24px 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--c-border); }
    .content-image-wrapper img { width: 100%; height: auto; display: block; object-fit: cover; }
    .content-image-caption { font-size: 12px; color: var(--c-text-muted); text-align: center; padding: 8px; background: var(--c-bg-body); border-top: 1px solid var(--c-border); }
    
    .data-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
    .data-table th { background: var(--c-bg-body); padding: 12px 16px; text-align: left; font-weight: 700; color: var(--c-text-h); border-bottom: 2px solid var(--c-border); }
    .data-table td { padding: 12px 16px; border-bottom: 1px solid var(--c-border); font-weight: 500; }
    
    .pill { display: inline-block; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
    .pill-green { background: #DCFCE7; color: #166534; }
    .pill-gold { background: #FEF3C7; color: #B45309; }

    /* E-E-A-T Author Box Structure */
    .eeat-author-box { margin-top: 40px; padding: 24px; border: 1px solid var(--c-border); border-radius: var(--radius-md); background: #F8FAFC; display: flex; gap: 16px; align-items: flex-start; }
    .author-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--c-brand-light); }
    .author-details { flex: 1; }
    .author-name { font-size: 16px; font-weight: 800; color: var(--c-text-h); display: flex; align-items: center; gap: 6px; }
    .author-role { font-size: 13px; color: var(--c-brand); font-weight: 600; margin-bottom: 8px; display: block;}
    .author-bio { font-size: 13px; color: var(--c-text-p); margin-bottom: 12px; }
    .audit-stamp { font-size: 11px; color: var(--c-text-muted); display: flex; align-items: center; gap: 4px; font-weight: 500; }

    /* ==========================================================================
       7. MOBILE RESPONSIVENESS
       ========================================================================== */
    @media (max-width: 1024px) {
        .app-layout { grid-template-columns: 220px 1fr; }
        .bookie-row { grid-template-columns: 40px 120px 1fr 100px 140px; padding: 12px; gap: 8px;}
        .row-features { padding: 0 10px; }
        .row-action { padding-left: 10px; }
        .main-content { padding: 24px; }
    }

    @media (max-width: 768px) {
        body { padding-bottom: 60px; }
        .app-layout { grid-template-columns: 1fr; display: block; }
        .sidebar { display: none; }
        .mobile-header { display: flex; }
        .main-content { padding: 16px; background: var(--c-bg-body); }
        .seo-article { padding: 20px; }

        .sidebar { display: flex; position: fixed; top: 0; left: 0; width: 280px; height: 100dvh; z-index: 100; transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow-md); padding-bottom: 80px; will-change: transform; }
        .sidebar.active { transform: translateX(0); }

        .menu-toggle-btn { color: #fff; display: flex; align-items: center; justify-content: center; padding: 4px; margin: 0; transition: var(--transition); }
        .menu-toggle-btn:active { transform: scale(0.95); }
        .hero-compact h1 { font-size: 28px; }
        
        .bookie-row { display: grid; grid-template-columns: 40px 1fr auto; grid-template-areas: "rank logo rating" "features features features" "action action action"; padding: 16px; gap: 12px; align-items: start; }
        
        .row-rank { grid-area: rank; text-align: left; font-size: 20px; }
        .row-brand { grid-area: logo; border-right: none; padding-right: 0; align-items: flex-start; flex-direction: row; gap: 12px;}
        .row-logo-img { height: 28px; width: auto; }
        .row-rating { grid-area: rating; border: none; padding: 0; align-items: flex-end; }
        .score-circle { width: 36px; height: 36px; font-size: 14px; border-width: 2px; margin-bottom: 0;}
        .votes { display: none; }
        
        .row-features { grid-area: features; padding: 0; padding-top: 12px; border-top: 1px solid var(--c-border); }
        .feature-bullets { flex-direction: row; flex-wrap: wrap; gap: 12px; }
        
        .row-action { grid-area: action; padding: 0; flex-direction: row; justify-content: space-between; align-items: center; background: var(--c-bg-body); padding: 12px; border-radius: var(--radius-sm); margin-top: 4px;}
        .bonus-text { margin-bottom: 0; font-size: 13px; }
        .btn-claim { width: auto; padding: 8px 24px; }
        
        .filter-row { padding-bottom: 0; border: none; }
        .filter-tabs { width: 100%; overflow-x: auto; padding-bottom: 12px; }
        .tab-btn { white-space: nowrap; }
        .update-notice { display: none; }

        .eeat-author-box { flex-direction: column; align-items: center; text-align: center; }
    }
    
    /* GLOBAL OVERLAY (Medya sorgusu dışında kalsın) */
    .sidebar-overlay { position: fixed; inset: 0; background: rgba(17, 24, 39, 0.6); backdrop-filter: blur(4px); z-index: 90; opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .sidebar-overlay.active { opacity: 1; visibility: visible; }
    
    /* Mobil menü açıkken body kaydırmasını kilitlemek için */
    body.sidebar-open { overflow: hidden; touch-action: none; }

    /* Native App Bottom Navigation */
    .bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--c-bg-surface); border-top: 1px solid var(--c-border); z-index: 100; justify-content: space-around; padding: 8px 0; padding-bottom: env(safe-area-inset-bottom, 8px); box-shadow: 0 -2px 10px rgba(0,0,0,0.05); }
    .b-nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; color: var(--c-text-muted); }
    .b-nav-item svg { width: 22px; height: 22px; }
    .b-nav-item.active { color: var(--c-brand-dark); }
    @media (max-width: 768px) { .bottom-nav { display: flex; } }
	/* ==========================================================================
       8. LSI CONTENT GRIDS (PAYMENTS, PROVIDERS, FEATURES)
       ========================================================================== */
    .content-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--c-border); }
    .section-header { margin-bottom: 24px; }
    .section-header h2 { font-size: 24px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; }
    .section-header p { font-size: 15px; color: var(--c-text-p); margin-top: 8px; max-width: 700px; }
    
    .grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
    
    .info-card { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 24px; transition: var(--transition); display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); }
    .info-card:hover { border-color: var(--c-brand); box-shadow: var(--shadow-md); transform: translateY(-3px); }
    
    .card-icon-header { display: flex; align-items: center; gap: 16px; }
    .icon-wrapper { width: 56px; height: 56px; background: var(--c-bg-body); border-radius: 12px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--c-border); overflow: hidden;}
    .icon-wrapper img { max-width: 32px; max-height: 32px; object-fit: contain; }
    
    .info-card h3 { font-size: 18px; font-weight: 800; color: var(--c-text-h); }
    .info-card p { font-size: 14px; color: var(--c-text-p); line-height: 1.6; }
    
    .abg-tagss { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--c-border); }
    .abg-tags { font-size: 11px; font-weight: 700; color: var(--c-brand-dark); background: var(--c-brand-light); padding: 4px 10px; border-radius: var(--radius-pill); }
    /* ==========================================================================
       9. COMPACT & CLOSED TABLE OF CONTENTS (AUTO TOC)
       ========================================================================== */
    .toc-wrapper { margin: 32px 0; background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); max-width: 400px; transition: var(--transition); }
    .toc-details { width: 100%; }
    
    /* Summary (Tıklanabilir Başlık Alanı) */
    .toc-summary { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; cursor: pointer; list-style: none; user-select: none; border-radius: var(--radius-md); background: #F8FAFC; transition: background 0.2s ease; }
    .toc-summary::-webkit-details-marker { display: none; } /* Safari/Chrome eski okunu gizle */
    .toc-summary:hover { background: #F1F5F9; }
    
    .toc-header-content { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 800; color: var(--c-text-h); text-transform: uppercase; letter-spacing: 0.5px; }
    .toc-header-content svg { color: var(--c-brand); }
    
    /* Açma/Kapama Buton Görünümü */
    .toc-toggle-btn { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--c-text-muted); background: var(--c-bg-body); padding: 4px 12px; border-radius: var(--radius-pill); border: 1px solid var(--c-border); transition: var(--transition); }
    .toc-summary:hover .toc-toggle-btn { border-color: var(--c-text-muted); color: var(--c-text-h); }
    
    /* Açık Durum (Open) Stilleri ve Chevron Animasyonu */
    .toc-chevron { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .toc-details[open] .toc-chevron { transform: rotate(180deg); color: var(--c-brand-dark); }
    .toc-details[open] .toc-toggle-btn { border-color: var(--c-brand-light); background: var(--c-brand-light); color: var(--c-brand-dark); }
    .toc-details[open] .toc-summary { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom: 1px solid var(--c-border); }
    
    /* İçerik Alanı ve Animasyonu */
    .toc-content { padding: 16px 20px 20px 20px; animation: fadeIn 0.3s ease-in-out; }
    .toc-list { display: flex; flex-direction: column; gap: 12px; }
    
    .toc-item-h2 { font-weight: 700; margin-top: 4px; }
    .toc-item-h3 { padding-left: 16px; position: relative; }
    .toc-item-h3::before { content: ''; position: absolute; left: 0; top: 9px; width: 4px; height: 4px; border-radius: 50%; background: var(--c-brand); opacity: 0.5; }
    
    .toc-link { font-size: 13px; font-weight: 600; color: var(--c-text-p); transition: var(--transition); display: block; line-height: 1.4; text-decoration: none; }
    .toc-link:hover, .toc-link:focus-visible { color: var(--c-brand-dark); transform: translateX(4px); outline: none; }
    
    @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
    
    /* Mobil Uyumluluk */
    @media (max-width: 768px) {
        .toc-wrapper { max-width: 100%; margin: 24px 0; }
    }
    /* ==========================================================================
       10. E-E-A-T OPTIMIZED FOOTER
       ========================================================================== */
    .site-footer { background-color: #06291e; color: #9CA3AF; padding: 60px 20px 24px; margin-top: 60px; border-top: 4px solid var(--c-brand); font-size: 13px; line-height: 1.6; }
    .footer-wrapper { max-width: 1200px; margin: 0 auto; }
    
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; } .footer-grid:has(.footer-country-col) { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
    
    .footer-brand-col .f-logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 16px; }
    .footer-brand-col .f-logo svg { color: var(--c-brand); }
    .footer-disclaimer { margin-bottom: 20px; }
    
    .footer-trust-badges { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
    .f-badge { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #374151; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; color: #fff; }
    
    .footer-nav-col h3, .footer-nav-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
    .footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-nav-col a { transition: color 0.2s ease; display: inline-block; }
    .footer-nav-col a:hover { color: var(--c-brand-light); transform: translateX(2px); }
    
    .footer-bottom { padding-top: 24px; border-top: 1px solid #374151; display: flex; flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom p { font-size: 12px; }
    
    /* Mobil Uyumluluk */
    @media (max-width: 1024px) {
        .footer-grid, .footer-grid:has(.footer-country-col) { grid-template-columns: 1fr 1fr; }
        .footer-brand-col { grid-column: 1 / -1; }
        .footer-country-col { grid-column: 1 / -1; }
    }
    @media (max-width: 768px) {
        .footer-grid, .footer-grid:has(.footer-country-col) { grid-template-columns: 1fr; gap: 32px; }
        .site-footer { padding-bottom: 90px; } /* Mobil alt menü (bottom-nav) için ekstra boşluk */
    }
    /* ==========================================================================
       11. MICRODATA FAQ ACCORDION
       ========================================================================== */
    .faq-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--c-border); }
    .faq-header { margin-bottom: 32px; text-align: center; }
    .faq-header h2 { font-size: 28px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin-bottom: 12px; }
    .faq-header p { font-size: 16px; color: var(--c-text-p); max-width: 600px; margin: 0 auto; }
    
    .faq-wrapper { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
    
    .faq-item { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: var(--transition); overflow: hidden; }
    .faq-item:hover { border-color: var(--c-brand-light); }
    
    .faq-summary { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; list-style: none; user-select: none; background: #fff; transition: background 0.2s ease; }
    .faq-summary::-webkit-details-marker { display: none; }
    .faq-summary:hover { background: #F8FAFC; }
    
    .faq-question-text { font-size: 16px; font-weight: 700; color: var(--c-text-h); margin: 0; padding-right: 24px; line-height: 1.4; }
    
    .faq-icon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background: var(--c-bg-body); border-radius: 50%; color: var(--c-text-muted); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, color 0.3s; }
    
    .faq-item[open] .faq-icon { transform: rotate(180deg); background: var(--c-brand-light); color: var(--c-brand-dark); }
    .faq-item[open] .faq-summary { border-bottom: 1px solid var(--c-border); background: #F8FAFC; }
    
    .faq-answer { padding: 20px 24px; background: #fff; animation: faqFadeIn 0.3s ease-in-out; }
    .faq-answer p { font-size: 15px; color: var(--c-text-p); line-height: 1.6; margin: 0; }
    .faq-answer strong { color: var(--c-text-h); }
    
    @keyframes faqFadeIn {
        from { opacity: 0; transform: translateY(-5px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @media (max-width: 768px) {
        .faq-summary { padding: 16px; }
        .faq-question-text { font-size: 15px; }
        .faq-answer { padding: 16px; }
    }
    /* ==========================================================================
       12. EXPERT TAKE / EDITOR'S NOTE WIDGET
       ========================================================================== */
    .expert-take-widget {
        background: #F0FDF4; /* Temaya uygun çok açık, soft bir zümrüt yeşili */
        border: 1px solid #BBF7D0;
        border-left: 4px solid var(--c-brand);
        border-radius: var(--radius-md);
        padding: 24px;
        margin: 32px 0;
        position: relative;
        box-shadow: var(--shadow-sm);
    }
    .expert-take-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }
    .expert-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 2px solid var(--c-brand);
        object-fit: cover;
        background: #fff;
    }
    .expert-title-wrap {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .expert-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 11px;
        font-weight: 800;
        color: var(--c-brand-dark);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .expert-badge svg { color: var(--c-brand); }
    .expert-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--c-text-p);
    }
    .expert-take-body p {
        font-size: 15px;
        line-height: 1.7;
        color: var(--c-text-h);
        margin: 0;
        font-style: italic;
    }
    .expert-take-body strong {
        color: var(--c-brand-dark);
    }
    
    /* Mobil Uyumluluk */
    @media (max-width: 768px) {
        .expert-take-widget { padding: 20px 16px; margin: 24px 0; }
        .expert-take-body p { font-size: 14px; }
    }
    /* ==========================================================================
       13. PREMIUM COMPACT HOW-TO TIMELINE (FEATURED SNIPPET)
       ========================================================================== */
    .howto-compact { margin: 40px 0; background: #F8FAFC; border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); max-width: 850px; }
    
    .howto-header-sm { margin-bottom: 24px; border-bottom: 1px dashed var(--c-border); padding-bottom: 16px; }
    .howto-header-sm h2 { font-size: 20px; font-weight: 800; color: var(--c-text-h); margin-bottom: 8px; letter-spacing: -0.5px; display: flex; align-items: center; gap: 8px; }
    .howto-header-sm p { font-size: 13px; color: var(--c-text-p); line-height: 1.5; margin: 0; }
    
    /* Timeline Structure */
    .howto-timeline { position: relative; padding-left: 32px; display: flex; flex-direction: column; gap: 20px; }
    .howto-timeline::before { content: ''; position: absolute; left: 14px; top: 8px; bottom: 8px; width: 2px; background: var(--c-border); z-index: 1; }
    
    .step-item { position: relative; z-index: 2; transition: var(--transition); }
    .step-item:hover { transform: translateX(4px); }
    
    /* İkon Alanı */
    .step-icon-wrap { position: absolute; left: -32px; top: -2px; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 2px solid var(--c-brand); display: flex; align-items: center; justify-content: center; color: var(--c-brand-dark); box-shadow: 0 2px 4px rgba(5, 150, 105, 0.1); }
    .step-icon-wrap svg { width: 14px; height: 14px; }
    
    /* İçerik Alanı */
    .step-content { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 12px 16px; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
    .step-content h3 { font-size: 14px; font-weight: 700; color: var(--c-text-h); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
    .step-num-badge { font-size: 9px; text-transform: uppercase; background: var(--c-text-h); color: #fff; padding: 2px 6px; border-radius: 4px; font-weight: 800; letter-spacing: 0.5px; }
    .step-content p { font-size: 12px; line-height: 1.5; color: var(--c-text-p); margin: 0; }
    .step-content strong { color: var(--c-brand-dark); }
    
    @media (max-width: 768px) {
        .howto-compact { padding: 20px 16px; }
        .howto-timeline { gap: 16px; }
    }/* ==========================================================================
   ULTIMATE DATA-DRIVEN REVIEW DASHBOARD
   ========================================================================== */

/* 1. Dashboard Hero & Bio */
.review-dash-hero { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); margin-bottom: 24px; position: relative; overflow: hidden; }
.review-dash-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, var(--c-brand-dark) 0%, var(--c-brand) 100%); }
.rdh-top { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; }
.rdh-logo { width: 120px; height: 120px; border-radius: var(--radius-md); border: 1px solid var(--c-border); background: #fff; display: flex; align-items: center; justify-content: center; padding: 16px; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.rdh-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.rdh-main { flex: 1; min-width: 280px; }
.rdh-title-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.rdh-title-row h1 { font-size: 36px; font-weight: 800; color: var(--c-text-h); line-height: 1.1; letter-spacing: -1px; margin: 0; }
.rdh-global-score { background: var(--c-brand-dark); color: #fff; padding: 8px 16px; border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.rdh-global-score span.score { font-size: 24px; font-weight: 800; line-height: 1; }
.rdh-global-score span.label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-top: 4px; }
.rdh-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.rdh-tag { font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 4px; }
.rdh-tag.verified { background: #DCFCE7; color: #166534; }
.rdh-tag.license { background: #F3F4F6; color: var(--c-text-p); border: 1px solid var(--c-border); }
.rdh-bio { font-size: 14px; color: var(--c-text-p); line-height: 1.6; padding: 16px; background: #F8FAFC; border-radius: var(--radius-md); border: 1px dashed var(--c-border); }

/* 2. Bento Grid Layout (Data Modules) */
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; margin-bottom: 40px; }
.bento-box { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.bento-box-title { font-size: 16px; font-weight: 800; color: var(--c-text-h); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--c-border); padding-bottom: 12px; }
.bento-box-title svg { color: var(--c-brand); width: 18px; height: 18px; }

/* Grid Sizing */
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }
.span-6 { grid-column: span 6; }
.span-12 { grid-column: span 12; }

/* 3. Bonus Matrix Widget */
.bonus-matrix { display: flex; flex-direction: column; gap: 16px; }
.bm-item { display: flex; align-items: center; justify-content: space-between; padding: 12px; background: var(--c-bg-body); border-radius: var(--radius-sm); border: 1px solid var(--c-border); }
.bm-info { display: flex; flex-direction: column; gap: 4px; }
.bm-label { font-size: 11px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; }
.bm-value { font-size: 16px; font-weight: 800; color: var(--c-brand-dark); }
.bm-reqs { text-align: right; display: flex; flex-direction: column; gap: 4px; }
.bm-req-tag { font-size: 10px; background: #E5E7EB; color: #374151; padding: 2px 6px; border-radius: 4px; font-weight: 700; }

/* 4. Casino & Providers Ecosystem */
.casino-ecosystem { display: flex; flex-direction: column; gap: 24px; }
.ce-providers { display: flex; flex-wrap: wrap; gap: 12px; }
.ce-prov-logo { height: 32px; padding: 0 12px; border: 1px solid var(--c-border); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--c-text-h); background: #F8FAFC; transition: var(--transition); }
.ce-prov-logo:hover { border-color: var(--c-brand); color: var(--c-brand-dark); }
.ce-slots-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.slot-card { display: flex; align-items: center; gap: 12px; padding: 10px; border: 1px solid var(--c-border); border-radius: var(--radius-sm); }
.slot-icon { width: 40px; height: 40px; border-radius: 6px; background: var(--c-accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: bold; flex-shrink: 0; }
.slot-data { display: flex; flex-direction: column; }
.slot-name { font-size: 13px; font-weight: 700; color: var(--c-text-h); }
.slot-rtp { font-size: 11px; color: var(--c-brand); font-weight: 800; }

/* 5. Technical & Sportsbook Radars (Progress Bars) */
.tech-stats { display: flex; flex-direction: column; gap: 16px; }
.ts-row { display: flex; flex-direction: column; gap: 6px; }
.ts-header { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--c-text-h); }
.ts-bar-bg { width: 100%; height: 6px; background: var(--c-border); border-radius: var(--radius-pill); overflow: hidden; }
.ts-bar-fill { height: 100%; background: var(--c-brand); border-radius: var(--radius-pill); }
.ts-val { font-size: 12px; color: var(--c-text-muted); font-weight: 600; }

/* 6. Financial Matrix (Limits & Speeds) */
.finance-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.finance-table th { text-align: left; padding: 8px 12px; background: var(--c-bg-body); color: var(--c-text-muted); font-weight: 700; text-transform: uppercase; font-size: 10px; letter-spacing: 0.5px; border-bottom: 1px solid var(--c-border); }
.finance-table td { padding: 12px; border-bottom: 1px solid var(--c-border); font-weight: 600; color: var(--c-text-h); }
.finance-table tr:last-child td { border-bottom: none; }
.ft-method { display: flex; align-items: center; gap: 8px; }
.ft-method img { width: 20px; height: 20px; object-fit: contain; }
.ft-speed { color: var(--c-brand); display: flex; align-items: center; gap: 4px; }

/* Responsive adjustments for Bento Grid */
@media (max-width: 1024px) {
    .span-4, .span-6, .span-8 { grid-column: span 12; }
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES — auto-consolidated from inline <style> blocks
   (Build: 2026-05-17 08:40)
   ========================================================================== */

/* === SOURCE: blogs.php === */
/* ==========================================================================
   BLOG DETAIL & COMMENTS SYSTEM
   ========================================================================== */

/* Blog Header & Meta */
.blog-header { margin-bottom: 32px; }
.blog-category { display: inline-block; background: var(--c-brand-light); color: var(--c-brand-dark); font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.blog-title { font-size: 40px; font-weight: 800; color: var(--c-text-h); line-height: 1.2; letter-spacing: -1px; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; font-weight: 600; color: var(--c-text-muted); padding-bottom: 24px; border-bottom: 1px solid var(--c-border); }
.meta-item { display: flex; align-items: center; gap: 6px; }
.meta-item svg { width: 16px; height: 16px; color: var(--c-brand); }
.meta-divider { width: 4px; height: 4px; background: var(--c-border); border-radius: 50%; }

/* Featured Hero Image */
.blog-hero-image { width: 100%; height: auto; max-height: 450px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }

/* Enhanced Article Content */
.blog-content { font-size: 17px; line-height: 1.8; color: var(--c-text-p); }
.blog-content h2 { font-size: 28px; font-weight: 800; color: var(--c-text-h); margin: 40px 0 20px; letter-spacing: -0.5px; }
.blog-content h3 { font-size: 22px; font-weight: 700; color: var(--c-text-h); margin: 32px 0 16px; }
.blog-content p { margin-bottom: 24px; }
.blog-content ul { margin-bottom: 24px; padding-left: 20px; }
.blog-content ul li { margin-bottom: 12px; position: relative; padding-left: 12px; }
.blog-content ul li::before { content: ''; position: absolute; left: -10px; top: 10px; width: 6px; height: 6px; background: var(--c-brand); border-radius: 50%; }
.blog-pull-quote { font-size: 20px; font-weight: 700; color: var(--c-brand-dark); line-height: 1.6; padding: 24px 32px; margin: 40px 0; background: #F0FDF4; border-left: 4px solid var(--c-brand); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; }

/* Article Footer (Tags & Share) */
.article-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-top: 40px; padding-top: 24px; border-top: 1px dashed var(--c-border); }
.article-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag-link { background: #F8FAFC; color: var(--c-text-p); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-sm); border: 1px solid var(--c-border); transition: var(--transition); }
.tag-link:hover { background: var(--c-brand-light); color: var(--c-brand-dark); border-color: var(--c-brand-light); }
.share-actions { display: flex; align-items: center; gap: 12px; }
.share-label { font-size: 13px; font-weight: 800; color: var(--c-text-h); text-transform: uppercase; }
.btn-share { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: var(--transition); }
.btn-share:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-share.twitter { background: #000000; }
.btn-share.facebook { background: #1877F2; }
.btn-share.whatsapp { background: #25D366; }

/* Related Posts */
.related-posts { margin-top: 60px; padding-top: 40px; border-top: 2px solid var(--c-border); }
.related-header { font-size: 24px; font-weight: 800; color: var(--c-text-h); margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.related-card { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.related-card:hover { border-color: var(--c-brand); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.rc-img { width: 100%; height: 160px; object-fit: cover; }
.rc-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.rc-meta { font-size: 11px; color: var(--c-text-muted); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; }
.rc-title { font-size: 16px; font-weight: 800; color: var(--c-text-h); line-height: 1.4; margin-bottom: 12px; }
.rc-link { margin-top: auto; font-size: 13px; font-weight: 700; color: var(--c-brand); display: flex; align-items: center; gap: 4px; }
.rc-link:hover { color: var(--c-brand-dark); }

/* Ultra-Modern Comments Section */
.comments-section { margin-top: 60px; padding: 40px; background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.comments-header { font-size: 24px; font-weight: 800; color: var(--c-text-h); margin-bottom: 32px; display: flex; align-items: center; gap: 12px; }
.comments-count { background: var(--c-brand-light); color: var(--c-brand-dark); font-size: 14px; padding: 4px 12px; border-radius: var(--radius-pill); }

/* Comment Form */
.comment-form-wrap { background: #F8FAFC; border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 24px; margin-bottom: 40px; }
.form-title { font-size: 16px; font-weight: 800; color: var(--c-text-h); margin-bottom: 16px; }
.comment-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: span 2; }
.form-input { width: 100%; padding: 12px 16px; border: 1px solid var(--c-border); border-radius: var(--radius-sm); font-family: var(--font-main); font-size: 14px; transition: var(--transition); background: #fff; }
.form-input:focus { outline: none; border-color: var(--c-brand); box-shadow: 0 0 0 3px var(--c-brand-light); }
textarea.form-input { resize: vertical; min-height: 120px; }
.btn-submit-comment { background: var(--c-brand-dark); color: #fff; font-size: 14px; font-weight: 800; padding: 12px 24px; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 0.5px; justify-self: start; }
.btn-submit-comment:hover { background: var(--c-brand); transform: translateY(-2px); }

/* Comment Thread (Nested) */
.comment-list { display: flex; flex-direction: column; gap: 24px; }
.comment-item { display: flex; gap: 16px; }
.comment-item.reply { margin-left: 48px; position: relative; }
.comment-item.reply::before { content: ''; position: absolute; left: -32px; top: 20px; width: 24px; height: 24px; border-bottom: 2px solid var(--c-border); border-left: 2px solid var(--c-border); border-bottom-left-radius: 8px; }
.comment-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid #E5E7EB; flex-shrink: 0; background: var(--c-brand-light); }
.comment-body { flex: 1; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 20px; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
.cb-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.cb-author { font-size: 15px; font-weight: 800; color: var(--c-text-h); }
.cb-author.admin { color: var(--c-brand-dark); display: flex; align-items: center; gap: 6px; }
.badge-admin { font-size: 10px; background: var(--c-accent); color: #fff; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; }
.cb-date { font-size: 12px; color: var(--c-text-muted); font-weight: 600; }
.cb-text { font-size: 14px; color: var(--c-text-p); line-height: 1.6; margin-bottom: 12px; }
.btn-reply { font-size: 12px; font-weight: 800; color: var(--c-brand); display: flex; align-items: center; gap: 4px; transition: var(--transition); }
.btn-reply:hover { color: var(--c-brand-dark); }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-title { font-size: 28px; }
    .comment-form { grid-template-columns: 1fr; }
    .form-full { grid-column: span 1; }
    .comment-item.reply { margin-left: 24px; }
    .comment-item.reply::before { left: -16px; width: 12px; }
    .comments-section { padding: 24px 16px; }
}

/* === SOURCE: index.php === */
/* ==========================================================================
       1. PREMIUM MINIMALIST AFRICAN PALETTE & TOKENS
       ========================================================================== */
    
    
    
    
    
    
    
    /* Responsive Images Base */
    

    /* ==========================================================================
       2. NEW SKELETON: DASHBOARD / AGGREGATOR LAYOUT
       ========================================================================== */
    .mobile-header { display: none; background: var(--c-brand-dark); color: #fff; padding: 16px; position: sticky; top: 0; z-index: 50; align-items: center; justify-content: space-between; box-shadow: var(--shadow-sm); }
    .mobile-logo { font-size: 18px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
    .mobile-logo svg { color: var(--c-accent); }
    
    .app-layout { display: grid; grid-template-columns: 260px 1fr; max-width: 1440px; margin: 0 auto; min-height: 100vh; }

    /* ==========================================================================
       3. LEFT SIDEBAR (STICKY SILO NAVIGATION)
       ========================================================================== */
    .sidebar { background: var(--c-bg-surface); border-right: 1px solid var(--c-border); padding: 24px 20px; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; }
    
    .brand { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: var(--c-text-h); margin-bottom: 40px; }
    .brand-icon { width: 32px; height: 32px; background: var(--c-brand-dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--c-accent); }

    .nav-group { margin-bottom: 32px; }
    .nav-label { font-size: 11px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; display: block; }
    
    .side-nav { display: flex; flex-direction: column; gap: 6px; }
    .side-link { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--c-text-p); transition: var(--transition); }
    .side-link:hover, .side-link:focus-visible { background: var(--c-bg-body); color: var(--c-brand-dark); outline: none; }
    .side-link.active { background: var(--c-brand-light); color: var(--c-brand-dark); }
    .side-link svg { width: 18px; height: 18px; opacity: 0.7; }
    .side-link.active svg { opacity: 1; color: var(--c-brand); }

    .trust-badge-side { margin-top: auto; padding: 16px; background: #F8FAFC; border: 1px solid var(--c-border); border-radius: var(--radius-md); font-size: 12px; display: flex; align-items: center; gap: 12px; }
    .trust-badge-side svg { color: var(--c-brand); width: 24px; height: 24px; flex-shrink: 0; }
    .trust-badge-side strong { color: var(--c-text-h); display: block; font-size: 13px; }

    /* ==========================================================================
       4. MAIN CONTENT AREA
       ========================================================================== */
    .main-content { padding: 40px; background: var(--c-bg-body); }
    .content-wrapper { max-width: 960px; margin: 0 auto; }

    .breadcrumbs { display: flex; gap: 8px; font-size: 13px; font-weight: 500; color: var(--c-text-muted); margin-bottom: 24px; }
    .breadcrumbs a:hover { color: var(--c-brand); text-decoration: underline; }

    .hero-compact { margin-bottom: 32px; }
    .hero-compact h1 { font-size: 36px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin-bottom: 12px; line-height: 1.2; }
    .hero-compact p { font-size: 16px; color: var(--c-text-p); max-width: 800px; }

    /* Editorial figures (hero map, methodology) — responsive but never dominant */
    .hero-visual {
        margin: 16px auto 32px;
        max-width: 720px;
        border: 1px solid var(--c-border);
        border-radius: 14px;
        overflow: hidden;
        background: #FAFAF7;
        box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    }
    .hero-visual img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 1600 / 1067;
    }
    .hero-visual figcaption {
        font-size: 12px;
        color: var(--c-text-muted);
        padding: 10px 16px;
        background: #fff;
        border-top: 1px solid var(--c-border);
        text-align: center;
        line-height: 1.5;
    }

    .methodology-visual {
        margin: 18px auto 28px;
        max-width: 420px;
        border-radius: 12px;
        overflow: hidden;
    }
    .methodology-visual img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 900 / 600;
    }

    /* Tablet — slightly smaller hero, methodology unchanged */
    @media (max-width: 900px) {
        .hero-visual { max-width: 600px; margin: 12px auto 24px; }
        .methodology-visual { max-width: 360px; }
    }

    /* Mobile — fully fluid, compact margins */
    @media (max-width: 600px) {
        .hero-visual {
            max-width: 100%;
            margin: 8px 0 20px;
            border-radius: 10px;
        }
        .hero-visual figcaption {
            font-size: 11px;
            padding: 8px 12px;
        }
        .methodology-visual {
            max-width: 280px;
            margin: 12px auto 20px;
        }
    }

    .filter-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--c-border); padding-bottom: 16px; flex-wrap: wrap; gap: 16px;}
    .filter-tabs { display: flex; gap: 8px; }
    .tab-btn { padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--c-text-p); border-radius: var(--radius-pill); background: var(--c-bg-surface); border: 1px solid var(--c-border); transition: var(--transition); }
    .tab-btn:hover, .tab-btn:focus-visible { border-color: var(--c-text-muted); outline: none; }
    .tab-btn.active { background: var(--c-brand-dark); color: #fff; border-color: var(--c-brand-dark); }
    .update-notice { font-size: 12px; font-weight: 600; color: var(--c-brand); display: flex; align-items: center; gap: 6px; }

    /* ==========================================================================
       5. ULTRA-COMPACT LIST VIEW (BOOKIE ROWS)
       ========================================================================== */
    .directory-list { display: flex; flex-direction: column; gap: 12px; }

    .bookie-row { display: grid; grid-template-columns: 50px 140px 1fr 120px 160px; align-items: center; background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 16px; transition: var(--transition); box-shadow: var(--shadow-sm); }
    .bookie-row:hover { border-color: var(--c-brand); box-shadow: var(--shadow-md); transform: translateY(-1px); }
    .bookie-row.hide { display: none; }

    .row-rank { font-size: 18px; font-weight: 800; color: var(--c-text-muted); text-align: center; }
    .bookie-row:nth-child(1) .row-rank { color: var(--c-accent); font-size: 24px; }

    .row-brand { display: flex; flex-direction: column; align-items: center; gap: 6px; border-right: 1px solid var(--c-border); padding-right: 16px; }
    
    /* Image Update for Logos */
    .row-logo-img { width: 100px; height: 36px; object-fit: contain; border-radius: 4px; }
    
    .read-review { font-size: 11px; font-weight: 600; color: var(--c-brand); text-decoration: underline; }

    .row-features { padding: 0 20px; display: flex; flex-direction: column; justify-content: center; }
    .feature-title { font-size: 15px; font-weight: 700; color: var(--c-text-h); margin-bottom: 4px; display: flex; align-items: center; gap: 8px;}
    .feature-tag { font-size: 10px; background: var(--c-brand-light); color: var(--c-brand-dark); padding: 2px 6px; border-radius: 4px; font-weight: 700; text-transform: uppercase; }
    .feature-bullets { display: flex; flex-direction: column; gap: 2px; }
    .feature-bullets li { font-size: 13px; color: var(--c-text-p); display: flex; align-items: center; gap: 6px; }
    .feature-bullets li::before { content: ''; width: 4px; height: 4px; background: var(--c-accent); border-radius: 50%; }

    .row-rating { display: flex; flex-direction: column; align-items: center; justify-content: center; border-left: 1px solid var(--c-border); border-right: 1px solid var(--c-border); padding: 0 16px; }
    .score-circle { width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--c-brand); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: var(--c-brand-dark); margin-bottom: 4px; }
    .votes { font-size: 11px; color: var(--c-text-muted); font-weight: 500; }

    .row-action { padding-left: 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
    .bonus-text { font-size: 14px; font-weight: 800; color: var(--c-accent-hover); margin-bottom: 8px; line-height: 1.2; }
    .btn-claim { width: 100%; background: var(--c-brand-dark); color: #fff; font-size: 13px; font-weight: 700; padding: 10px; border-radius: var(--radius-sm); text-transform: uppercase; transition: var(--transition); text-align: center; }
    .btn-claim:hover, .btn-claim:focus-visible { background: var(--c-brand); outline: none; }

    /* ==========================================================================
       6. SEO ARTICLE SECTION & E-E-A-T AUTHOR BOX
       ========================================================================== */
    .seo-article { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--c-border); background: var(--c-bg-surface); padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
    .seo-article h2 { font-size: 24px; font-weight: 800; color: var(--c-text-h); margin-bottom: 20px; }
    .seo-article h3 { font-size: 18px; font-weight: 700; color: var(--c-text-h); margin: 30px 0 16px; }
    .seo-article p { font-size: 15px; margin-bottom: 16px; color: var(--c-text-p); }
    
    /* Content Image Block */
    .content-image-wrapper { margin: 24px 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--c-border); }
    .content-image-wrapper img { width: 100%; height: auto; display: block; object-fit: cover; }
    .content-image-caption { font-size: 12px; color: var(--c-text-muted); text-align: center; padding: 8px; background: var(--c-bg-body); border-top: 1px solid var(--c-border); }
    
    .data-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
    .data-table th { background: var(--c-bg-body); padding: 12px 16px; text-align: left; font-weight: 700; color: var(--c-text-h); border-bottom: 2px solid var(--c-border); }
    .data-table td { padding: 12px 16px; border-bottom: 1px solid var(--c-border); font-weight: 500; }
    
    .pill { display: inline-block; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
    .pill-green { background: #DCFCE7; color: #166534; }
    .pill-gold { background: #FEF3C7; color: #B45309; }

    /* E-E-A-T Author Box Structure */
    .eeat-author-box { margin-top: 40px; padding: 24px; border: 1px solid var(--c-border); border-radius: var(--radius-md); background: #F8FAFC; display: flex; gap: 16px; align-items: flex-start; }
    .author-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--c-brand-light); }
    .author-details { flex: 1; }
    .author-name { font-size: 16px; font-weight: 800; color: var(--c-text-h); display: flex; align-items: center; gap: 6px; }
    .author-role { font-size: 13px; color: var(--c-brand); font-weight: 600; margin-bottom: 8px; display: block;}
    .author-bio { font-size: 13px; color: var(--c-text-p); margin-bottom: 12px; }
    .audit-stamp { font-size: 11px; color: var(--c-text-muted); display: flex; align-items: center; gap: 4px; font-weight: 500; }

    /* ==========================================================================
       7. MOBILE RESPONSIVENESS
       ========================================================================== */
    @media (max-width: 1024px) {
        .app-layout { grid-template-columns: 220px 1fr; }
        .bookie-row { grid-template-columns: 40px 120px 1fr 100px 140px; padding: 12px; gap: 8px;}
        .row-features { padding: 0 10px; }
        .row-action { padding-left: 10px; }
        .main-content { padding: 24px; }
    }

    @media (max-width: 768px) {
        body { padding-bottom: 60px; }
        .app-layout { grid-template-columns: 1fr; display: block; }
        .sidebar { display: none; }
        .mobile-header { display: flex; }
        .main-content { padding: 16px; background: var(--c-bg-body); }
        .seo-article { padding: 20px; }

        .sidebar { display: flex; position: fixed; top: 0; left: 0; width: 280px; height: 100dvh; z-index: 100; transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow-md); padding-bottom: 80px; will-change: transform; }
        .sidebar.active { transform: translateX(0); }

        .menu-toggle-btn { color: #fff; display: flex; align-items: center; justify-content: center; padding: 4px; margin: 0; transition: var(--transition); }
        .menu-toggle-btn:active { transform: scale(0.95); }
        .hero-compact h1 { font-size: 28px; }
        
        .bookie-row { display: grid; grid-template-columns: 40px 1fr auto; grid-template-areas: "rank logo rating" "features features features" "action action action"; padding: 16px; gap: 12px; align-items: start; }
        
        .row-rank { grid-area: rank; text-align: left; font-size: 20px; }
        .row-brand { grid-area: logo; border-right: none; padding-right: 0; align-items: flex-start; flex-direction: row; gap: 12px;}
        .row-logo-img { height: 28px; width: auto; }
        .row-rating { grid-area: rating; border: none; padding: 0; align-items: flex-end; }
        .score-circle { width: 36px; height: 36px; font-size: 14px; border-width: 2px; margin-bottom: 0;}
        .votes { display: none; }
        
        .row-features { grid-area: features; padding: 0; padding-top: 12px; border-top: 1px solid var(--c-border); }
        .feature-bullets { flex-direction: row; flex-wrap: wrap; gap: 12px; }
        
        .row-action { grid-area: action; padding: 0; flex-direction: row; justify-content: space-between; align-items: center; background: var(--c-bg-body); padding: 12px; border-radius: var(--radius-sm); margin-top: 4px;}
        .bonus-text { margin-bottom: 0; font-size: 13px; }
        .btn-claim { width: auto; padding: 8px 24px; }
        
        .filter-row { padding-bottom: 0; border: none; }
        .filter-tabs { width: 100%; overflow-x: auto; padding-bottom: 12px; }
        .tab-btn { white-space: nowrap; }
        .update-notice { display: none; }

        .eeat-author-box { flex-direction: column; align-items: center; text-align: center; }
    }
    
    /* GLOBAL OVERLAY (Medya sorgusu dışında kalsın) */
    .sidebar-overlay { position: fixed; inset: 0; background: rgba(17, 24, 39, 0.6); backdrop-filter: blur(4px); z-index: 90; opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .sidebar-overlay.active { opacity: 1; visibility: visible; }
    
    /* Mobil menü açıkken body kaydırmasını kilitlemek için */
    body.sidebar-open { overflow: hidden; touch-action: none; }

    /* Native App Bottom Navigation */
    .bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--c-bg-surface); border-top: 1px solid var(--c-border); z-index: 100; justify-content: space-around; padding: 8px 0; padding-bottom: env(safe-area-inset-bottom, 8px); box-shadow: 0 -2px 10px rgba(0,0,0,0.05); }
    .b-nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; color: var(--c-text-muted); }
    .b-nav-item svg { width: 22px; height: 22px; }
    .b-nav-item.active { color: var(--c-brand-dark); }
    @media (max-width: 768px) { .bottom-nav { display: flex; } }
	/* ==========================================================================
       8. LSI CONTENT GRIDS (PAYMENTS, PROVIDERS, FEATURES)
       ========================================================================== */
    .content-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--c-border); }
    .section-header { margin-bottom: 24px; }
    .section-header h2 { font-size: 24px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; }
    .section-header p { font-size: 15px; color: var(--c-text-p); margin-top: 8px; max-width: 700px; }
    
    .grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
    
    .info-card { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 24px; transition: var(--transition); display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); }
    .info-card:hover { border-color: var(--c-brand); box-shadow: var(--shadow-md); transform: translateY(-3px); }
    
    .card-icon-header { display: flex; align-items: center; gap: 16px; }
    .icon-wrapper { width: 56px; height: 56px; background: var(--c-bg-body); border-radius: 12px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--c-border); overflow: hidden;}
    .icon-wrapper img { max-width: 32px; max-height: 32px; object-fit: contain; }
    
    .info-card h3 { font-size: 18px; font-weight: 800; color: var(--c-text-h); }
    .info-card p { font-size: 14px; color: var(--c-text-p); line-height: 1.6; }
    
    .abg-tagss { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--c-border); }
    .abg-tags { font-size: 11px; font-weight: 700; color: var(--c-brand-dark); background: var(--c-brand-light); padding: 4px 10px; border-radius: var(--radius-pill); }
    /* ==========================================================================
       9. COMPACT & CLOSED TABLE OF CONTENTS (AUTO TOC)
       ========================================================================== */
    .toc-wrapper { margin: 32px 0; background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); max-width: 400px; transition: var(--transition); }
    .toc-details { width: 100%; }
    
    /* Summary (Tıklanabilir Başlık Alanı) */
    .toc-summary { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; cursor: pointer; list-style: none; user-select: none; border-radius: var(--radius-md); background: #F8FAFC; transition: background 0.2s ease; }
    .toc-summary::-webkit-details-marker { display: none; } /* Safari/Chrome eski okunu gizle */
    .toc-summary:hover { background: #F1F5F9; }
    
    .toc-header-content { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 800; color: var(--c-text-h); text-transform: uppercase; letter-spacing: 0.5px; }
    .toc-header-content svg { color: var(--c-brand); }
    
    /* Açma/Kapama Buton Görünümü */
    .toc-toggle-btn { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--c-text-muted); background: var(--c-bg-body); padding: 4px 12px; border-radius: var(--radius-pill); border: 1px solid var(--c-border); transition: var(--transition); }
    .toc-summary:hover .toc-toggle-btn { border-color: var(--c-text-muted); color: var(--c-text-h); }
    
    /* Açık Durum (Open) Stilleri ve Chevron Animasyonu */
    .toc-chevron { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .toc-details[open] .toc-chevron { transform: rotate(180deg); color: var(--c-brand-dark); }
    .toc-details[open] .toc-toggle-btn { border-color: var(--c-brand-light); background: var(--c-brand-light); color: var(--c-brand-dark); }
    .toc-details[open] .toc-summary { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom: 1px solid var(--c-border); }
    
    /* İçerik Alanı ve Animasyonu */
    .toc-content { padding: 16px 20px 20px 20px; animation: fadeIn 0.3s ease-in-out; }
    .toc-list { display: flex; flex-direction: column; gap: 12px; }
    
    .toc-item-h2 { font-weight: 700; margin-top: 4px; }
    .toc-item-h3 { padding-left: 16px; position: relative; }
    .toc-item-h3::before { content: ''; position: absolute; left: 0; top: 9px; width: 4px; height: 4px; border-radius: 50%; background: var(--c-brand); opacity: 0.5; }
    
    .toc-link { font-size: 13px; font-weight: 600; color: var(--c-text-p); transition: var(--transition); display: block; line-height: 1.4; text-decoration: none; }
    .toc-link:hover, .toc-link:focus-visible { color: var(--c-brand-dark); transform: translateX(4px); outline: none; }
    
    @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
    
    /* Mobil Uyumluluk */
    @media (max-width: 768px) {
        .toc-wrapper { max-width: 100%; margin: 24px 0; }
    }
    /* ==========================================================================
       10. E-E-A-T OPTIMIZED FOOTER
       ========================================================================== */
    .site-footer { background-color: #06291e; color: #9CA3AF; padding: 60px 20px 24px; margin-top: 60px; border-top: 4px solid var(--c-brand); font-size: 13px; line-height: 1.6; }
    .footer-wrapper { max-width: 1200px; margin: 0 auto; }
    
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; } .footer-grid:has(.footer-country-col) { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
    
    .footer-brand-col .f-logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 16px; }
    .footer-brand-col .f-logo svg { color: var(--c-brand); }
    .footer-disclaimer { margin-bottom: 20px; }
    
    .footer-trust-badges { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
    .f-badge { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #374151; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; color: #fff; }
    
    .footer-nav-col h3, .footer-nav-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
    .footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-nav-col a { transition: color 0.2s ease; display: inline-block; }
    .footer-nav-col a:hover { color: var(--c-brand-light); transform: translateX(2px); }
    
    .footer-bottom { padding-top: 24px; border-top: 1px solid #374151; display: flex; flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom p { font-size: 12px; }
    
    /* Mobil Uyumluluk */
    @media (max-width: 1024px) {
        .footer-grid, .footer-grid:has(.footer-country-col) { grid-template-columns: 1fr 1fr; }
        .footer-brand-col { grid-column: 1 / -1; }
        .footer-country-col { grid-column: 1 / -1; }
    }
    @media (max-width: 768px) {
        .footer-grid, .footer-grid:has(.footer-country-col) { grid-template-columns: 1fr; gap: 32px; }
        .site-footer { padding-bottom: 90px; } /* Mobil alt menü (bottom-nav) için ekstra boşluk */
    }
    /* ==========================================================================
       11. MICRODATA FAQ ACCORDION
       ========================================================================== */
    .faq-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--c-border); }
    .faq-header { margin-bottom: 32px; text-align: center; }
    .faq-header h2 { font-size: 28px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin-bottom: 12px; }
    .faq-header p { font-size: 16px; color: var(--c-text-p); max-width: 600px; margin: 0 auto; }
    
    .faq-wrapper { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
    
    .faq-item { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: var(--transition); overflow: hidden; }
    .faq-item:hover { border-color: var(--c-brand-light); }
    
    .faq-summary { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; list-style: none; user-select: none; background: #fff; transition: background 0.2s ease; }
    .faq-summary::-webkit-details-marker { display: none; }
    .faq-summary:hover { background: #F8FAFC; }
    
    .faq-question-text { font-size: 16px; font-weight: 700; color: var(--c-text-h); margin: 0; padding-right: 24px; line-height: 1.4; }
    
    .faq-icon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background: var(--c-bg-body); border-radius: 50%; color: var(--c-text-muted); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, color 0.3s; }
    
    .faq-item[open] .faq-icon { transform: rotate(180deg); background: var(--c-brand-light); color: var(--c-brand-dark); }
    .faq-item[open] .faq-summary { border-bottom: 1px solid var(--c-border); background: #F8FAFC; }
    
    .faq-answer { padding: 20px 24px; background: #fff; animation: faqFadeIn 0.3s ease-in-out; }
    .faq-answer p { font-size: 15px; color: var(--c-text-p); line-height: 1.6; margin: 0; }
    .faq-answer strong { color: var(--c-text-h); }
    
    @keyframes faqFadeIn {
        from { opacity: 0; transform: translateY(-5px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @media (max-width: 768px) {
        .faq-summary { padding: 16px; }
        .faq-question-text { font-size: 15px; }
        .faq-answer { padding: 16px; }
    }
    /* ==========================================================================
       12. EXPERT TAKE / EDITOR'S NOTE WIDGET
       ========================================================================== */
    .expert-take-widget {
        background: #F0FDF4; /* Temaya uygun çok açık, soft bir zümrüt yeşili */
        border: 1px solid #BBF7D0;
        border-left: 4px solid var(--c-brand);
        border-radius: var(--radius-md);
        padding: 24px;
        margin: 32px 0;
        position: relative;
        box-shadow: var(--shadow-sm);
    }
    .expert-take-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }
    .expert-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 2px solid var(--c-brand);
        object-fit: cover;
        background: #fff;
    }
    .expert-title-wrap {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .expert-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 11px;
        font-weight: 800;
        color: var(--c-brand-dark);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .expert-badge svg { color: var(--c-brand); }
    .expert-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--c-text-p);
    }
    .expert-take-body p {
        font-size: 15px;
        line-height: 1.7;
        color: var(--c-text-h);
        margin: 0;
        font-style: italic;
    }
    .expert-take-body strong {
        color: var(--c-brand-dark);
    }
    
    /* Mobil Uyumluluk */
    @media (max-width: 768px) {
        .expert-take-widget { padding: 20px 16px; margin: 24px 0; }
        .expert-take-body p { font-size: 14px; }
    }
    /* ==========================================================================
       13. PREMIUM COMPACT HOW-TO TIMELINE (FEATURED SNIPPET)
       ========================================================================== */
    .howto-compact { margin: 40px 0; background: #F8FAFC; border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); max-width: 850px; }
    
    .howto-header-sm { margin-bottom: 24px; border-bottom: 1px dashed var(--c-border); padding-bottom: 16px; }
    .howto-header-sm h2 { font-size: 20px; font-weight: 800; color: var(--c-text-h); margin-bottom: 8px; letter-spacing: -0.5px; display: flex; align-items: center; gap: 8px; }
    .howto-header-sm p { font-size: 13px; color: var(--c-text-p); line-height: 1.5; margin: 0; }
    
    /* Timeline Structure */
    .howto-timeline { position: relative; padding-left: 32px; display: flex; flex-direction: column; gap: 20px; }
    .howto-timeline::before { content: ''; position: absolute; left: 14px; top: 8px; bottom: 8px; width: 2px; background: var(--c-border); z-index: 1; }
    
    .step-item { position: relative; z-index: 2; transition: var(--transition); }
    .step-item:hover { transform: translateX(4px); }
    
    /* İkon Alanı */
    .step-icon-wrap { position: absolute; left: -32px; top: -2px; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 2px solid var(--c-brand); display: flex; align-items: center; justify-content: center; color: var(--c-brand-dark); box-shadow: 0 2px 4px rgba(5, 150, 105, 0.1); }
    .step-icon-wrap svg { width: 14px; height: 14px; }
    
    /* İçerik Alanı */
    .step-content { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 12px 16px; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
    .step-content h3 { font-size: 14px; font-weight: 700; color: var(--c-text-h); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
    .step-num-badge { font-size: 9px; text-transform: uppercase; background: var(--c-text-h); color: #fff; padding: 2px 6px; border-radius: 4px; font-weight: 800; letter-spacing: 0.5px; }
    .step-content p { font-size: 12px; line-height: 1.5; color: var(--c-text-p); margin: 0; }
    .step-content strong { color: var(--c-brand-dark); }
    
    @media (max-width: 768px) {
        .howto-compact { padding: 20px 16px; }
        .howto-timeline { gap: 16px; }
    }

/* === SOURCE: pages.php === */
/* ==========================================================================
   ULTIMATE MILLION-DOLLAR GEO-SILO PAGE
   ========================================================================== */

/* 1. Ultimate Geo Hero */
.geo-hero-ultimate { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 48px 40px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 340px; gap: 40px; box-shadow: var(--shadow-md); margin-bottom: 40px; }
.geo-hero-bg-map { position: absolute; right: -10%; top: -30%; height: 160%; opacity: 0.04; filter: grayscale(100%); pointer-events: none; z-index: 1; }
.ghu-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
.ghu-flag-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--c-bg-body); border: 1px solid var(--c-border); padding: 6px 16px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 800; color: var(--c-text-h); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; box-shadow: var(--shadow-sm); width: max-content; }
.ghu-title { font-size: 48px; font-weight: 800; color: var(--c-text-h); line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px; }
.ghu-title span { color: var(--c-brand); }
.ghu-desc { font-size: 18px; color: var(--c-text-p); line-height: 1.6; margin-bottom: 32px; max-width: 600px; }
.ghu-eeat-box { display: flex; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px dashed var(--c-border); }
.ghu-author-img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--c-brand-light); }
.ghu-author-info { display: flex; flex-direction: column; gap: 4px; }
.ghu-author-name { font-size: 14px; font-weight: 800; color: var(--c-text-h); display: flex; align-items: center; gap: 4px; }
.ghu-author-name svg { color: var(--c-brand); }
.ghu-audit-date { font-size: 12px; font-weight: 600; color: var(--c-text-muted); }

/* Hero Stats Card (Right Side) */
.ghu-stats-card { background: #F8FAFC; border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 32px; position: relative; z-index: 2; display: flex; flex-direction: column; gap: 20px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }
.ghu-stat-item { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--c-border); }
.ghu-stat-item:last-child { padding-bottom: 0; border-bottom: none; }
.ghu-stat-label { font-size: 13px; font-weight: 700; color: var(--c-text-muted); display: flex; align-items: center; gap: 8px; }
.ghu-stat-val { font-size: 15px; font-weight: 800; color: var(--c-text-h); text-align: right; }
.ghu-stat-val.highlight { color: var(--c-brand-dark); background: var(--c-brand-light); padding: 4px 10px; border-radius: 4px; font-size: 13px; }

/* 2. Visual Payment Matrix Widget */
.local-payments-widget { margin-bottom: 48px; }
.widget-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; border-bottom: 2px solid var(--c-border); padding-bottom: 16px; }
.widget-header h2 { font-size: 28px; font-weight: 800; color: var(--c-text-h); display: flex; align-items: center; gap: 12px; margin: 0; }
.lp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.lp-card { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 24px; transition: var(--transition); position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 16px; }
.lp-card:hover { border-color: var(--c-brand); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.lp-card-bg { position: absolute; right: -20px; top: -20px; width: 100px; height: 100px; border-radius: 50%; opacity: 0.05; background: currentColor; z-index: 1; }
.lp-logo-wrap { position: relative; z-index: 2; height: 40px; display: flex; align-items: center; margin-bottom: 8px; }
.lp-logo-wrap img { max-height: 32px; width: auto; object-fit: contain; }
.lp-details { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 8px; }
.lp-row { display: flex; justify-content: space-between; font-size: 12px; }
.lp-row span:first-child { color: var(--c-text-muted); font-weight: 600; }
.lp-row span:last-child { color: var(--c-text-h); font-weight: 800; }
.lp-speed { margin-top: 8px; padding-top: 12px; border-top: 1px dashed var(--c-border); font-size: 11px; font-weight: 800; color: var(--c-brand); display: flex; align-items: center; gap: 4px; text-transform: uppercase; }

/* 3. Tech & App Specs Widget */
.tech-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.tech-box { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-sm); }
.tech-box h3 { font-size: 20px; font-weight: 800; color: var(--c-text-h); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.tech-list { display: flex; flex-direction: column; gap: 16px; }
.tech-item { display: flex; align-items: center; justify-content: space-between; }
.tech-label { font-size: 14px; color: var(--c-text-p); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.tech-label svg { color: var(--c-brand); width: 18px; height: 18px; }
.tech-val { font-size: 14px; font-weight: 800; color: var(--c-text-h); background: var(--c-bg-body); padding: 4px 12px; border-radius: 4px; border: 1px solid var(--c-border); }

/* 4. Local Leagues & Odds Widget */
.local-leagues-widget { background: #F8FAFC; border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 32px; margin-bottom: 48px; }
.ll-table { width: 100%; border-collapse: collapse; }
.ll-table th { text-align: left; padding: 12px; font-size: 11px; text-transform: uppercase; font-weight: 800; color: var(--c-text-muted); border-bottom: 2px solid var(--c-border); }
.ll-table td { padding: 16px 12px; border-bottom: 1px solid var(--c-border); font-size: 14px; font-weight: 600; color: var(--c-text-h); }
.ll-match { display: flex; flex-direction: column; gap: 4px; }
.ll-match-name { font-weight: 800; }
.ll-match-date { font-size: 11px; color: var(--c-brand); text-transform: uppercase; }
.ll-odds-box { display: flex; gap: 8px; }
.ll-odd { background: #fff; border: 1px solid var(--c-border); padding: 8px 16px; border-radius: 4px; font-weight: 800; color: var(--c-brand-dark); text-align: center; width: 60px; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.ll-payout { font-size: 12px; font-weight: 800; color: #10B981; }

/* Responsive */
@media (max-width: 1024px) {
    .geo-hero-ultimate { grid-template-columns: 1fr; }
    .ghu-stats-card { width: 100%; }
}
@media (max-width: 768px) {
    .geo-hero-ultimate { padding: 24px; gap: 24px; }
    .ghu-title { font-size: 32px; }
    .tech-specs-grid { grid-template-columns: 1fr; }
    .widget-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ll-table { display: block; overflow-x: auto; white-space: nowrap; }
}
/* ==========================================================================
   ALTERNATIVE: LOCAL COVERAGE & SUPERPOWERS WIDGET
   ========================================================================== */
.local-coverage-widget { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 32px; margin-bottom: 48px; box-shadow: var(--shadow-sm); }
.lc-header { margin-bottom: 24px; border-bottom: 2px solid var(--c-border); padding-bottom: 16px; }
.lc-header h2 { font-size: 20px; font-weight: 800; color: var(--c-text-h); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.lc-header p { font-size: 13px; color: var(--c-text-muted); font-weight: 600; margin: 0; }

.lc-grid { display: flex; flex-direction: column; gap: 12px; }
.lc-row { display: grid; grid-template-columns: 140px 1.5fr 1fr 1fr; align-items: center; gap: 16px; padding: 16px; background: var(--c-bg-body); border: 1px solid var(--c-border); border-radius: var(--radius-sm); transition: var(--transition); }
.lc-row:hover { border-color: var(--c-brand); background: #fff; box-shadow: var(--shadow-sm); transform: translateX(4px); }

.lc-brand { display: flex; flex-direction: column; gap: 8px; }
.lc-brand img { max-height: 28px; width: auto; object-fit: contain; }
.lc-brand-name { font-size: 12px; font-weight: 800; color: var(--c-text-h); text-transform: uppercase; }

.lc-feature { display: flex; flex-direction: column; gap: 4px; border-left: 1px solid var(--c-border); padding-left: 16px; }
.lc-label { font-size: 10px; font-weight: 800; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.lc-value { font-size: 13px; font-weight: 700; color: var(--c-text-h); }
.lc-value.highlight { color: var(--c-brand-dark); }

.lc-tag-wrap { display: flex; gap: 6px; flex-wrap: wrap; }
.lc-mini-tag { font-size: 10px; background: #E5E7EB; color: #374151; padding: 2px 6px; border-radius: 4px; font-weight: 700; white-space: nowrap; }
.lc-mini-tag.green { background: #DCFCE7; color: #166534; }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .lc-row { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
    .lc-feature { border-left: none; padding-left: 0; border-top: 1px solid var(--c-border); padding-top: 8px; }
    .lc-brand { flex-direction: row; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--c-border); padding-bottom: 8px; }
}/* ==========================================================================
   5. LOCAL JACKPOTS WIDGET (High Conversion Module)
   ========================================================================== */
.jackpot-widget { margin-bottom: 48px; }
.jw-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--c-border); }
.jw-header h2 { font-size: 24px; font-weight: 800; color: var(--c-text-h); display: flex; align-items: center; gap: 10px; margin: 0; }
.jw-header-badge { background: #FEF3C7; color: #B45309; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.5px; }

.jw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.jw-card { background: linear-gradient(145deg, var(--c-bg-surface) 0%, #F8FAFC 100%); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 24px; position: relative; overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); }
.jw-card:hover { border-color: var(--c-accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.jw-card::before { content: '💰'; position: absolute; right: -10px; top: -10px; font-size: 80px; opacity: 0.05; transform: rotate(15deg); pointer-events: none; }

.jw-top { display: flex; justify-content: space-between; align-items: center; }
.jw-brand img { height: 24px; width: auto; object-fit: contain; }
.jw-status { font-size: 10px; font-weight: 800; color: #fff; background: #10B981; padding: 2px 8px; border-radius: 4px; text-transform: uppercase; animation: pulse 2s infinite; }

.jw-prize-area { display: flex; flex-direction: column; gap: 4px; }
.jw-prize-label { font-size: 12px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.jw-prize-amount { font-size: 32px; font-weight: 800; color: var(--c-accent); line-height: 1; letter-spacing: -1px; }

.jw-details { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: var(--c-text-p); border-top: 1px dashed var(--c-border); padding-top: 16px; margin-top: 8px; }
.jw-btn { width: 100%; background: var(--c-bg-body); border: 1px solid var(--c-border); color: var(--c-text-h); font-weight: 800; text-transform: uppercase; padding: 12px; border-radius: var(--radius-sm); transition: var(--transition); text-align: center; font-size: 13px; }
.jw-card:hover .jw-btn { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.7; } 100% { opacity: 1; } }

/* ==========================================================================
   6. PREMIUM CONTENT & OG IMAGE SECTION
   ========================================================================== */
.premium-content-section { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 60px; }

/* OG Image Banner */
.pc-og-banner { position: relative; width: 100%; height: 400px; border-bottom: 1px solid var(--c-border); background: var(--c-bg-body); }
.pc-og-banner img { width: 100%; height: 100%; object-fit: cover; }
.pc-og-caption { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(17, 24, 39, 0.8); backdrop-filter: blur(4px); padding: 12px 24px; color: #fff; font-size: 12px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }

/* Content Formatting */
.pc-article { padding: 48px; }
.pc-article h2 { font-size: 28px; font-weight: 800; color: var(--c-text-h); margin-bottom: 24px; letter-spacing: -0.5px; }
.pc-article h3 { font-size: 22px; font-weight: 800; color: var(--c-text-h); margin: 32px 0 16px; }
.pc-article p { font-size: 16px; color: var(--c-text-p); line-height: 1.8; margin-bottom: 24px; }
.pc-article strong { color: var(--c-text-h); }

/* Stylish Blockquote for Content */
.pc-quote { border-left: 4px solid var(--c-brand); background: var(--c-brand-light); padding: 24px 32px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 32px 0; }
.pc-quote p { font-size: 18px; font-weight: 700; color: var(--c-brand-dark); font-style: italic; margin: 0; line-height: 1.6; }

@media (max-width: 768px) {
    .pc-og-banner { height: 250px; }
    .pc-article { padding: 24px; }
    .pc-article h2 { font-size: 24px; }
}

/* === SOURCE: reviews.php === */
/* ==========================================================================
       TÜM CSS KODLARI
       ========================================================================== */
    
    
    
    
    
    

    .mobile-header { display: none; background: var(--c-brand-dark); color: #fff; padding: 16px; position: sticky; top: 0; z-index: 50; align-items: center; justify-content: space-between; box-shadow: var(--shadow-sm); }
    .mobile-logo { font-size: 18px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
    .mobile-logo svg { color: var(--c-accent); }
    .menu-toggle-btn { background:none; border:none; color:#fff; cursor:pointer; display:flex; align-items:center; }
    .app-layout { display: grid; grid-template-columns: 260px 1fr; max-width: 1440px; margin: 0 auto; min-height: 100vh; }
    .sidebar { background: var(--c-bg-surface); border-right: 1px solid var(--c-border); padding: 24px 20px; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; }
    .brand { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: var(--c-text-h); margin-bottom: 40px; }
    .brand-icon { width: 32px; height: 32px; background: var(--c-brand-dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--c-accent); }
    .nav-group { margin-bottom: 32px; }
    .nav-label { font-size: 11px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; display: block; }
    .side-nav { display: flex; flex-direction: column; gap: 6px; }
    .side-link { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--c-text-p); transition: var(--transition); }
    .side-link:hover, .side-link:focus-visible { background: var(--c-bg-body); color: var(--c-brand-dark); outline: none; }
    .side-link.active { background: var(--c-brand-light); color: var(--c-brand-dark); }
    .side-link svg { width: 18px; height: 18px; opacity: 0.7; }
    .side-link.active svg { opacity: 1; color: var(--c-brand); }

    .main-content { padding: 40px; background: var(--c-bg-body); }
    .content-wrapper { max-width: 960px; margin: 0 auto; }
    .breadcrumbs { display: flex; gap: 8px; font-size: 13px; font-weight: 500; color: var(--c-text-muted); margin-bottom: 24px; }
    .breadcrumbs a:hover { color: var(--c-brand); text-decoration: underline; }

    .review-dash-hero { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); margin-bottom: 24px; position: relative; overflow: hidden; }
    .review-dash-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, var(--c-brand-dark) 0%, var(--c-brand) 100%); }
    .rdh-top { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; }
    .rdh-logo { width: 120px; height: 120px; border-radius: var(--radius-md); border: 1px solid var(--c-border); background: #fff; display: flex; align-items: center; justify-content: center; padding: 16px; box-shadow: var(--shadow-sm); flex-shrink: 0; }
    .rdh-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
    .rdh-main { flex: 1; min-width: 280px; }
    .rdh-title-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
    .rdh-title-row h1 { font-size: 36px; font-weight: 800; color: var(--c-text-h); line-height: 1.1; letter-spacing: -1px; margin: 0; }
    .rdh-global-score { background: var(--c-brand-dark); color: #fff; padding: 8px 16px; border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .rdh-global-score span.score { font-size: 24px; font-weight: 800; line-height: 1; }
    .rdh-global-score span.label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-top: 4px; }
    .rdh-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
    .rdh-tag { font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 4px; }
    .rdh-tag.verified { background: #DCFCE7; color: #166534; }
    .rdh-tag.license { background: #F3F4F6; color: var(--c-text-p); border: 1px solid var(--c-border); }
    .rdh-bio { font-size: 14px; color: var(--c-text-p); line-height: 1.6; padding: 16px; background: #F8FAFC; border-radius: var(--radius-md); border: 1px dashed var(--c-border); }

    .expert-take-widget { background: #F0FDF4; border: 1px solid #BBF7D0; border-left: 4px solid var(--c-brand); border-radius: var(--radius-md); padding: 24px; margin: 0 0 32px 0; box-shadow: var(--shadow-sm); }
    .expert-take-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
    .expert-avatar { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--c-brand); object-fit: cover; background: #fff; }
    .expert-title-wrap { display: flex; flex-direction: column; gap: 4px; }
    .expert-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 800; color: var(--c-brand-dark); text-transform: uppercase; }
    .expert-badge svg { color: var(--c-brand); }
    .expert-name { font-size: 13px; font-weight: 600; color: var(--c-text-p); }
    .expert-take-body p { font-size: 15px; line-height: 1.7; color: var(--c-text-h); margin: 0; font-style: italic; }

    .bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; margin-bottom: 40px; }
    .bento-box { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
    .bento-box-title { font-size: 16px; font-weight: 800; color: var(--c-text-h); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--c-border); padding-bottom: 12px; }
    .bento-box-title svg { color: var(--c-brand); width: 18px; height: 18px; }
    .span-4 { grid-column: span 4; } .span-8 { grid-column: span 8; } .span-12 { grid-column: span 12; }

    .bonus-matrix { display: flex; flex-direction: column; gap: 16px; }
    .bm-item { display: flex; align-items: center; justify-content: space-between; padding: 12px; background: var(--c-bg-body); border-radius: var(--radius-sm); border: 1px solid var(--c-border); }
    .bm-info { display: flex; flex-direction: column; gap: 4px; }
    .bm-label { font-size: 11px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; }
    .bm-value { font-size: 16px; font-weight: 800; color: var(--c-brand-dark); }
    .bm-reqs { text-align: right; display: flex; flex-direction: column; gap: 4px; }
    .bm-req-tag { font-size: 10px; background: #E5E7EB; color: #374151; padding: 2px 6px; border-radius: 4px; font-weight: 700; }

    .tech-stats { display: flex; flex-direction: column; gap: 16px; }
    .ts-row { display: flex; flex-direction: column; gap: 6px; }
    .ts-header { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--c-text-h); }
    .ts-bar-bg { width: 100%; height: 6px; background: var(--c-border); border-radius: var(--radius-pill); overflow: hidden; }
    .ts-bar-fill { height: 100%; background: var(--c-brand); border-radius: var(--radius-pill); }
    .ts-val { font-size: 12px; color: var(--c-text-muted); font-weight: 600; }

    .casino-ecosystem { display: flex; flex-direction: column; gap: 24px; }
    .ce-providers { display: flex; flex-wrap: wrap; gap: 12px; }
    .ce-prov-logo { height: 32px; padding: 0 12px; border: 1px solid var(--c-border); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--c-text-h); background: #F8FAFC; }
    .ce-slots-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
    .slot-card { display: flex; align-items: center; gap: 12px; padding: 10px; border: 1px solid var(--c-border); border-radius: var(--radius-sm); }
    .slot-icon { width: 40px; height: 40px; border-radius: 6px; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
    .slot-data { display: flex; flex-direction: column; }
    .slot-name { font-size: 13px; font-weight: 700; color: var(--c-text-h); }
    .slot-rtp { font-size: 11px; color: var(--c-brand); font-weight: 800; }

    .finance-table { width: 100%; border-collapse: collapse; font-size: 13px; }
    .finance-table th { text-align: left; padding: 8px 12px; background: var(--c-bg-body); color: var(--c-text-muted); font-weight: 700; text-transform: uppercase; font-size: 10px; border-bottom: 1px solid var(--c-border); }
    .finance-table td { padding: 12px; border-bottom: 1px solid var(--c-border); font-weight: 600; color: var(--c-text-h); }
    .ft-method { display: flex; align-items: center; gap: 8px; }
    .ft-speed { color: var(--c-brand); display: flex; align-items: center; gap: 4px; }

    .howto-compact { margin: 40px 0; background: #F8FAFC; border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
    .howto-header-sm { margin-bottom: 24px; border-bottom: 1px dashed var(--c-border); padding-bottom: 16px; }
    .howto-header-sm h2 { font-size: 20px; font-weight: 800; color: var(--c-text-h); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
    .howto-timeline { position: relative; padding-left: 32px; display: flex; flex-direction: column; gap: 20px; }
    .howto-timeline::before { content: ''; position: absolute; left: 14px; top: 8px; bottom: 8px; width: 2px; background: var(--c-border); z-index: 1; }
    .step-item { position: relative; z-index: 2; transition: var(--transition); }
    .step-icon-wrap { position: absolute; left: -32px; top: -2px; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 2px solid var(--c-brand); display: flex; align-items: center; justify-content: center; color: var(--c-brand-dark); }
    .step-icon-wrap svg { width: 14px; height: 14px; }
    .step-content { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 12px 16px; }
    .step-content h3 { font-size: 14px; font-weight: 700; color: var(--c-text-h); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
    .step-num-badge { font-size: 9px; text-transform: uppercase; background: var(--c-text-h); color: #fff; padding: 2px 6px; border-radius: 4px; font-weight: 800; }
    .step-content p { font-size: 12px; line-height: 1.5; color: var(--c-text-p); margin: 0; }

    .eeat-author-box { margin: 40px 0; padding: 24px; border: 1px solid var(--c-border); border-radius: var(--radius-md); background: #F8FAFC; display: flex; gap: 16px; align-items: flex-start; }
    .author-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--c-brand-light); }
    .author-details { flex: 1; }
    .author-name { font-size: 16px; font-weight: 800; color: var(--c-text-h); display: flex; align-items: center; gap: 6px; }
    .author-role { font-size: 13px; color: var(--c-brand); font-weight: 600; margin-bottom: 8px; display: block;}
    .author-bio { font-size: 13px; color: var(--c-text-p); margin-bottom: 12px; line-height: 1.6;}
    .audit-stamp { font-size: 11px; color: var(--c-text-muted); display: flex; align-items: center; gap: 4px; font-weight: 500; }

    .site-footer { background-color: #06291e; color: #9CA3AF; padding: 60px 20px 24px; margin-top: 60px; border-top: 4px solid var(--c-brand); font-size: 13px; line-height: 1.6; }
    .footer-wrapper { max-width: 1200px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; } .footer-grid:has(.footer-country-col) { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
    .footer-brand-col .f-logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 16px; }
    .footer-brand-col .f-logo svg { color: var(--c-brand); }
    .footer-trust-badges { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 20px; }
    .f-badge { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #374151; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; color: #fff; }
    .footer-nav-col h3, .footer-nav-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; }
    .footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-bottom { padding-top: 24px; border-top: 1px solid #374151; display: flex; flex-direction: column; gap: 12px; text-align: center; }

    @media (max-width: 1024px) {
        .span-4, .span-6, .span-8 { grid-column: span 12; }
        .footer-grid, .footer-grid:has(.footer-country-col) { grid-template-columns: 1fr 1fr; }
        .footer-brand-col { grid-column: 1 / -1; }
        .footer-country-col { grid-column: 1 / -1; }
        .app-layout { grid-template-columns: 220px 1fr; }
    }
    @media (max-width: 768px) {
        body { padding-bottom: 60px; }
        .app-layout { grid-template-columns: 1fr; display: block; }
        .sidebar { display: none; }
        .mobile-header { display: flex; }
        .main-content { padding: 16px; }
        .footer-grid, .footer-grid:has(.footer-country-col) { grid-template-columns: 1fr; gap: 32px; }
        .site-footer { padding-bottom: 90px; }
        .eeat-author-box { flex-direction: column; align-items: center; text-align: center; }
    }
    .bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--c-bg-surface); border-top: 1px solid var(--c-border); z-index: 100; justify-content: space-around; padding: 8px 0; padding-bottom: env(safe-area-inset-bottom, 8px); box-shadow: 0 -2px 10px rgba(0,0,0,0.05); }
    .b-nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; color: var(--c-text-muted); }
    .b-nav-item svg { width: 22px; height: 22px; }
    @media (max-width: 768px) { .bottom-nav { display: flex; } }

/* === SOURCE: countries/cameroon.php === */
:root {
        --c-cm-green:  #007A5E;
        --c-cm-greend: #005C46;
        --c-cm-red:    #CE1126;
        --c-cm-redd:   #A8081C;
        --c-cm-gold:   #FCD116;
        --c-cm-goldd:  #D4AC02;
        --c-cm-ink:    #0E1A16;
    }

    .cm-hero {
        position: relative;
        color: #fff;
        padding: 46px 38px;
        border-radius: var(--radius-lg);
        margin-bottom: 32px;
        overflow: hidden;
        background:
            linear-gradient(118deg, var(--c-cm-greend) 0%, var(--c-cm-green) 60%, #006949 100%);
    }
    /* Vertical stripe motif on the right (flag-inspired) */
    .cm-hero::before {
        content: '';
        position: absolute;
        top: 0; right: 0; bottom: 0;
        width: 22%;
        background:
            linear-gradient(90deg,
                var(--c-cm-green) 0%,
                var(--c-cm-green) 33%,
                var(--c-cm-red)   33%,
                var(--c-cm-red)   66%,
                var(--c-cm-gold)  66%,
                var(--c-cm-gold)  100%);
        opacity: 0.22;
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    }
    /* Subtle star detail */
    .cm-hero::after {
        content: '★';
        position: absolute;
        top: 50%; right: 11%;
        font-size: 40px;
        color: var(--c-cm-gold);
        opacity: 0.32;
        transform: translateY(-50%);
        z-index: 0;
    }
    .cm-hero-inner { position: relative; z-index: 1; }
    .cm-hero h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        margin: 0 0 12px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    .cm-pill {
        display: inline-flex; align-items: center; gap: 6px;
        background: var(--c-cm-gold); color: #1a1300;
        font-size: 11px; font-weight: 800; letter-spacing: 0.6px;
        text-transform: uppercase; padding: 5px 11px;
        border-radius: 3px; margin-bottom: 14px;
    }

    .cm-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
    .cm-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

    /* Bilingual support table */
    .cm-bilingual {
        width: 100%; border-collapse: separate; border-spacing: 0;
        background: var(--c-bg-surface); border: 1px solid var(--c-border);
        border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
        font-size: 13px;
    }
    .cm-bilingual th, .cm-bilingual td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
    .cm-bilingual thead th {
        background: linear-gradient(180deg, #F0FDF4 0%, #DCFCE7 100%);
        font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
        color: var(--c-cm-greend); font-weight: 800;
    }
    .cm-bilingual tbody tr:last-child td { border-bottom: none; }
    .cm-bilingual .y  { color: var(--c-cm-greend); font-weight: 800; }
    .cm-bilingual .n  { color: var(--c-cm-redd); font-weight: 800; }
    .cm-bilingual .p  { color: #B45309; font-weight: 800; }
    .cm-bilingual .op { font-weight: 800; color: var(--c-text-h); }
    .cm-bilingual .lang-pill {
        display: inline-block;
        padding: 2px 7px;
        border-radius: 3px;
        font-size: 10px;
        font-weight: 800;
        margin-right: 4px;
        letter-spacing: 0.3px;
    }
    .cm-bilingual .lang-pill.fr { background: #DBEAFE; color: #1E3A8A; }
    .cm-bilingual .lang-pill.en { background: #FEF3C7; color: #78350F; }

    /* Regulator framework mini-table */
    .cm-reg {
        background: linear-gradient(180deg, #F0FDF4 0%, #DCFCE7 100%);
        border: 1px solid var(--c-cm-green);
        border-left: 4px solid var(--c-cm-greend);
        border-radius: var(--radius-md);
        padding: 18px 22px;
        margin: 0 0 24px;
    }
    .cm-reg h3, .cm-reg h4 {
        font-size: 14px; font-weight: 800; color: var(--c-cm-greend);
        margin: 0 0 10px;
        display: flex; align-items: center; gap: 8px;
    }
    .cm-reg table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
    .cm-reg th, .cm-reg td {
        padding: 8px 10px; text-align: left; border-bottom: 1px solid #BBF7D0;
        vertical-align: top;
    }
    .cm-reg thead th {
        background: rgba(0,122,94,0.14); color: var(--c-cm-greend);
        text-transform: uppercase; letter-spacing: 0.3px; font-size: 11px;
        font-weight: 800;
    }
    .cm-reg tbody tr:last-child td { border-bottom: none; }

    /* AFCON 2021 / Indomitable Lions editorial block */
    .cm-afcon {
        background:
            radial-gradient(circle at 92% 8%, rgba(252,209,22,0.20) 0%, transparent 55%),
            radial-gradient(circle at 8% 92%, rgba(206,17,38,0.18) 0%, transparent 50%),
            #0E1A16;
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        margin-bottom: 48px;
        border: 1px solid #1B2D27;
    }
    .cm-afcon h2 { color: #fff; }
    .cm-afcon p { color: #B3CFC5; line-height: 1.75; margin: 0 0 14px; }
    .cm-afcon .af-row {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 14px; margin-top: 22px; padding-top: 22px;
        border-top: 1px solid #1B2D27;
    }
    .cm-afcon .af-stat { font-size: 12px; color: #7FA395; }
    .cm-afcon .af-stat strong { display: block; font-size: 20px; color: var(--c-cm-gold); font-weight: 800; margin-bottom: 2px; }
    .cm-afcon-tag {
        display: inline-block;
        background: var(--c-cm-gold); color: #1a1300;
        font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
        text-transform: uppercase; padding: 4px 9px;
        border-radius: 3px; margin-bottom: 10px;
    }

    /* Payment cards */
    .cm-pay {
        background: var(--c-bg-surface); border: 1px solid var(--c-border);
        border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm);
        position: relative; border-top: 3px solid var(--c-cm-gold);
    }
    .cm-pay.primary {
        border: 2px solid var(--c-cm-red); border-top: 3px solid var(--c-cm-red);
        background: linear-gradient(180deg, #FEF2F2 0%, #FFFFFF 60%);
    }
    .cm-pay .pay-tag {
        position: absolute; top: -10px; right: 14px;
        background: var(--c-cm-red); color: #fff;
        font-size: 10px; font-weight: 800; letter-spacing: 0.4px;
        padding: 3px 8px; border-radius: 3px;
    }
    .cm-pay .lg {
        width: 44px; height: 44px; border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        font-weight: 800; color: #fff; font-size: 11px;
    }
    .cm-pay .lg.orange { background: #FF6600; }
    .cm-pay .lg.mtn    { background: #FFCB05; color: #000; }
    .cm-pay .lg.bank   { background: #1F4F8B; }
    .cm-pay .lg.card   { background: #1A1F71; }
    .cm-pay .lg.cash   { background: #16A34A; }

    /* XAF Peg Stability Calculator */
    .cm-calc {
        background: linear-gradient(180deg, #FEF3C7 0%, #FDE68A 100%);
        border: 1px solid var(--c-cm-gold);
        border-radius: var(--radius-md);
        padding: 24px; margin-bottom: 40px;
    }
    .cm-calc h3 { font-size: 18px; font-weight: 800; color: #78350F; margin: 0 0 6px; }
    .cm-calc .crow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
    .cm-calc label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: #78350F;
        letter-spacing: 0.4px; margin-bottom: 4px;
    }
    .cm-calc input, .cm-calc select {
        width: 100%; padding: 10px 12px; border-radius: var(--radius-sm);
        border: 1px solid var(--c-cm-gold); font-size: 15px; font-weight: 700;
        background: #fff; color: #1a1300;
    }
    .cm-calc .cout {
        margin-top: 18px; padding: 18px; background: #fff;
        border-radius: var(--radius-sm); border: 1px dashed var(--c-cm-goldd);
        font-size: 13px; color: #78350F; line-height: 1.8;
    }
    .cm-calc .cout .key {
        display: flex; justify-content: space-between;
        padding: 6px 0; border-bottom: 1px dotted #FCD34D;
    }
    .cm-calc .cout .key:last-child { border-bottom: none; }
    .cm-calc .cout .key .l { color: #475569; font-size: 13px; }
    .cm-calc .cout .key .v { font-weight: 800; color: #78350F; }
    .cm-calc .cout .key.bottom .v { color: var(--c-cm-greend); font-size: 16px; }
    .cm-calc .cout .key.bottom .l { font-weight: 800; color: var(--c-text-h); }

    /* CEMAC zone callout */
    .cm-cemac {
        background: linear-gradient(135deg, var(--c-cm-greend) 0%, var(--c-cm-green) 100%);
        color: #fff;
        border-radius: var(--radius-md);
        padding: 18px 22px;
        margin: 24px 0;
        display: flex; align-items: center; gap: 16px;
        flex-wrap: wrap;
    }
    .cm-cemac .c-icon {
        width: 48px; height: 48px;
        background: rgba(252,209,22,0.22);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
        color: var(--c-cm-gold);
        font-weight: 800;
    }
    .cm-cemac h3 { font-size: 16px; font-weight: 800; margin: 0 0 4px; color: #fff; }
    .cm-cemac p { font-size: 13px; line-height: 1.6; margin: 0; opacity: 0.95; }

    /* Vernacular */
    .cm-vern {
        font-style: italic;
        background: linear-gradient(90deg, rgba(252,209,22,0.22) 0%, transparent 100%);
        padding: 2px 6px;
        border-left: 2px solid var(--c-cm-gold);
        margin-left: 2px;
    }

    /* Author note */
    .cm-author-note {
        background: #FEF3C7;
        border-left: 3px solid var(--c-cm-gold);
        padding: 14px 18px; margin: 24px 0;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-size: 14px; color: var(--c-text-p);
        line-height: 1.7; font-style: italic;
    }
    .cm-author-note strong { font-style: normal; color: var(--c-text-h); }

    .cm-faq summary::marker { color: var(--c-cm-red); }

    /* ---- CM v2.2 NEW WIDGETS (Bilingual Cashier · CEMAC Reality · Lions/Elite One Map) ---- */

    /* Alias variables (newer naming used by v2.2 partials) */
    :root {
        --c-cm-yellow:   var(--c-cm-gold);
        --c-cm-yellow-d: var(--c-cm-goldd);
    }

    /* Shared widget container */
    .cm-bilingual-checker, .cm-cemac-checker, .cm-coverage-map {
        background: linear-gradient(180deg, #FEFCE8 0%, #FEF9C3 100%);
        border: 1px solid var(--c-cm-gold);
        border-radius: var(--radius-md);
        padding: 22px;
        margin: 16px 0 22px;
    }

    /* W1 — Bilingual Cashier Coverage Checker */
    .cm-bc-controls label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: #713F12;
        letter-spacing: 0.4px; margin-bottom: 6px;
    }
    .cm-bc-controls select {
        width: 100%; max-width: 420px; padding: 10px 12px;
        border-radius: var(--radius-sm); border: 1px solid var(--c-cm-gold);
        font-size: 14px; font-weight: 700; background: #fff; color: #1a1300;
    }
    .cm-bc-result { margin-top: 14px; }
    .cm-bc-inner {
        background: #fff; border-radius: var(--radius-sm);
        border-left: 4px solid var(--c-cm-gold);
        padding: 14px 18px;
    }
    .cm-bc-inner.cm-bc-ok      { border-color: var(--c-cm-green);  background: #F0FDF4; }
    .cm-bc-inner.cm-bc-warn    { border-color: var(--c-cm-goldd);  background: #FEF9C3; }
    .cm-bc-inner.cm-bc-unknown { border-color: #6B7280;            background: #F9FAFB; }
    .cm-bc-status strong {
        display: block; font-size: 15px; font-weight: 800;
        color: var(--c-text-h); margin-bottom: 12px;
    }
    .cm-bc-inner.cm-bc-ok   .cm-bc-status strong { color: var(--c-cm-greend); }
    .cm-bc-inner.cm-bc-warn .cm-bc-status strong { color: #713F12; }
    .cm-bc-grid {
        display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
        margin-bottom: 12px;
    }
    .cm-bc-cell {
        background: #FEFCE8; border: 1px solid #FDE68A; border-radius: var(--radius-sm);
        padding: 10px 12px;
    }
    .cm-bc-cell small {
        display: block; font-size: 11px; color: #713F12;
        font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px;
        margin-bottom: 4px;
    }
    .cm-bc-cell strong { font-size: 14px; color: var(--c-text-h); font-weight: 800; }
    .cm-bc-note { font-size: 13px; color: var(--c-text-p); line-height: 1.6; margin: 0; }

    /* W2 — CEMAC Cross-Border Reality Checker */
    .cm-cc-controls {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px; margin-bottom: 14px;
    }
    .cm-cc-controls label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: #713F12;
        letter-spacing: 0.4px; margin-bottom: 4px;
    }
    .cm-cc-controls select {
        width: 100%; padding: 10px 12px;
        border-radius: var(--radius-sm); border: 1px solid var(--c-cm-gold);
        font-size: 14px; font-weight: 700; background: #fff; color: #1a1300;
    }
    .cm-cc-result { margin-top: 6px; }
    .cm-cc-inner {
        background: #fff; border-radius: var(--radius-sm);
        border-left: 4px solid var(--c-cm-gold);
        padding: 14px 18px;
    }
    .cm-cc-inner.cm-cc-works   { border-color: var(--c-cm-green); background: #F0FDF4; }
    .cm-cc-inner.cm-cc-warn    { border-color: var(--c-cm-goldd); background: #FEF9C3; }
    .cm-cc-inner.cm-cc-blocked { border-color: var(--c-cm-red);   background: #FEF2F2; }
    .cm-cc-route strong {
        display: block; font-size: 15px; font-weight: 800; color: var(--c-text-h);
        padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px solid #FDE68A;
    }
    .cm-cc-status strong { font-size: 14px; font-weight: 800; display: block; margin-bottom: 8px; }
    .cm-cc-inner.cm-cc-works   .cm-cc-status strong { color: var(--c-cm-greend); }
    .cm-cc-inner.cm-cc-warn    .cm-cc-status strong { color: #713F12; }
    .cm-cc-inner.cm-cc-blocked .cm-cc-status strong { color: var(--c-cm-redd); }
    .cm-cc-msg { font-size: 13px; color: var(--c-text-p); line-height: 1.6; margin: 0; }

    /* W3 — Indomitable Lions + Elite One Coverage Map */
    .cm-cm-controls label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: #713F12;
        letter-spacing: 0.4px; margin-bottom: 6px;
    }
    .cm-cm-controls select {
        width: 100%; max-width: 460px; padding: 10px 12px;
        border-radius: var(--radius-sm); border: 1px solid var(--c-cm-gold);
        font-size: 14px; font-weight: 700; background: #fff; color: #1a1300;
    }
    .cm-cm-result { margin-top: 14px; }
    .cm-cm-inner {
        background: #fff; border-radius: var(--radius-sm);
        border: 1px solid #FDE68A; padding: 16px 18px;
    }
    .cm-cm-head {
        display: flex; justify-content: space-between; align-items: baseline;
        gap: 12px; flex-wrap: wrap;
        padding-bottom: 12px; margin-bottom: 12px;
        border-bottom: 1px solid #FDE68A;
    }
    .cm-cm-head strong { font-size: 18px; color: var(--c-text-h); font-weight: 800; }
    .cm-cm-pin {
        display: inline-flex; align-items: center;
        font-size: 12px; font-weight: 700; color: #713F12;
        background: #FEFCE8; border: 1px solid #FDE68A;
        border-radius: 999px; padding: 3px 10px;
    }
    .cm-cm-rows { display: flex; flex-direction: column; gap: 6px; }
    .cm-cm-row {
        display: grid; grid-template-columns: 160px 1fr 50px;
        align-items: center; gap: 10px;
        padding: 8px 10px;
        background: #FEFCE8; border-radius: var(--radius-sm);
        border-left: 3px solid #FDE68A;
        font-size: 13px;
    }
    .cm-cm-row .cm-cm-op { font-weight: 800; color: var(--c-text-h); }
    .cm-cm-row .cm-cm-bar {
        position: relative;
        height: 8px; background: #FDE68A; border-radius: 4px; overflow: hidden;
    }
    .cm-cm-row .cm-cm-bar-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--c-cm-gold) 0%, var(--c-cm-green) 100%);
        transition: width 0.3s ease;
    }
    .cm-cm-row .cm-cm-score {
        font-weight: 800; color: var(--c-cm-goldd);
        text-align: right; font-size: 13px;
    }
    .cm-cm-row .cm-cm-tier {
        grid-column: 1 / -1;
        font-size: 11.5px; color: #713F12; font-weight: 600; font-style: italic;
        padding-top: 2px;
    }
    .cm-cm-row.cm-cm-t5 { border-left-color: var(--c-cm-green); }
    .cm-cm-row.cm-cm-t4 { border-left-color: var(--c-cm-goldd); }
    .cm-cm-row.cm-cm-t3 { border-left-color: #B45309; }
    .cm-cm-row.cm-cm-t2 { border-left-color: var(--c-cm-red); }
    .cm-cm-note {
        margin: 14px 0 0; padding: 10px 12px;
        font-size: 12.5px; line-height: 1.6; color: #713F12; font-weight: 600;
        background: #FEFCE8; border-left: 3px solid var(--c-cm-goldd);
        border-radius: var(--radius-sm);
    }

    .cm-h2 + .cm-sub a[href*="reviews/"] { color: var(--c-cm-goldd); font-weight: 700; }

/* === SOURCE: countries/kenya.php === */
/* M-Pesa green */
    :root { --c-ke-mpesa: #23A23A; --c-ke-red: #BB0000; }

    .ke-hero {
        background:
            linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(187,0,0,0.85) 100%),
            url('https://flagcdn.com/ke.svg') center/cover no-repeat;
        color: #fff;
        padding: 44px 36px;
        border-radius: var(--radius-lg);
        margin-bottom: 32px;
        position: relative;
        overflow: hidden;
        border-bottom: 6px solid var(--c-ke-mpesa);
    }
    .ke-hero::after {
        content: '';
        position: absolute;
        top: 0; right: 0; bottom: 0;
        width: 6px;
        background: var(--c-ke-mpesa);
    }
    .ke-hero h1 {
        font-size: 38px;
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -1px;
        margin: 0 0 10px;
    }
    .ke-pill-mpesa {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--c-ke-mpesa);
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        padding: 5px 11px;
        border-radius: 4px;
        margin-bottom: 12px;
    }

    .ke-tax-callout {
        background: #FFFBEB;
        border: 1px solid #FCD34D;
        border-left: 4px solid #D97706;
        border-radius: var(--radius-md);
        padding: 16px 20px;
        margin: 0 0 24px;
        font-size: 13px;
        color: #78350F;
        line-height: 1.6;
    }
    .ke-tax-callout strong { color: #78350F; }

    .ke-payment-card {
        background: var(--c-bg-surface);
        border: 1px solid var(--c-border);
        border-radius: var(--radius-md);
        padding: 20px;
        box-shadow: var(--shadow-sm);
        position: relative;
    }
    .ke-payment-card.is-primary {
        border: 2px solid var(--c-ke-mpesa);
        background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 60%);
    }
    .ke-payment-card .pay-badge {
        position: absolute;
        top: -10px;
        right: 16px;
        background: var(--c-ke-mpesa);
        color: #fff;
        font-size: 10px;
        font-weight: 800;
        padding: 3px 8px;
        border-radius: 3px;
        letter-spacing: 0.5px;
    }
    .ke-pay-logo {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        color: #fff;
        font-size: 11px;
        letter-spacing: 0.3px;
    }
    .ke-pay-logo.mpesa { background: var(--c-ke-mpesa); }
    .ke-pay-logo.airtel { background: #E60000; }
    .ke-pay-logo.bank { background: #1F2937; }
    .ke-pay-logo.card { background: #1A1F71; }

    .ke-aviator-block {
        background:
            radial-gradient(ellipse at 90% 10%, rgba(35,162,58,0.18) 0%, transparent 50%),
            #0F172A;
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        margin-bottom: 48px;
        border: 1px solid #1E293B;
    }
    .ke-aviator-block h2 { color: #fff; }
    .ke-aviator-block .aviator-tag {
        display: inline-block;
        background: var(--c-accent);
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        padding: 4px 9px;
        border-radius: 3px;
        margin-bottom: 10px;
    }
    .ke-aviator-block p { color: #CBD5E1; line-height: 1.75; }
    .ke-aviator-block .aviator-stat-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 14px;
        margin-top: 22px;
        padding-top: 22px;
        border-top: 1px solid #1E293B;
    }
    .ke-aviator-block .aviator-stat {
        font-size: 12px;
        color: #94A3B8;
    }
    .ke-aviator-block .aviator-stat strong {
        display: block;
        font-size: 22px;
        color: #FACC15;
        font-weight: 800;
        margin-bottom: 2px;
    }

    .ke-faq summary::marker { color: var(--c-ke-mpesa); }

/* === SOURCE: countries/nigeria.php === */
:root {
        --c-ng-green: #008751;
        --c-ng-green-d: #006B40;
        --c-ng-naira: #FACC15;
    }

    .ng-hero {
        position: relative;
        color: #fff;
        padding: 44px 36px;
        border-radius: var(--radius-lg);
        margin-bottom: 32px;
        overflow: hidden;
        background:
            linear-gradient(110deg,
                var(--c-ng-green) 0%,
                var(--c-ng-green) 33%,
                rgba(255,255,255,0.94) 33%,
                rgba(255,255,255,0.94) 38%,
                var(--c-ng-green-d) 38%,
                var(--c-ng-green-d) 100%);
    }
    .ng-hero::before {
        content: '';
        position: absolute; inset: 0;
        background: linear-gradient(160deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.12) 60%, rgba(0,0,0,0) 100%);
    }
    .ng-hero-inner { position: relative; z-index: 1; }
    .ng-hero h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        margin: 0 0 12px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    }
    .ng-pill {
        display: inline-flex; align-items: center; gap: 6px;
        background: var(--c-ng-naira);
        color: #1a1300;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        padding: 5px 11px;
        border-radius: 3px;
        margin-bottom: 14px;
    }
    .ng-naira { font-weight: 800; color: var(--c-ng-green-d); }

    /* Section heading utility */
    .ng-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
    .ng-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

    /* Comparison table */
    .ng-cmp {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background: var(--c-bg-surface);
        border: 1px solid var(--c-border);
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        font-size: 13px;
    }
    .ng-cmp th, .ng-cmp td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
    .ng-cmp thead th { background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--c-text-muted); font-weight: 800; }
    .ng-cmp tbody tr:last-child td { border-bottom: none; }
    .ng-cmp .ng-yes { color: var(--c-ng-green); font-weight: 800; }
    .ng-cmp .ng-no  { color: #B91C1C; font-weight: 800; }
    .ng-cmp .ng-op  { font-weight: 800; color: var(--c-text-h); }

    /* Devaluation block */
    .ng-deval {
        background:
            radial-gradient(circle at 90% 10%, rgba(250,204,21,0.16) 0%, transparent 55%),
            #1A1F2E;
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        margin-bottom: 48px;
        border: 1px solid #28304A;
    }
    .ng-deval h2 { color: #fff; }
    .ng-deval p { color: #CBD5E1; line-height: 1.75; margin: 0 0 14px; }
    .ng-deval .deval-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 14px;
        margin-top: 22px;
        padding-top: 22px;
        border-top: 1px solid #28304A;
    }
    .ng-deval .deval-stat { font-size: 12px; color: #94A3B8; }
    .ng-deval .deval-stat strong {
        display: block;
        font-size: 22px;
        color: var(--c-ng-naira);
        font-weight: 800;
        margin-bottom: 2px;
    }
    .ng-deval-tag {
        display: inline-block;
        background: var(--c-ng-naira); color: #1a1300;
        font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
        text-transform: uppercase; padding: 4px 9px;
        border-radius: 3px; margin-bottom: 10px;
    }

    /* Payment card NG variant */
    .ng-pay {
        background: var(--c-bg-surface);
        border: 1px solid var(--c-border);
        border-radius: var(--radius-md);
        padding: 20px; box-shadow: var(--shadow-sm); position: relative;
    }
    .ng-pay.primary {
        border: 2px solid var(--c-ng-green);
        background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 60%);
    }
    .ng-pay .pay-tag {
        position: absolute; top: -10px; right: 14px;
        background: var(--c-ng-green); color: #fff;
        font-size: 10px; font-weight: 800; letter-spacing: 0.4px;
        padding: 3px 8px; border-radius: 3px;
    }
    .ng-pay .lg {
        width: 44px; height: 44px; border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        font-weight: 800; color: #fff; font-size: 11px;
    }
    .ng-pay .lg.paystack { background: #0BA4E0; }
    .ng-pay .lg.flutter  { background: #F5A623; }
    .ng-pay .lg.opay     { background: #1DCE5C; }
    .ng-pay .lg.ussd     { background: #1F2937; }
    .ng-pay .lg.bank     { background: #4F46E5; }

    /* Calculator widget */
    .ng-calc {
        background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 100%);
        border: 1px solid #FCD34D;
        border-radius: var(--radius-md);
        padding: 24px;
        margin-bottom: 40px;
    }
    .ng-calc h3 {
        font-size: 18px;
        font-weight: 800;
        color: #78350F;
        margin: 0 0 6px;
    }
    .ng-calc .calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
    .ng-calc label { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; color: #78350F; letter-spacing: 0.4px; margin-bottom: 4px; }
    .ng-calc input {
        width: 100%; padding: 10px 12px; border-radius: var(--radius-sm);
        border: 1px solid #FCD34D; font-size: 15px; font-weight: 700;
        background: #fff; color: #1a1300;
    }
    .ng-calc .calc-out {
        margin-top: 18px;
        padding: 16px;
        background: #fff;
        border-radius: var(--radius-sm);
        border: 1px dashed #D97706;
        font-size: 14px;
        color: #78350F;
        line-height: 1.7;
    }
    .ng-calc .calc-out strong { color: #166534; font-size: 22px; }

    /* Vernacular drop */
    .ng-vern {
        font-style: italic;
        background: linear-gradient(90deg, rgba(0,135,81,0.08) 0%, transparent 100%);
        padding: 2px 6px;
        border-left: 2px solid var(--c-ng-green);
        margin-left: 2px;
    }

    /* Author note */
    .ng-author-note {
        background: #F8FAFC;
        border-left: 3px solid var(--c-ng-green);
        padding: 14px 18px;
        margin: 24px 0;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-size: 14px;
        color: var(--c-text-p);
        line-height: 1.7;
        font-style: italic;
    }
    .ng-author-note strong { font-style: normal; color: var(--c-text-h); }

    /* FAQ NG accent */
    .ng-faq summary::marker { color: var(--c-ng-green); }

/* === SOURCE: countries/south-africa.php === */
:root {
        --c-za-green: #007749;
        --c-za-green-d: #00603A;
        --c-za-gold: #FFB81C;
        --c-za-navy: #001489;
        --c-za-red: #DE3831;
    }

    .za-hero {
        position: relative;
        color: #fff;
        padding: 46px 38px;
        border-radius: var(--radius-lg);
        margin-bottom: 32px;
        overflow: hidden;
        background:
            linear-gradient(115deg, var(--c-za-navy) 0%, var(--c-za-green) 55%, var(--c-za-green-d) 100%);
    }
    .za-hero::before {
        content: '';
        position: absolute;
        top: 50%; right: -20px;
        width: 180px; height: 180px;
        transform: translateY(-50%) rotate(45deg);
        background: var(--c-za-gold);
        opacity: 0.16;
        border-radius: 12px;
    }
    .za-hero::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--c-za-gold) 0%, var(--c-za-gold) 33%, transparent 33%, transparent 66%, var(--c-za-red) 66%, var(--c-za-red) 100%);
    }
    .za-hero-inner { position: relative; z-index: 1; }
    .za-hero h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        margin: 0 0 12px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    }
    .za-pill {
        display: inline-flex; align-items: center; gap: 6px;
        background: var(--c-za-gold);
        color: #1a1300;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        padding: 5px 11px;
        border-radius: 3px;
        margin-bottom: 14px;
    }

    .za-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
    .za-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

    /* The defining SA callout: online casino illegality */
    .za-casino-warn {
        background: linear-gradient(180deg, #FEF2F2 0%, #FFF1F1 100%);
        border: 1px solid #FCA5A5;
        border-left: 5px solid var(--c-za-red);
        border-radius: var(--radius-md);
        padding: 22px 24px;
        margin: 0 0 32px;
    }
    .za-casino-warn h3 {
        font-size: 16px; font-weight: 800;
        color: #7F1D1D; margin: 0 0 8px;
        display: flex; align-items: center; gap: 8px;
    }
    .za-casino-warn p { font-size: 14px; color: #7F1D1D; line-height: 1.7; margin: 0; }
    .za-casino-warn strong { color: #7F1D1D; }

    /* Comparison table */
    .za-cmp { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); font-size: 13px; }
    .za-cmp th, .za-cmp td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
    .za-cmp thead th { background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--c-text-muted); font-weight: 800; }
    .za-cmp tbody tr:last-child td { border-bottom: none; }
    .za-cmp .za-yes { color: var(--c-za-green); font-weight: 800; }
    .za-cmp .za-no  { color: var(--c-za-red); font-weight: 800; }
    .za-cmp .za-mid { color: var(--c-accent); font-weight: 800; }
    .za-cmp .za-op  { font-weight: 800; color: var(--c-text-h); }

    /* Provincial licence map */
    .za-prov {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
        margin: 20px 0;
    }
    .za-prov-card {
        background: var(--c-bg-surface);
        border: 1px solid var(--c-border);
        border-radius: var(--radius-md);
        padding: 14px 16px;
        border-top: 3px solid var(--c-za-gold);
    }
    .za-prov-card strong { display: block; color: var(--c-text-h); font-size: 13px; margin-bottom: 4px; }
    .za-prov-card span { font-size: 12px; color: var(--c-text-p); line-height: 1.5; }

    /* Sports calendar editorial block */
    .za-sports {
        background:
            radial-gradient(circle at 10% 90%, rgba(255,184,28,0.18) 0%, transparent 55%),
            #03241A;
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        margin-bottom: 48px;
        border: 1px solid #0E3A2C;
    }
    .za-sports h2 { color: #fff; }
    .za-sports p { color: #BFE4D5; line-height: 1.75; margin: 0 0 14px; }
    .za-sports .sport-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 14px;
        margin-top: 22px;
        padding-top: 22px;
        border-top: 1px solid #0E3A2C;
    }
    .za-sports .sport-stat { font-size: 12px; color: #7FB69D; }
    .za-sports .sport-stat strong { display: block; font-size: 20px; color: var(--c-za-gold); font-weight: 800; margin-bottom: 2px; }
    .za-sports-tag {
        display: inline-block;
        background: var(--c-za-gold); color: #1a1300;
        font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
        text-transform: uppercase; padding: 4px 9px;
        border-radius: 3px; margin-bottom: 10px;
    }

    /* Payment cards ZA variant */
    .za-pay { background: var(--c-bg-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); position: relative; border-top: 3px solid transparent; }
    .za-pay.primary { border: 2px solid var(--c-za-green); background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 60%); }
    .za-pay .pay-tag {
        position: absolute; top: -10px; right: 14px;
        background: var(--c-za-green); color: #fff;
        font-size: 10px; font-weight: 800; letter-spacing: 0.4px;
        padding: 3px 8px; border-radius: 3px;
    }
    .za-pay .lg { width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 11px; }
    .za-pay .lg.ozow    { background: #0061A8; }
    .za-pay .lg.sid     { background: #2E7D32; }
    .za-pay .lg.voucher { background: #FF6B00; }
    .za-pay .lg.ott     { background: #6A1B9A; }
    .za-pay .lg.payshap { background: var(--c-za-navy); }
    .za-pay .lg.card    { background: #1A1F71; }

    /* Multibet EV calculator */
    .za-calc {
        background: linear-gradient(180deg, #FEF9C3 0%, #FEF3C7 100%);
        border: 1px solid var(--c-za-gold);
        border-radius: var(--radius-md);
        padding: 24px;
        margin-bottom: 40px;
    }
    .za-calc h3 { font-size: 18px; font-weight: 800; color: #78350F; margin: 0 0 6px; }
    .za-calc .crow { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 14px; }
    .za-calc label { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; color: #78350F; letter-spacing: 0.4px; margin-bottom: 4px; }
    .za-calc input { width: 100%; padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid var(--c-za-gold); font-size: 15px; font-weight: 700; background: #fff; color: #1a1300; }
    .za-calc .cout { margin-top: 18px; padding: 16px; background: #fff; border-radius: var(--radius-sm); border: 1px dashed #B45309; font-size: 14px; color: #78350F; line-height: 1.75; }
    .za-calc .cout strong { color: #166534; font-size: 22px; }

    /* Vernacular drop */
    .za-vern {
        font-style: italic;
        background: linear-gradient(90deg, rgba(255,184,28,0.18) 0%, transparent 100%);
        padding: 2px 6px;
        border-left: 2px solid var(--c-za-gold);
        margin-left: 2px;
    }

    /* Author note */
    .za-author-note {
        background: #F8FAFC;
        border-left: 3px solid var(--c-za-gold);
        padding: 14px 18px;
        margin: 24px 0;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-size: 14px;
        color: var(--c-text-p);
        line-height: 1.7;
        font-style: italic;
    }
    .za-author-note strong { font-style: normal; color: var(--c-text-h); }

    .za-faq summary::marker { color: var(--c-za-green); }

/* === SOURCE: countries/tanzania.php === */
:root {
        --c-tz-green:  #1EB53A;
        --c-tz-greend: #138A2A;
        --c-tz-yellow: #FCD116;
        --c-tz-blue:   #00A3DD;
        --c-tz-blued:  #007BAB;
        --c-tz-ink:    #0B2238;
    }

    .tz-hero {
        position: relative;
        color: #fff;
        padding: 46px 38px;
        border-radius: var(--radius-lg);
        margin-bottom: 32px;
        overflow: hidden;
        background:
            linear-gradient(120deg, var(--c-tz-greend) 0%, var(--c-tz-green) 40%, var(--c-tz-blue) 100%);
    }
    .tz-hero::before {
        content: '';
        position: absolute;
        top: -30px; right: -30px;
        width: 220px; height: 220px;
        transform: rotate(35deg);
        background: var(--c-tz-yellow);
        opacity: 0.18;
        border-radius: 24px;
    }
    .tz-hero::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--c-tz-green) 0%, var(--c-tz-green) 30%, var(--c-tz-yellow) 30%, var(--c-tz-yellow) 36%, #000 36%, #000 42%, var(--c-tz-yellow) 42%, var(--c-tz-yellow) 48%, var(--c-tz-blue) 48%);
    }
    .tz-hero-inner { position: relative; z-index: 1; }
    .tz-hero h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        margin: 0 0 12px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    }
    .tz-pill {
        display: inline-flex; align-items: center; gap: 6px;
        background: var(--c-tz-yellow); color: #0B2238;
        font-size: 11px; font-weight: 800; letter-spacing: 0.6px;
        text-transform: uppercase; padding: 5px 11px;
        border-radius: 3px; margin-bottom: 14px;
    }

    .tz-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
    .tz-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

    /* Tax callout */
    .tz-tax-callout {
        background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 100%);
        border: 1px solid #FCD34D;
        border-left: 4px solid var(--c-tz-yellow);
        border-radius: var(--radius-md);
        padding: 18px 22px;
        margin: 0 0 24px;
        font-size: 13.5px;
        color: #78350F;
        line-height: 1.7;
    }
    .tz-tax-callout strong { color: #78350F; }

    /* Tax history mini-table */
    .tz-tax-history {
        background: #fff; border: 1px solid var(--c-border);
        border-radius: var(--radius-sm); margin-top: 12px;
        font-size: 12px; width: 100%; border-collapse: collapse;
    }
    .tz-tax-history th, .tz-tax-history td {
        padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--c-border);
    }
    .tz-tax-history thead th {
        background: #FEF3C7; font-weight: 800; color: #78350F;
        text-transform: uppercase; letter-spacing: 0.4px; font-size: 11px;
    }
    .tz-tax-history tbody tr:last-child td { border-bottom: none; }
    .tz-tax-history .now {
        background: rgba(30,181,58,0.08); font-weight: 800; color: var(--c-tz-greend);
    }

    /* Wallet compatibility table */
    .tz-wallet {
        width: 100%; border-collapse: separate; border-spacing: 0;
        background: var(--c-bg-surface); border: 1px solid var(--c-border);
        border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
        font-size: 13px;
    }
    .tz-wallet th, .tz-wallet td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
    .tz-wallet thead th {
        background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
        font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
        color: var(--c-tz-blued); font-weight: 800;
    }
    .tz-wallet tbody tr:last-child td { border-bottom: none; }
    .tz-wallet tbody tr:hover { background: #F8FAFC; }
    .tz-wallet .yes { color: var(--c-tz-green); font-weight: 800; }
    .tz-wallet .no  { color: #B91C1C; font-weight: 800; }
    .tz-wallet .partial { color: var(--c-accent); font-weight: 800; }
    .tz-wallet .wlt {
        font-weight: 800; color: var(--c-text-h);
        display: flex; align-items: center; gap: 8px;
    }
    .tz-wallet .wlt-dot {
        width: 10px; height: 10px; border-radius: 50%; display: inline-block;
    }

    /* Editorial Kariakoo block */
    .tz-kariakoo {
        background:
            radial-gradient(circle at 90% 90%, rgba(252,209,22,0.18) 0%, transparent 55%),
            #0B2238;
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        margin-bottom: 48px;
        border: 1px solid #16314F;
    }
    .tz-kariakoo h2 { color: #fff; }
    .tz-kariakoo p { color: #B6CDDF; line-height: 1.75; margin: 0 0 14px; }
    .tz-kariakoo .ks-row {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 14px; margin-top: 22px; padding-top: 22px;
        border-top: 1px solid #16314F;
    }
    .tz-kariakoo .ks-stat { font-size: 12px; color: #80A0BD; }
    .tz-kariakoo .ks-stat strong { display: block; font-size: 20px; color: var(--c-tz-yellow); font-weight: 800; margin-bottom: 2px; }
    .tz-kariakoo-tag {
        display: inline-block;
        background: var(--c-tz-yellow); color: #0B2238;
        font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
        text-transform: uppercase; padding: 4px 9px;
        border-radius: 3px; margin-bottom: 10px;
    }

    /* Payment cards */
    .tz-pay {
        background: var(--c-bg-surface); border: 1px solid var(--c-border);
        border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm);
        position: relative; border-top: 3px solid var(--c-tz-blue);
    }
    .tz-pay.primary {
        border: 2px solid var(--c-tz-green); border-top-width: 2px;
        background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 60%);
    }
    .tz-pay .pay-tag {
        position: absolute; top: -10px; right: 14px;
        background: var(--c-tz-green); color: #fff;
        font-size: 10px; font-weight: 800; letter-spacing: 0.4px;
        padding: 3px 8px; border-radius: 3px;
    }
    .tz-pay .lg {
        width: 44px; height: 44px; border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        font-weight: 800; color: #fff; font-size: 10px;
    }
    .tz-pay .lg.mpesa  { background: var(--c-tz-green); }
    .tz-pay .lg.tigo   { background: #FF6B00; }
    .tz-pay .lg.airtel { background: #E60000; }
    .tz-pay .lg.halo   { background: #FBBF24; color:#000; }
    .tz-pay .lg.tpesa  { background: #4338CA; }
    .tz-pay .lg.bank   { background: #1F2937; }

    /* WHT Calculator */
    .tz-calc {
        background: linear-gradient(180deg, #ECFDF5 0%, #D1FAE5 100%);
        border: 1px solid var(--c-tz-green);
        border-radius: var(--radius-md);
        padding: 24px; margin-bottom: 40px;
    }
    .tz-calc h3 { font-size: 18px; font-weight: 800; color: var(--c-tz-greend); margin: 0 0 6px; }
    .tz-calc .crow { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 14px; }
    .tz-calc label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: var(--c-tz-greend);
        letter-spacing: 0.4px; margin-bottom: 4px;
    }
    .tz-calc input {
        width: 100%; padding: 10px 12px; border-radius: var(--radius-sm);
        border: 1px solid var(--c-tz-green); font-size: 15px; font-weight: 700;
        background: #fff; color: #0B2238;
    }
    .tz-calc .cout {
        margin-top: 18px; padding: 18px; background: #fff;
        border-radius: var(--radius-sm); border: 1px dashed var(--c-tz-greend);
        font-size: 14px; color: var(--c-tz-greend); line-height: 1.8;
    }
    .tz-calc .cout .row {
        display: flex; justify-content: space-between;
        padding: 4px 0; border-bottom: 1px dotted #BBF7D0;
    }
    .tz-calc .cout .row:last-child { border-bottom: none; padding-top: 8px; }
    .tz-calc .cout .label { color: #475569; font-size: 13px; }
    .tz-calc .cout .val { font-weight: 800; font-size: 15px; color: var(--c-tz-greend); }
    .tz-calc .cout .net .val { font-size: 22px; color: var(--c-tz-greend); }
    .tz-calc .cout .net .label { font-weight: 800; color: var(--c-text-h); }

    /* Vernacular */
    .tz-vern {
        font-style: italic;
        background: linear-gradient(90deg, rgba(252,209,22,0.22) 0%, transparent 100%);
        padding: 2px 6px;
        border-left: 2px solid var(--c-tz-yellow);
        margin-left: 2px;
    }

    /* Author note */
    .tz-author-note {
        background: #F8FAFC;
        border-left: 3px solid var(--c-tz-blue);
        padding: 14px 18px; margin: 24px 0;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-size: 14px; color: var(--c-text-p);
        line-height: 1.7; font-style: italic;
    }
    .tz-author-note strong { font-style: normal; color: var(--c-text-h); }

    .tz-faq summary::marker { color: var(--c-tz-green); }

/* === SOURCE: countries/uganda.php === */
:root {
        --c-ug-gold:  #FCDC04;
        --c-ug-goldd: #D4B902;
        --c-ug-black: #000000;
        --c-ug-red:   #D90000;
        --c-ug-ink:   #14110E;
    }

    .ug-hero {
        position: relative;
        color: #fff;
        padding: 46px 38px;
        border-radius: var(--radius-lg);
        margin-bottom: 32px;
        overflow: hidden;
        background:
            linear-gradient(115deg, #000 0%, #1a1407 38%, #2a2110 70%, #1a1407 100%);
    }
    .ug-hero::before {
        content: '';
        position: absolute;
        top: 0; right: 0; bottom: 0;
        width: 26%;
        background:
            linear-gradient(180deg,
                var(--c-ug-black) 0%,
                var(--c-ug-black) 30%,
                var(--c-ug-gold) 30%,
                var(--c-ug-gold) 34%,
                var(--c-ug-red)  34%,
                var(--c-ug-red)  64%,
                var(--c-ug-gold) 64%,
                var(--c-ug-gold) 68%,
                var(--c-ug-black) 68%,
                var(--c-ug-black) 100%);
        clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0.16;
    }
    .ug-hero::after {
        content: '';
        position: absolute;
        left: 0; right: 0; bottom: 0;
        height: 5px;
        background: linear-gradient(90deg,
            var(--c-ug-black) 0%, var(--c-ug-black) 22%,
            var(--c-ug-gold)  22%, var(--c-ug-gold)  34%,
            var(--c-ug-red)   34%, var(--c-ug-red)   66%,
            var(--c-ug-gold)  66%, var(--c-ug-gold)  78%,
            var(--c-ug-black) 78%, var(--c-ug-black) 100%);
    }
    .ug-hero-inner { position: relative; z-index: 1; }
    .ug-hero h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        margin: 0 0 12px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.45);
    }
    .ug-pill {
        display: inline-flex; align-items: center; gap: 6px;
        background: var(--c-ug-gold); color: #1a0f00;
        font-size: 11px; font-weight: 800; letter-spacing: 0.6px;
        text-transform: uppercase; padding: 5px 11px;
        border-radius: 3px; margin-bottom: 14px;
    }

    .ug-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
    .ug-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

    /* Licence freeze timeline mini-table */
    .ug-timeline {
        background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 100%);
        border: 1px solid var(--c-ug-gold);
        border-left: 4px solid var(--c-ug-goldd);
        border-radius: var(--radius-md);
        padding: 18px 22px;
        margin: 0 0 24px;
    }
    .ug-timeline h3, .ug-timeline h4 {
        font-size: 14px; font-weight: 800; color: #78350F;
        margin: 0 0 10px;
        display: flex; align-items: center; gap: 8px;
    }
    .ug-timeline table {
        width: 100%; border-collapse: collapse; font-size: 12.5px;
    }
    .ug-timeline th, .ug-timeline td {
        padding: 8px 10px; text-align: left; border-bottom: 1px solid #FCD34D;
        vertical-align: top;
    }
    .ug-timeline thead th {
        background: rgba(252,220,4,0.18); color: #78350F;
        text-transform: uppercase; letter-spacing: 0.3px; font-size: 11px;
        font-weight: 800;
    }
    .ug-timeline tbody tr:last-child td { border-bottom: none; }
    .ug-timeline .now {
        background: rgba(217,0,0,0.05);
    }
    .ug-timeline .now td { color: var(--c-text-h); font-weight: 700; }

    /* Wallet stack comparison */
    .ug-stack {
        width: 100%; border-collapse: separate; border-spacing: 0;
        background: var(--c-bg-surface); border: 1px solid var(--c-border);
        border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
        font-size: 13px;
    }
    .ug-stack th, .ug-stack td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
    .ug-stack thead th {
        background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 100%);
        font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
        color: #78350F; font-weight: 800;
    }
    .ug-stack tbody tr:last-child td { border-bottom: none; }
    .ug-stack .high  { color: var(--c-ug-goldd); font-weight: 800; }
    .ug-stack .ok    { color: #047857; font-weight: 800; }
    .ug-stack .low   { color: #B91C1C; font-weight: 800; }
    .ug-stack .wname { font-weight: 800; color: var(--c-text-h); }

    /* Editorial freeze block */
    .ug-freeze {
        background:
            radial-gradient(circle at 92% 8%, rgba(252,220,4,0.18) 0%, transparent 55%),
            radial-gradient(circle at 8% 92%, rgba(217,0,0,0.10) 0%, transparent 50%),
            #14110E;
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        margin-bottom: 48px;
        border: 1px solid #2A2218;
    }
    .ug-freeze h2 { color: #fff; }
    .ug-freeze p { color: #D6CDB8; line-height: 1.75; margin: 0 0 14px; }
    .ug-freeze .fr-row {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 14px; margin-top: 22px; padding-top: 22px;
        border-top: 1px solid #2A2218;
    }
    .ug-freeze .fr-stat { font-size: 12px; color: #968B70; }
    .ug-freeze .fr-stat strong { display: block; font-size: 20px; color: var(--c-ug-gold); font-weight: 800; margin-bottom: 2px; }
    .ug-freeze-tag {
        display: inline-block;
        background: var(--c-ug-red); color: #fff;
        font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
        text-transform: uppercase; padding: 4px 9px;
        border-radius: 3px; margin-bottom: 10px;
    }

    /* Payment cards */
    .ug-pay {
        background: var(--c-bg-surface); border: 1px solid var(--c-border);
        border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm);
        position: relative; border-top: 3px solid var(--c-ug-gold);
    }
    .ug-pay.primary {
        border: 2px solid var(--c-ug-goldd); border-top-width: 3px;
        background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 60%);
    }
    .ug-pay .pay-tag {
        position: absolute; top: -10px; right: 14px;
        background: var(--c-ug-goldd); color: #1a0f00;
        font-size: 10px; font-weight: 800; letter-spacing: 0.4px;
        padding: 3px 8px; border-radius: 3px;
    }
    .ug-pay .lg {
        width: 44px; height: 44px; border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        font-weight: 800; color: #fff; font-size: 11px;
    }
    .ug-pay .lg.mtn    { background: var(--c-ug-gold); color: #000; }
    .ug-pay .lg.airtel { background: var(--c-ug-red); }
    .ug-pay .lg.stanbic{ background: #1F4F8B; }
    .ug-pay .lg.bank   { background: #1F2937; }
    .ug-pay .lg.card   { background: #1A1F71; }

    /* Cap-stress calculator */
    .ug-calc {
        background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 100%);
        border: 1px solid var(--c-ug-gold);
        border-radius: var(--radius-md);
        padding: 24px; margin-bottom: 40px;
    }
    .ug-calc h3 { font-size: 18px; font-weight: 800; color: #78350F; margin: 0 0 6px; }
    .ug-calc .crow { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 14px; }
    .ug-calc label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: #78350F;
        letter-spacing: 0.4px; margin-bottom: 4px;
    }
    .ug-calc input {
        width: 100%; padding: 10px 12px; border-radius: var(--radius-sm);
        border: 1px solid var(--c-ug-gold); font-size: 15px; font-weight: 700;
        background: #fff; color: #1a0f00;
    }
    .ug-calc .cout {
        margin-top: 18px; padding: 18px; background: #fff;
        border-radius: var(--radius-sm); border: 1px dashed #B45309;
        font-size: 14px; color: #78350F; line-height: 1.8;
    }
    .ug-calc .cout .gauge {
        height: 10px; background: #FEF3C7; border-radius: 6px;
        margin: 12px 0 6px; overflow: hidden;
    }
    .ug-calc .cout .gauge-fill {
        height: 100%; background: linear-gradient(90deg, #16A34A 0%, var(--c-ug-gold) 60%, var(--c-ug-red) 100%);
        transition: width 0.25s ease;
    }
    .ug-calc .cout .summary {
        margin-top: 10px; padding-top: 10px; border-top: 1px dotted #FCD34D;
        font-size: 13px;
    }

    /* Marathon callout (Cheptegei) */
    .ug-marathon {
        background: linear-gradient(135deg, var(--c-ug-red) 0%, #8C0000 100%);
        color: #fff;
        border-radius: var(--radius-md);
        padding: 18px 22px;
        margin: 24px 0;
        display: flex; align-items: center; gap: 16px;
        flex-wrap: wrap;
    }
    .ug-marathon .m-icon {
        width: 48px; height: 48px;
        background: rgba(252,220,4,0.2);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }
    .ug-marathon h3 { font-size: 16px; font-weight: 800; margin: 0 0 4px; color: #fff; }
    .ug-marathon p { font-size: 13px; line-height: 1.6; margin: 0; opacity: 0.92; }

    /* Vernacular */
    .ug-vern {
        font-style: italic;
        background: linear-gradient(90deg, rgba(252,220,4,0.25) 0%, transparent 100%);
        padding: 2px 6px;
        border-left: 2px solid var(--c-ug-gold);
        margin-left: 2px;
    }

    /* Author note */
    .ug-author-note {
        background: #FFFBEB;
        border-left: 3px solid var(--c-ug-gold);
        padding: 14px 18px; margin: 24px 0;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-size: 14px; color: var(--c-text-p);
        line-height: 1.7; font-style: italic;
    }
    .ug-author-note strong { font-style: normal; color: var(--c-text-h); }

    .ug-faq summary::marker { color: var(--c-ug-goldd); }

/* === SOURCE: countries/zambia.php === */
:root {
        --c-zm-copper:  #EF7D00;
        --c-zm-copperd: #C46300;
        --c-zm-green:   #198A00;
        --c-zm-greend:  #0F6300;
        --c-zm-red:     #DE2010;
        --c-zm-ink:     #14140E;
    }

    .zm-hero {
        position: relative;
        color: #fff;
        padding: 46px 38px;
        border-radius: var(--radius-lg);
        margin-bottom: 32px;
        overflow: hidden;
        background:
            linear-gradient(118deg, var(--c-zm-greend) 0%, var(--c-zm-green) 55%, #115C00 100%);
    }
    .zm-hero::before {
        content: '';
        position: absolute;
        bottom: -60px; right: -60px;
        width: 240px; height: 240px;
        border-radius: 50%;
        background: radial-gradient(circle, var(--c-zm-copper) 0%, transparent 70%);
        opacity: 0.28;
    }
    .zm-hero::after {
        content: '';
        position: absolute;
        left: 0; right: 0; bottom: 0;
        height: 5px;
        background: linear-gradient(90deg,
            var(--c-zm-green) 0%, var(--c-zm-green) 25%,
            var(--c-zm-red)   25%, var(--c-zm-red)   30%,
            #000              30%, #000              35%,
            var(--c-zm-copper) 35%, var(--c-zm-copper) 100%);
    }
    .zm-hero-inner { position: relative; z-index: 1; }
    .zm-hero h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        margin: 0 0 12px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    .zm-pill {
        display: inline-flex; align-items: center; gap: 6px;
        background: var(--c-zm-copper); color: #1a0f00;
        font-size: 11px; font-weight: 800; letter-spacing: 0.6px;
        text-transform: uppercase; padding: 5px 11px;
        border-radius: 3px; margin-bottom: 14px;
    }

    .zm-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
    .zm-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

    /* Regulatory acts mini-table */
    .zm-acts {
        background: linear-gradient(180deg, #FFF7ED 0%, #FFEDD5 100%);
        border: 1px solid var(--c-zm-copper);
        border-left: 4px solid var(--c-zm-copperd);
        border-radius: var(--radius-md);
        padding: 18px 22px;
        margin: 0 0 24px;
    }
    .zm-acts h3, .zm-acts h4 {
        font-size: 14px; font-weight: 800; color: #7C2D12;
        margin: 0 0 10px;
        display: flex; align-items: center; gap: 8px;
    }
    .zm-acts table {
        width: 100%; border-collapse: collapse; font-size: 12.5px;
    }
    .zm-acts th, .zm-acts td {
        padding: 8px 10px; text-align: left; border-bottom: 1px solid #FED7AA;
        vertical-align: top;
    }
    .zm-acts thead th {
        background: rgba(239,125,0,0.16); color: #7C2D12;
        text-transform: uppercase; letter-spacing: 0.3px; font-size: 11px;
        font-weight: 800;
    }
    .zm-acts tbody tr:last-child td { border-bottom: none; }

    /* Wallet vs Bank table */
    .zm-rails {
        width: 100%; border-collapse: separate; border-spacing: 0;
        background: var(--c-bg-surface); border: 1px solid var(--c-border);
        border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
        font-size: 13px;
    }
    .zm-rails th, .zm-rails td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
    .zm-rails thead th {
        background: linear-gradient(180deg, #FFF7ED 0%, #FFEDD5 100%);
        font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
        color: #7C2D12; font-weight: 800;
    }
    .zm-rails tbody tr:last-child td { border-bottom: none; }
    .zm-rails .high { color: var(--c-zm-greend); font-weight: 800; }
    .zm-rails .mid  { color: #B45309; font-weight: 800; }
    .zm-rails .low  { color: #991B1B; font-weight: 800; }
    .zm-rails .rname {
        font-weight: 800; color: var(--c-text-h);
        display: flex; align-items: center; gap: 8px;
    }
    .zm-rails .rdot {
        width: 10px; height: 10px; border-radius: 50%; display: inline-block;
    }

    /* AFCON 2012 editorial block */
    .zm-afcon {
        background:
            radial-gradient(circle at 92% 8%, rgba(239,125,0,0.22) 0%, transparent 55%),
            radial-gradient(circle at 8% 92%, rgba(25,138,0,0.18) 0%, transparent 50%),
            #0E1F0B;
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        margin-bottom: 48px;
        border: 1px solid #1F3A1A;
    }
    .zm-afcon h2 { color: #fff; }
    .zm-afcon p { color: #C5D6BD; line-height: 1.75; margin: 0 0 14px; }
    .zm-afcon .af-row {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 14px; margin-top: 22px; padding-top: 22px;
        border-top: 1px solid #1F3A1A;
    }
    .zm-afcon .af-stat { font-size: 12px; color: #8FA686; }
    .zm-afcon .af-stat strong { display: block; font-size: 20px; color: var(--c-zm-copper); font-weight: 800; margin-bottom: 2px; }
    .zm-afcon-tag {
        display: inline-block;
        background: var(--c-zm-copper); color: #1a0f00;
        font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
        text-transform: uppercase; padding: 4px 9px;
        border-radius: 3px; margin-bottom: 10px;
    }

    /* Payment cards */
    .zm-pay {
        background: var(--c-bg-surface); border: 1px solid var(--c-border);
        border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm);
        position: relative; border-top: 3px solid var(--c-zm-copper);
    }
    .zm-pay.primary {
        border: 2px solid var(--c-zm-green); border-top: 3px solid var(--c-zm-green);
        background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 60%);
    }
    .zm-pay .pay-tag {
        position: absolute; top: -10px; right: 14px;
        background: var(--c-zm-green); color: #fff;
        font-size: 10px; font-weight: 800; letter-spacing: 0.4px;
        padding: 3px 8px; border-radius: 3px;
    }
    .zm-pay .lg {
        width: 44px; height: 44px; border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        font-weight: 800; color: #fff; font-size: 11px;
    }
    .zm-pay .lg.mtn    { background: #FFCB05; color: #000; }
    .zm-pay .lg.airtel { background: var(--c-zm-red); }
    .zm-pay .lg.zamtel { background: #00853F; }
    .zm-pay .lg.bank   { background: #1F4F8B; }
    .zm-pay .lg.card   { background: #1A1F71; }
    .zm-pay .lg.zampay { background: var(--c-zm-copper); }

    /* Settlement speed comparator calculator */
    .zm-calc {
        background: linear-gradient(180deg, #FFF7ED 0%, #FFEDD5 100%);
        border: 1px solid var(--c-zm-copper);
        border-radius: var(--radius-md);
        padding: 24px; margin-bottom: 40px;
    }
    .zm-calc h3 { font-size: 18px; font-weight: 800; color: #7C2D12; margin: 0 0 6px; }
    .zm-calc .crow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
    .zm-calc label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: #7C2D12;
        letter-spacing: 0.4px; margin-bottom: 4px;
    }
    .zm-calc input {
        width: 100%; padding: 10px 12px; border-radius: var(--radius-sm);
        border: 1px solid var(--c-zm-copper); font-size: 15px; font-weight: 700;
        background: #fff; color: #1a0f00;
    }
    .zm-calc .cout {
        margin-top: 18px; padding: 16px; background: #fff;
        border-radius: var(--radius-sm); border: 1px dashed var(--c-zm-copperd);
        font-size: 13px; color: #7C2D12; line-height: 1.7;
    }
    .zm-calc .rail-bar {
        display: grid; grid-template-columns: 130px 1fr 110px;
        align-items: center; gap: 10px; margin: 8px 0;
    }
    .zm-calc .rail-bar .label { font-weight: 800; color: var(--c-text-h); font-size: 13px; }
    .zm-calc .rail-bar .bar-track {
        height: 8px; background: #FED7AA; border-radius: 4px; overflow: hidden;
    }
    .zm-calc .rail-bar .bar-fill {
        height: 100%; background: linear-gradient(90deg, var(--c-zm-green) 0%, var(--c-zm-copper) 60%, var(--c-zm-red) 100%);
        transition: width 0.3s ease;
    }
    .zm-calc .rail-bar .info { font-size: 12px; color: #7C2D12; text-align: right; font-weight: 700; }

    /* Pools heritage callout */
    .zm-pools {
        background: linear-gradient(135deg, var(--c-zm-copper) 0%, var(--c-zm-copperd) 100%);
        color: #fff;
        border-radius: var(--radius-md);
        padding: 18px 22px;
        margin: 24px 0;
        display: flex; align-items: center; gap: 16px;
        flex-wrap: wrap;
    }
    .zm-pools .p-icon {
        width: 48px; height: 48px;
        background: rgba(0,0,0,0.18);
        border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
        font-weight: 800;
    }
    .zm-pools h3 { font-size: 16px; font-weight: 800; margin: 0 0 4px; color: #fff; }
    .zm-pools p { font-size: 13px; line-height: 1.6; margin: 0; opacity: 0.95; }

    /* Vernacular */
    .zm-vern {
        font-style: italic;
        background: linear-gradient(90deg, rgba(239,125,0,0.22) 0%, transparent 100%);
        padding: 2px 6px;
        border-left: 2px solid var(--c-zm-copper);
        margin-left: 2px;
    }

    /* Author note */
    .zm-author-note {
        background: #FFF7ED;
        border-left: 3px solid var(--c-zm-copper);
        padding: 14px 18px; margin: 24px 0;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-size: 14px; color: var(--c-text-p);
        line-height: 1.7; font-style: italic;
    }
    .zm-author-note strong { font-style: normal; color: var(--c-text-h); }

    .zm-faq summary::marker { color: var(--c-zm-copper); }

    /* ---- ZM v2.2 NEW WIDGETS (3-Network MoMo · BLLB Verifier · Super League Club Map) ---- */

    /* Shared widget container */
    .zm-momo-comp, .zm-bllb-verifier, .zm-club-map {
        background: linear-gradient(180deg, #FFF7ED 0%, #FFEDD5 100%);
        border: 1px solid var(--c-zm-copper);
        border-radius: var(--radius-md);
        padding: 22px;
        margin: 16px 0 22px;
    }

    /* W1 — 3-Network MoMo Settlement Comparator */
    .zm-mc-controls {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
        margin-bottom: 14px;
    }
    .zm-mc-controls label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: #7C2D12;
        letter-spacing: 0.4px; margin-bottom: 4px;
    }
    .zm-mc-controls select,
    .zm-mc-controls input {
        width: 100%; padding: 10px 12px;
        border-radius: var(--radius-sm); border: 1px solid var(--c-zm-copper);
        font-size: 14px; font-weight: 700; background: #fff; color: #1a0f00;
    }
    .zm-mc-result { margin-top: 6px; }
    .zm-mc-inner {
        background: #fff; border-radius: var(--radius-sm);
        border: 1px dashed var(--c-zm-copperd); padding: 14px 16px;
    }
    .zm-mc-route {
        display: flex; justify-content: space-between; align-items: baseline;
        gap: 12px; flex-wrap: wrap;
        padding-bottom: 10px; margin-bottom: 12px;
        border-bottom: 1px solid #FED7AA;
    }
    .zm-mc-route strong { font-size: 16px; color: var(--c-text-h); font-weight: 800; }
    .zm-mc-route-sub { font-size: 12px; color: #7C2D12; font-weight: 600; }
    .zm-mc-grid {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }
    .zm-mc-cell {
        background: #FFF7ED; border: 1px solid #FED7AA; border-radius: var(--radius-sm);
        padding: 10px 12px; text-align: left;
    }
    .zm-mc-cell small {
        display: block; font-size: 11px; color: #7C2D12;
        font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px;
        margin-bottom: 2px;
    }
    .zm-mc-cell strong { font-size: 16px; color: var(--c-text-h); font-weight: 800; display: block; }
    .zm-mc-cell span { font-size: 11px; color: #7C2D12; font-weight: 600; }
    .zm-mc-cell.zm-mc-net { background: #F0FDF4; border-color: #BBF7D0; }
    .zm-mc-cell.zm-mc-net strong { color: var(--c-zm-greend); }
    .zm-mc-note {
        margin: 12px 0 0; padding: 8px 12px;
        font-size: 12.5px; line-height: 1.6; font-weight: 600;
        border-radius: var(--radius-sm);
    }
    .zm-mc-note.success { background: #F0FDF4; color: var(--c-zm-greend); border-left: 3px solid var(--c-zm-green); }
    .zm-mc-note.warn    { background: #FEF2F2; color: #991B1B;            border-left: 3px solid var(--c-zm-red); }
    .zm-mc-note.mid     { background: #FFFBEB; color: #7C2D12;            border-left: 3px solid var(--c-zm-copperd); }

    /* W2 — BLLB Licence Register Verifier */
    .zm-bv-controls label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: #7C2D12;
        letter-spacing: 0.4px; margin-bottom: 6px;
    }
    .zm-bv-controls select {
        width: 100%; max-width: 420px; padding: 10px 12px;
        border-radius: var(--radius-sm); border: 1px solid var(--c-zm-copper);
        font-size: 14px; font-weight: 700; background: #fff; color: #1a0f00;
    }
    .zm-bv-result { margin-top: 14px; }
    .zm-bv-inner {
        background: #fff; border-radius: var(--radius-sm);
        border-left: 4px solid var(--c-zm-copper);
        padding: 14px 18px;
    }
    .zm-bv-inner.zm-bv-local  { border-color: var(--c-zm-green); background: #F0FDF4; }
    .zm-bv-inner.zm-bv-hybrid { border-color: var(--c-zm-copperd); background: #FFFBEB; }
    .zm-bv-inner.zm-bv-unknown{ border-color: #6B7280; background: #F9FAFB; }
    .zm-bv-status strong { display: block; font-size: 15px; font-weight: 800; color: var(--c-text-h); margin-bottom: 8px; }
    .zm-bv-inner.zm-bv-local  .zm-bv-status strong { color: var(--c-zm-greend); }
    .zm-bv-inner.zm-bv-hybrid .zm-bv-status strong { color: var(--c-zm-copperd); }
    .zm-bv-licence {
        display: flex; flex-direction: column;
        background: #fff; border: 1px solid #FED7AA; border-radius: var(--radius-sm);
        padding: 8px 12px; margin-bottom: 10px;
    }
    .zm-bv-licence small {
        font-size: 11px; color: #7C2D12; font-weight: 700;
        text-transform: uppercase; letter-spacing: 0.3px;
    }
    .zm-bv-licence strong { font-size: 14px; color: var(--c-text-h); font-weight: 700; margin-top: 2px; }
    .zm-bv-note { font-size: 13px; color: var(--c-text-p); line-height: 1.6; margin: 0; }

    /* W3 — Super League Club Coverage Map */
    .zm-cm-controls label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: #7C2D12;
        letter-spacing: 0.4px; margin-bottom: 6px;
    }
    .zm-cm-controls select {
        width: 100%; max-width: 460px; padding: 10px 12px;
        border-radius: var(--radius-sm); border: 1px solid var(--c-zm-copper);
        font-size: 14px; font-weight: 700; background: #fff; color: #1a0f00;
    }
    .zm-cm-result { margin-top: 14px; }
    .zm-cm-inner {
        background: #fff; border-radius: var(--radius-sm);
        border: 1px solid #FED7AA; padding: 16px 18px;
    }
    .zm-cm-head {
        display: flex; justify-content: space-between; align-items: baseline;
        gap: 12px; flex-wrap: wrap;
        padding-bottom: 12px; margin-bottom: 12px;
        border-bottom: 1px solid #FED7AA;
    }
    .zm-cm-head strong { font-size: 18px; color: var(--c-text-h); font-weight: 800; }
    .zm-cm-pin {
        display: inline-flex; align-items: center; gap: 6px;
        font-size: 12px; font-weight: 700; color: #7C2D12;
        background: #FFF7ED; border: 1px solid #FED7AA;
        border-radius: 999px; padding: 3px 10px;
    }
    .zm-cm-pin > span {
        display: inline-block; width: 9px; height: 9px;
        border-radius: 50%;
    }
    .zm-cm-rows { display: flex; flex-direction: column; gap: 6px; }
    .zm-cm-row {
        display: grid;
        grid-template-columns: 140px 1fr 50px;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        background: #FFF7ED; border-radius: var(--radius-sm);
        border-left: 3px solid #FED7AA;
        font-size: 13px;
    }
    .zm-cm-row .zm-cm-op { font-weight: 800; color: var(--c-text-h); }
    .zm-cm-row .zm-cm-bar {
        position: relative;
        height: 8px; background: #FED7AA; border-radius: 4px; overflow: hidden;
    }
    .zm-cm-row .zm-cm-bar-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--c-zm-copper) 0%, var(--c-zm-greend) 100%);
        transition: width 0.3s ease;
    }
    .zm-cm-row .zm-cm-score {
        font-weight: 800; color: var(--c-zm-copperd);
        text-align: right; font-size: 13px;
    }
    .zm-cm-row .zm-cm-tier {
        grid-column: 1 / -1;
        font-size: 11.5px; color: #7C2D12; font-weight: 600; font-style: italic;
        padding-top: 2px;
    }
    .zm-cm-row.zm-cm-t5 { border-left-color: var(--c-zm-greend); }
    .zm-cm-row.zm-cm-t4 { border-left-color: var(--c-zm-copperd); }
    .zm-cm-row.zm-cm-t3 { border-left-color: #B45309; }
    .zm-cm-row.zm-cm-t2 { border-left-color: var(--c-zm-red); }
    .zm-cm-note {
        margin: 14px 0 0; padding: 10px 12px;
        font-size: 12.5px; line-height: 1.6; color: #7C2D12; font-weight: 600;
        background: #FFF7ED; border-left: 3px solid var(--c-zm-copperd);
        border-radius: var(--radius-sm);
    }

    /* Section image figcaption parity with other countries (already global, but ensure ZM works) */
    .zm-h2 + .zm-sub a[href*="reviews/"] { color: var(--c-zm-copperd); font-weight: 700; }

/* === SOURCE: categories/aviator-sites.php === */
:root {
        --c-av-red:    #DC2626;
        --c-av-redd:   #991B1B;
        --c-av-amber:  #FACC15;
        --c-av-navy:   #0B1220;
        --c-av-sky:    #FEE2E2;
    }

    .av-hero {
        position: relative;
        color: #fff;
        padding: 46px 38px;
        border-radius: var(--radius-lg);
        margin-bottom: 32px;
        overflow: hidden;
        background:
            linear-gradient(118deg, var(--c-av-navy) 0%, #1F2937 55%, var(--c-av-redd) 100%);
    }
    .av-hero::before {
        /* upward swoosh evoking the plane climb */
        content: '';
        position: absolute;
        left: -8%; bottom: -20%;
        width: 65%; height: 160%;
        background: linear-gradient(35deg, transparent 0%, transparent 55%, var(--c-av-red) 56%, var(--c-av-red) 58%, transparent 59%);
        opacity: 0.32;
        transform: rotate(-2deg);
    }
    .av-hero::after {
        content: '';
        position: absolute;
        left: 0; right: 0; bottom: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--c-av-amber) 0%, var(--c-av-red) 100%);
    }
    .av-hero-inner { position: relative; z-index: 1; }
    .av-hero h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        margin: 0 0 12px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.35);
    }
    .av-pill {
        display: inline-flex; align-items: center; gap: 6px;
        background: var(--c-av-amber); color: #1a1300;
        font-size: 11px; font-weight: 800; letter-spacing: 0.6px;
        text-transform: uppercase; padding: 5px 11px;
        border-radius: 3px; margin-bottom: 14px;
    }

    .av-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
    .av-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

    /* Quick facts */
    .av-facts {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 14px;
        margin-bottom: 22px;
    }
    .av-fact-tile {
        background: var(--c-bg-surface);
        border: 1px solid var(--c-border);
        border-top: 3px solid var(--c-av-red);
        border-radius: var(--radius-md);
        padding: 18px;
        box-shadow: var(--shadow-sm);
    }
    .av-fact-tile small {
        font-size: 11px; font-weight: 700; color: var(--c-text-muted);
        text-transform: uppercase; letter-spacing: 0.5px;
    }
    .av-fact-tile div { font-size: 14px; font-weight: 700; color: var(--c-text-h); margin-top: 4px; line-height: 1.4; }

    /* Crash game comparison */
    .av-games {
        width: 100%; border-collapse: separate; border-spacing: 0;
        background: var(--c-bg-surface); border: 1px solid var(--c-border);
        border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
        font-size: 13px;
    }
    .av-games th, .av-games td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
    .av-games thead th {
        background: linear-gradient(180deg, var(--c-av-sky) 0%, #FECACA 100%);
        font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
        color: var(--c-av-redd); font-weight: 800;
    }
    .av-games tbody tr:last-child td { border-bottom: none; }
    .av-games .name {
        font-weight: 800; color: var(--c-text-h);
    }
    .av-games .vendor {
        display: inline-block; font-size: 11px; font-weight: 700;
        padding: 2px 8px; border-radius: 3px;
        background: var(--c-av-sky); color: var(--c-av-redd);
        margin-left: 6px;
    }

    /* Editorial block */
    .av-edit {
        background:
            radial-gradient(circle at 90% 10%, rgba(220,38,38,0.22) 0%, transparent 55%),
            var(--c-av-navy);
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        margin-bottom: 48px;
        border: 1px solid #1F2937;
    }
    .av-edit h2 { color: #fff; }
    .av-edit p { color: #CBD5E1; line-height: 1.75; margin: 0 0 14px; }
    .av-edit .e-row {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 14px; margin-top: 22px; padding-top: 22px;
        border-top: 1px solid #1F2937;
    }
    .av-edit .e-stat { font-size: 12px; color: #94A3B8; }
    .av-edit .e-stat strong { display: block; font-size: 20px; color: var(--c-av-amber); font-weight: 800; margin-bottom: 2px; }
    .av-edit-tag {
        display: inline-block;
        background: var(--c-av-amber); color: #1a1300;
        font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
        text-transform: uppercase; padding: 4px 9px;
        border-radius: 3px; margin-bottom: 10px;
    }

    /* Probability distribution chart */
    .av-dist-chart {
        background: var(--c-bg-surface);
        border: 1px solid var(--c-border);
        border-radius: var(--radius-md);
        padding: 22px;
        margin: 20px 0;
    }
    .av-dist-chart h3, .av-dist-chart h4 {
        font-size: 14px; font-weight: 800; color: var(--c-text-h);
        margin: 0 0 16px;
    }
    .av-dist-bar {
        display: grid;
        grid-template-columns: 100px 1fr 90px;
        align-items: center;
        gap: 12px;
        margin: 6px 0;
        font-size: 13px;
    }
    .av-dist-bar .b-label { font-weight: 700; color: var(--c-text-h); }
    .av-dist-bar .b-track {
        height: 12px; background: #F3F4F6; border-radius: 6px; overflow: hidden;
    }
    .av-dist-bar .b-fill {
        height: 100%; background: linear-gradient(90deg, #16A34A 0%, var(--c-av-amber) 60%, var(--c-av-red) 100%);
    }
    .av-dist-bar .b-pct { font-weight: 800; color: var(--c-av-redd); text-align: right; }

    /* Cashout safety calculator */
    .av-calc {
        background: linear-gradient(180deg, #FEF2F2 0%, #FEE2E2 100%);
        border: 1px solid var(--c-av-red);
        border-radius: var(--radius-md);
        padding: 24px; margin-bottom: 40px;
    }
    .av-calc h3 { font-size: 18px; font-weight: 800; color: var(--c-av-redd); margin: 0 0 6px; }
    .av-calc .crow { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 14px; }
    .av-calc label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: var(--c-av-redd);
        letter-spacing: 0.4px; margin-bottom: 4px;
    }
    .av-calc input {
        width: 100%; padding: 10px 12px; border-radius: var(--radius-sm);
        border: 1px solid var(--c-av-red); font-size: 15px; font-weight: 700;
        background: #fff; color: var(--c-av-navy);
    }
    .av-calc .cout {
        margin-top: 18px; padding: 18px; background: #fff;
        border-radius: var(--radius-sm); border: 1px dashed var(--c-av-redd);
        font-size: 14px; color: var(--c-av-redd); line-height: 1.8;
    }
    .av-calc .cout .row {
        display: flex; justify-content: space-between;
        padding: 4px 0; border-bottom: 1px dotted #FECACA;
    }
    .av-calc .cout .row:last-child { border-bottom: none; padding-top: 8px; }

    /* Vernacular */
    .av-vern {
        font-style: italic;
        background: linear-gradient(90deg, rgba(220,38,38,0.18) 0%, transparent 100%);
        padding: 2px 6px;
        border-left: 2px solid var(--c-av-red);
        margin-left: 2px;
    }

    /* Author note */
    .av-note {
        background: #FEF2F2;
        border-left: 3px solid var(--c-av-red);
        padding: 14px 18px; margin: 24px 0;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-size: 14px; color: var(--c-text-p);
        line-height: 1.7; font-style: italic;
    }
    .av-note strong { font-style: normal; color: var(--c-text-h); }

    .av-faq summary::marker { color: var(--c-av-red); }

/* === SOURCE: categories/free-bets.php === */
:root {
        --c-fb-amber:   #F59E0B;
        --c-fb-amberd:  #B45309;
        --c-fb-ink:     #1A0F00;
        --c-fb-cream:   #FEF3C7;
        --c-fb-emerald: #047857;
    }

    .fb-hero {
        position: relative;
        color: #fff;
        padding: 46px 38px;
        border-radius: var(--radius-lg);
        margin-bottom: 32px;
        overflow: hidden;
        background:
            linear-gradient(118deg, #78350F 0%, var(--c-fb-amberd) 50%, var(--c-fb-amber) 100%);
    }
    .fb-hero::before {
        /* coin-tone radial */
        content: '';
        position: absolute;
        top: -30%; right: -10%;
        width: 320px; height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 65%);
    }
    .fb-hero::after {
        content: '';
        position: absolute;
        left: 0; right: 0; bottom: 0;
        height: 4px;
        background: linear-gradient(90deg, #fff 0%, var(--c-fb-amber) 100%);
    }
    .fb-hero-inner { position: relative; z-index: 1; }
    .fb-hero h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        margin: 0 0 12px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    .fb-pill {
        display: inline-flex; align-items: center; gap: 6px;
        background: #fff; color: #1a1300;
        font-size: 11px; font-weight: 800; letter-spacing: 0.6px;
        text-transform: uppercase; padding: 5px 11px;
        border-radius: 3px; margin-bottom: 14px;
    }

    .fb-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
    .fb-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

    /* Quick facts */
    .fb-facts {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 14px;
        margin-bottom: 22px;
    }
    .fb-fact-tile {
        background: var(--c-bg-surface);
        border: 1px solid var(--c-border);
        border-top: 3px solid var(--c-fb-amber);
        border-radius: var(--radius-md);
        padding: 18px;
        box-shadow: var(--shadow-sm);
    }
    .fb-fact-tile small {
        font-size: 11px; font-weight: 700; color: var(--c-text-muted);
        text-transform: uppercase; letter-spacing: 0.5px;
    }
    .fb-fact-tile div { font-size: 14px; font-weight: 700; color: var(--c-text-h); margin-top: 4px; line-height: 1.4; }

    /* Bonus comparison table */
    .fb-cmp {
        width: 100%; border-collapse: separate; border-spacing: 0;
        background: var(--c-bg-surface); border: 1px solid var(--c-border);
        border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
        font-size: 13px;
    }
    .fb-cmp th, .fb-cmp td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
    .fb-cmp thead th {
        background: linear-gradient(180deg, var(--c-fb-cream) 0%, #FDE68A 100%);
        font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
        color: var(--c-fb-amberd); font-weight: 800;
    }
    .fb-cmp tbody tr:last-child td { border-bottom: none; }
    .fb-cmp .good  { color: var(--c-fb-emerald); font-weight: 800; }
    .fb-cmp .mid   { color: var(--c-fb-amberd); font-weight: 800; }
    .fb-cmp .bad   { color: #B91C1C; font-weight: 800; }
    .fb-cmp .op    { font-weight: 800; color: var(--c-text-h); }

    /* Bonus type taxonomy */
    .fb-tax {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 14px;
        margin: 20px 0;
    }
    .fb-tax-card {
        background: var(--c-bg-surface);
        border: 1px solid var(--c-border);
        border-left: 4px solid var(--c-fb-amber);
        border-radius: var(--radius-md);
        padding: 16px;
    }
    .fb-tax-card h3, .fb-tax-card h4 {
        font-size: 14px; font-weight: 800; color: var(--c-text-h);
        margin: 0 0 6px;
    }
    .fb-tax-card p { font-size: 12.5px; color: var(--c-text-p); line-height: 1.6; margin: 0; }

    /* Editorial block */
    .fb-edit {
        background:
            radial-gradient(circle at 92% 12%, rgba(245,158,11,0.20) 0%, transparent 55%),
            radial-gradient(circle at 8% 88%, rgba(4,120,87,0.12) 0%, transparent 50%),
            #1A0F00;
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        margin-bottom: 48px;
        border: 1px solid #3A2401;
    }
    .fb-edit h2 { color: #fff; }
    .fb-edit p { color: #FDE68A; line-height: 1.75; margin: 0 0 14px; }
    .fb-edit .e-row {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 14px; margin-top: 22px; padding-top: 22px;
        border-top: 1px solid #3A2401;
    }
    .fb-edit .e-stat { font-size: 12px; color: #FCD34D; }
    .fb-edit .e-stat strong { display: block; font-size: 20px; color: #fff; font-weight: 800; margin-bottom: 2px; }
    .fb-edit-tag {
        display: inline-block;
        background: #fff; color: var(--c-fb-amberd);
        font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
        text-transform: uppercase; padding: 4px 9px;
        border-radius: 3px; margin-bottom: 10px;
    }

    /* Rollover survival calculator */
    .fb-calc {
        background: linear-gradient(180deg, var(--c-fb-cream) 0%, #FDE68A 100%);
        border: 1px solid var(--c-fb-amber);
        border-radius: var(--radius-md);
        padding: 24px; margin-bottom: 40px;
    }
    .fb-calc h3 { font-size: 18px; font-weight: 800; color: var(--c-fb-amberd); margin: 0 0 6px; }
    .fb-calc .crow { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 14px; }
    .fb-calc label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: var(--c-fb-amberd);
        letter-spacing: 0.4px; margin-bottom: 4px;
    }
    .fb-calc input {
        width: 100%; padding: 10px 12px; border-radius: var(--radius-sm);
        border: 1px solid var(--c-fb-amber); font-size: 15px; font-weight: 700;
        background: #fff; color: var(--c-fb-ink);
    }
    .fb-calc .cout {
        margin-top: 18px; padding: 18px; background: #fff;
        border-radius: var(--radius-sm); border: 1px dashed var(--c-fb-amberd);
        font-size: 14px; color: var(--c-fb-amberd); line-height: 1.8;
    }
    .fb-calc .cout .row {
        display: flex; justify-content: space-between;
        padding: 4px 0; border-bottom: 1px dotted #FCD34D;
    }
    .fb-calc .cout .row:last-child { border-bottom: none; padding-top: 8px; }
    .fb-calc .cout .row .v { font-weight: 800; }

    /* Vernacular */
    .fb-vern {
        font-style: italic;
        background: linear-gradient(90deg, rgba(245,158,11,0.20) 0%, transparent 100%);
        padding: 2px 6px;
        border-left: 2px solid var(--c-fb-amber);
        margin-left: 2px;
    }

    /* Author note */
    .fb-note {
        background: var(--c-fb-cream);
        border-left: 3px solid var(--c-fb-amber);
        padding: 14px 18px; margin: 24px 0;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-size: 14px; color: var(--c-text-p);
        line-height: 1.7; font-style: italic;
    }
    .fb-note strong { font-style: normal; color: var(--c-text-h); }

    .fb-faq summary::marker { color: var(--c-fb-amberd); }

/* === SOURCE: categories/instant-withdrawals.php === */
:root {
        --c-ip-green:   #16A34A;
        --c-ip-greend:  #14532D;
        --c-ip-amber:   #F59E0B;
        --c-ip-ink:     #052E16;
        --c-ip-mint:    #D1FAE5;
    }

    .ip-hero {
        position: relative;
        color: #fff;
        padding: 46px 38px;
        border-radius: var(--radius-lg);
        margin-bottom: 32px;
        overflow: hidden;
        background:
            linear-gradient(118deg, var(--c-ip-greend) 0%, var(--c-ip-green) 60%, #15803D 100%);
    }
    .ip-hero::before {
        content: '';
        position: absolute;
        top: -40%; right: -10%;
        width: 320px; height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(245,158,11,0.45) 0%, transparent 65%);
    }
    .ip-hero::after {
        content: '';
        position: absolute;
        left: 0; right: 0; bottom: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--c-ip-amber) 0%, var(--c-ip-green) 100%);
    }
    .ip-hero-inner { position: relative; z-index: 1; }
    .ip-hero h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        margin: 0 0 12px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    .ip-pill {
        display: inline-flex; align-items: center; gap: 6px;
        background: var(--c-ip-amber); color: #1a1300;
        font-size: 11px; font-weight: 800; letter-spacing: 0.6px;
        text-transform: uppercase; padding: 5px 11px;
        border-radius: 3px; margin-bottom: 14px;
    }

    .ip-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
    .ip-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

    /* Quick facts */
    .ip-facts {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 14px;
        margin-bottom: 22px;
    }
    .ip-fact-tile {
        background: var(--c-bg-surface);
        border: 1px solid var(--c-border);
        border-top: 3px solid var(--c-ip-green);
        border-radius: var(--radius-md);
        padding: 18px;
        box-shadow: var(--shadow-sm);
    }
    .ip-fact-tile small {
        font-size: 11px; font-weight: 700; color: var(--c-text-muted);
        text-transform: uppercase; letter-spacing: 0.5px;
    }
    .ip-fact-tile div { font-size: 14px; font-weight: 700; color: var(--c-text-h); margin-top: 4px; line-height: 1.4; }

    /* Settlement band table */
    .ip-bands {
        width: 100%; border-collapse: separate; border-spacing: 0;
        background: var(--c-bg-surface); border: 1px solid var(--c-border);
        border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
        font-size: 13px;
    }
    .ip-bands th, .ip-bands td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
    .ip-bands thead th {
        background: linear-gradient(180deg, var(--c-ip-mint) 0%, #A7F3D0 100%);
        font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
        color: var(--c-ip-greend); font-weight: 800;
    }
    .ip-bands tbody tr:last-child td { border-bottom: none; }
    .ip-bands .fast    { color: var(--c-ip-green); font-weight: 800; }
    .ip-bands .mid     { color: var(--c-ip-amber); font-weight: 800; }
    .ip-bands .slow    { color: #B91C1C; font-weight: 800; }
    .ip-bands .op      { font-weight: 800; color: var(--c-text-h); }

    /* KYC mini-table */
    .ip-kyc {
        background: linear-gradient(180deg, var(--c-ip-mint) 0%, #A7F3D0 100%);
        border: 1px solid var(--c-ip-green);
        border-left: 4px solid var(--c-ip-greend);
        border-radius: var(--radius-md);
        padding: 18px 22px;
        margin: 0 0 24px;
    }
    .ip-kyc h3, .ip-kyc h4 {
        font-size: 14px; font-weight: 800; color: var(--c-ip-greend);
        margin: 0 0 10px;
        display: flex; align-items: center; gap: 8px;
    }
    .ip-kyc table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
    .ip-kyc th, .ip-kyc td {
        padding: 8px 10px; text-align: left; border-bottom: 1px solid #6EE7B7;
    }
    .ip-kyc thead th {
        background: rgba(22,163,74,0.16); color: var(--c-ip-greend);
        text-transform: uppercase; letter-spacing: 0.3px; font-size: 11px;
        font-weight: 800;
    }
    .ip-kyc tbody tr:last-child td { border-bottom: none; }

    /* Editorial */
    .ip-edit {
        background:
            radial-gradient(circle at 90% 10%, rgba(22,163,74,0.18) 0%, transparent 55%),
            radial-gradient(circle at 8% 92%, rgba(245,158,11,0.12) 0%, transparent 50%),
            #052E16;
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        margin-bottom: 48px;
        border: 1px solid #14532D;
    }
    .ip-edit h2 { color: #fff; }
    .ip-edit p { color: #BBF7D0; line-height: 1.75; margin: 0 0 14px; }
    .ip-edit .e-row {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 14px; margin-top: 22px; padding-top: 22px;
        border-top: 1px solid #14532D;
    }
    .ip-edit .e-stat { font-size: 12px; color: #6EE7B7; }
    .ip-edit .e-stat strong { display: block; font-size: 20px; color: var(--c-ip-amber); font-weight: 800; margin-bottom: 2px; }
    .ip-edit-tag {
        display: inline-block;
        background: var(--c-ip-amber); color: #1a1300;
        font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
        text-transform: uppercase; padding: 4px 9px;
        border-radius: 3px; margin-bottom: 10px;
    }

    /* Speed estimator calculator */
    .ip-calc {
        background: linear-gradient(180deg, #ECFDF5 0%, var(--c-ip-mint) 100%);
        border: 1px solid var(--c-ip-green);
        border-radius: var(--radius-md);
        padding: 24px; margin-bottom: 40px;
    }
    .ip-calc h3 { font-size: 18px; font-weight: 800; color: var(--c-ip-greend); margin: 0 0 6px; }
    .ip-calc .crow { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 14px; }
    .ip-calc label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: var(--c-ip-greend);
        letter-spacing: 0.4px; margin-bottom: 4px;
    }
    .ip-calc input, .ip-calc select {
        width: 100%; padding: 10px 12px; border-radius: var(--radius-sm);
        border: 1px solid var(--c-ip-green); font-size: 15px; font-weight: 700;
        background: #fff; color: var(--c-ip-ink);
    }
    .ip-calc .cout {
        margin-top: 18px; padding: 18px; background: #fff;
        border-radius: var(--radius-sm); border: 1px dashed var(--c-ip-greend);
        font-size: 14px; color: var(--c-ip-greend); line-height: 1.8;
    }
    .ip-calc .cout .row {
        display: flex; justify-content: space-between;
        padding: 4px 0; border-bottom: 1px dotted #6EE7B7;
    }
    .ip-calc .cout .row:last-child { border-bottom: none; padding-top: 8px; }
    .ip-calc .cout .row .v { font-weight: 800; }

    /* Vernacular */
    .ip-vern {
        font-style: italic;
        background: linear-gradient(90deg, rgba(22,163,74,0.18) 0%, transparent 100%);
        padding: 2px 6px;
        border-left: 2px solid var(--c-ip-green);
        margin-left: 2px;
    }

    /* Author note */
    .ip-note {
        background: #ECFDF5;
        border-left: 3px solid var(--c-ip-green);
        padding: 14px 18px; margin: 24px 0;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-size: 14px; color: var(--c-text-p);
        line-height: 1.7; font-style: italic;
    }
    .ip-note strong { font-style: normal; color: var(--c-text-h); }

    .ip-faq summary::marker { color: var(--c-ip-green); }

/* === SOURCE: categories/mobile-apps.php === */
:root {
        --c-ma-blue:   #3B82F6;
        --c-ma-blued:  #1D4ED8;
        --c-ma-ink:    #0F172A;
        --c-ma-sky:    #DBEAFE;
        --c-ma-amber:  #F59E0B;
    }

    .ma-hero {
        position: relative;
        color: #fff;
        padding: 46px 38px;
        border-radius: var(--radius-lg);
        margin-bottom: 32px;
        overflow: hidden;
        background:
            linear-gradient(118deg, #1E3A8A 0%, var(--c-ma-blued) 50%, var(--c-ma-blue) 100%);
    }
    .ma-hero::before {
        content: '';
        position: absolute;
        top: 0; right: 0; bottom: 0;
        width: 30%;
        background:
            repeating-linear-gradient(
                45deg,
                transparent 0,
                transparent 14px,
                rgba(255,255,255,0.05) 14px,
                rgba(255,255,255,0.05) 28px
            );
    }
    .ma-hero::after {
        content: '';
        position: absolute;
        left: 0; right: 0; bottom: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--c-ma-amber) 0%, transparent 100%);
    }
    .ma-hero-inner { position: relative; z-index: 1; }
    .ma-hero h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        margin: 0 0 12px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    .ma-pill {
        display: inline-flex; align-items: center; gap: 6px;
        background: var(--c-ma-amber); color: #1a1300;
        font-size: 11px; font-weight: 800; letter-spacing: 0.6px;
        text-transform: uppercase; padding: 5px 11px;
        border-radius: 3px; margin-bottom: 14px;
    }

    .ma-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
    .ma-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

    /* Distribution comparison table */
    .ma-dist {
        width: 100%; border-collapse: separate; border-spacing: 0;
        background: var(--c-bg-surface); border: 1px solid var(--c-border);
        border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
        font-size: 13px;
    }
    .ma-dist th, .ma-dist td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
    .ma-dist thead th {
        background: linear-gradient(180deg, var(--c-ma-sky) 0%, #BFDBFE 100%);
        font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
        color: var(--c-ma-blued); font-weight: 800;
    }
    .ma-dist tbody tr:last-child td { border-bottom: none; }
    .ma-dist .ok  { color: #16A34A; font-weight: 800; }
    .ma-dist .no  { color: #B91C1C; font-weight: 800; }
    .ma-dist .p   { color: #B45309; font-weight: 800; }
    .ma-dist .op  { font-weight: 800; color: var(--c-text-h); }

    /* App fact tiles */
    .ma-facts {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 14px;
        margin-bottom: 22px;
    }
    .ma-fact-tile {
        background: var(--c-bg-surface);
        border: 1px solid var(--c-border);
        border-left: 4px solid var(--c-ma-blue);
        border-radius: var(--radius-md);
        padding: 18px;
        box-shadow: var(--shadow-sm);
    }
    .ma-fact-tile small {
        font-size: 11px; font-weight: 700; color: var(--c-text-muted);
        text-transform: uppercase; letter-spacing: 0.5px;
    }
    .ma-fact-tile div { font-size: 14px; font-weight: 700; color: var(--c-text-h); margin-top: 4px; line-height: 1.4; }

    /* Editorial PWA block */
    .ma-pwa {
        background:
            radial-gradient(circle at 90% 10%, rgba(59,130,246,0.22) 0%, transparent 55%),
            #0F172A;
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        margin-bottom: 48px;
        border: 1px solid #1E293B;
    }
    .ma-pwa h2 { color: #fff; }
    .ma-pwa p { color: #BFDBFE; line-height: 1.75; margin: 0 0 14px; }
    .ma-pwa .pwa-row {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 14px; margin-top: 22px; padding-top: 22px;
        border-top: 1px solid #1E293B;
    }
    .ma-pwa .pwa-stat { font-size: 12px; color: #93C5FD; }
    .ma-pwa .pwa-stat strong { display: block; font-size: 20px; color: var(--c-ma-amber); font-weight: 800; margin-bottom: 2px; }
    .ma-pwa-tag {
        display: inline-block;
        background: var(--c-ma-amber); color: #1a1300;
        font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
        text-transform: uppercase; padding: 4px 9px;
        border-radius: 3px; margin-bottom: 10px;
    }

    /* Data cost calculator */
    .ma-calc {
        background: linear-gradient(180deg, var(--c-ma-sky) 0%, #BFDBFE 100%);
        border: 1px solid var(--c-ma-blue);
        border-radius: var(--radius-md);
        padding: 24px; margin-bottom: 40px;
    }
    .ma-calc h3 { font-size: 18px; font-weight: 800; color: var(--c-ma-blued); margin: 0 0 6px; }
    .ma-calc .crow { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 14px; }
    .ma-calc label {
        display: block; font-size: 11px; font-weight: 800;
        text-transform: uppercase; color: var(--c-ma-blued);
        letter-spacing: 0.4px; margin-bottom: 4px;
    }
    .ma-calc input, .ma-calc select {
        width: 100%; padding: 10px 12px; border-radius: var(--radius-sm);
        border: 1px solid var(--c-ma-blue); font-size: 15px; font-weight: 700;
        background: #fff; color: #0F172A;
    }
    .ma-calc .cout {
        margin-top: 18px; padding: 16px; background: #fff;
        border-radius: var(--radius-sm); border: 1px dashed var(--c-ma-blued);
        font-size: 13px; color: var(--c-ma-blued); line-height: 1.7;
    }
    .ma-calc .cout .key {
        display: flex; justify-content: space-between;
        padding: 6px 0; border-bottom: 1px dotted #BFDBFE;
    }
    .ma-calc .cout .key:last-child { border-bottom: none; }
    .ma-calc .cout .key .l { color: #475569; font-size: 13px; }
    .ma-calc .cout .key .v { font-weight: 800; color: var(--c-ma-blued); }
    .ma-calc .cout .key.bottom .v { font-size: 18px; color: #166534; }
    .ma-calc .cout .key.bottom .l { font-weight: 800; color: var(--c-text-h); }

    /* Author note */
    .ma-note {
        background: var(--c-ma-sky);
        border-left: 3px solid var(--c-ma-blue);
        padding: 14px 18px; margin: 24px 0;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-size: 14px; color: var(--c-text-p);
        line-height: 1.7; font-style: italic;
    }
    .ma-note strong { font-style: normal; color: var(--c-text-h); }

    /* Vernacular */
    .ma-vern {
        font-style: italic;
        background: linear-gradient(90deg, rgba(59,130,246,0.18) 0%, transparent 100%);
        padding: 2px 6px;
        border-left: 2px solid var(--c-ma-blue);
        margin-left: 2px;
    }

    .ma-faq summary::marker { color: var(--c-ma-blue); }

/* ==========================================================================
   MODULAR BLOCK PATTERNS LIBRARY (content-writing rule v2)
   Shared across all country + category pages.
   ========================================================================== */

/* A. Quick Verdict callout */
.quick-verdict {
    background: linear-gradient(135deg, #ECFEFF 0%, #F0FDFA 100%);
    border: 1px solid #A5F3FC;
    border-left: 4px solid #0891B2;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 18px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #0E7490;
}
.quick-verdict strong { color: #155E75; }

/* B. Pros / Cons two-column */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 22px 0;
}
@media (max-width: 600px) {
    .pros-cons { grid-template-columns: 1fr; }
}
.pros-cons .pros, .pros-cons .cons {
    background: var(--c-bg-surface);
    border-radius: 10px;
    padding: 18px 20px;
    border: 1px solid var(--c-border);
}
.pros-cons .pros { border-top: 3px solid #10B981; }
.pros-cons .cons { border-top: 3px solid #EF4444; }
.pros-cons h4 {
    font-size: 13px;
    font-weight: 800;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.pros-cons .pros h4 { color: #065F46; }
.pros-cons .cons h4 { color: #991B1B; }
.pros-cons ul { padding-left: 0; list-style: none; margin: 0; }
.pros-cons li {
    padding: 6px 0 6px 22px;
    font-size: 13px;
    color: var(--c-text-p);
    line-height: 1.55;
    position: relative;
}
.pros-cons .pros li::before {
    content: "✓"; position: absolute; left: 0; top: 6px;
    color: #10B981; font-weight: 800;
}
.pros-cons .cons li::before {
    content: "✗"; position: absolute; left: 0; top: 6px;
    color: #EF4444; font-weight: 800;
}

/* C. At-a-Glance mini table */
.at-a-glance {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 16px 0 22px;
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    overflow: hidden;
}
.at-a-glance th, .at-a-glance td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.at-a-glance tr:last-child th, .at-a-glance tr:last-child td { border-bottom: none; }
.at-a-glance th {
    background: #F8FAFC;
    color: var(--c-text-muted);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    width: 40%;
}
.at-a-glance td {
    color: var(--c-text-h);
    font-weight: 600;
}

/* D. Bottom Line pull-out */
.bottom-line {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-left: 4px solid #D97706;
    border-radius: 8px;
    padding: 12px 18px;
    margin: 18px 0;
    font-size: 14px;
    line-height: 1.65;
    color: #78350F;
}
.bottom-line strong { color: #92400E; }

/* E. How We Tested transparency box */
.how-we-tested {
    background: var(--c-bg-surface);
    border: 1px dashed var(--c-border);
    border-radius: 8px;
    padding: 12px 18px;
    margin: 18px 0;
    font-size: 13px;
    color: var(--c-text-p);
}
.how-we-tested summary {
    font-weight: 700;
    color: var(--c-text-h);
    cursor: pointer;
    padding: 4px 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.how-we-tested summary::-webkit-details-marker { display: none; }
.how-we-tested summary::before { content: "🔬"; font-size: 16px; }
.how-we-tested[open] summary { margin-bottom: 8px; }
.how-we-tested p {
    margin: 0;
    line-height: 1.7;
    color: var(--c-text-p);
}

/* F. Versus Strip head-to-head */
.vs-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 20px 0;
}
.vs-cell {
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 16px 14px;
    text-align: center;
}
.vs-cell h5, .vs-cell .vs-cell-title {
    display: block;
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-h);
}
.vs-cell .vs-metric {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--c-brand-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}
.vs-cell small {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* G. Field Note real-world anecdote */
.field-note {
    background: #FAFAFA;
    border-left: 4px solid #6366F1;
    border-radius: 0 8px 8px 0;
    padding: 12px 18px;
    margin: 20px 0;
}
.field-note-tag {
    display: inline-block;
    background: #6366F1;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
}
.field-note p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--c-text-p);
    font-style: italic;
}

/* H. Section Verified mini-stamp */
.section-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #047857;
    font-weight: 700;
    background: #ECFDF5;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 8px;
}
.section-verified svg { color: #10B981; }

/* I. Best-in-Class Award Cards */
.best-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 20px 0 28px;
}
.best-card {
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: var(--transition);
}
.best-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    border-color: var(--c-brand);
}
.best-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.best-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-text-h);
    margin: 0 0 8px;
}
.best-card p {
    font-size: 13px;
    color: var(--c-text-p);
    line-height: 1.6;
    margin: 0 0 12px;
}
.best-card a {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-brand-dark);
    text-decoration: none;
}
.best-card a:hover { text-decoration: underline; }

/* J. Comparison Table full */
.comparison-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid var(--c-border);
    border-radius: 10px;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: var(--c-bg-surface);
    min-width: 600px;
}
.comparison-table thead { background: #F8FAFC; }
.comparison-table th {
    padding: 12px 14px;
    text-align: left;
    font-size: 12px;
    font-weight: 800;
    color: var(--c-text-h);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--c-border);
}
.comparison-table td {
    padding: 12px 14px;
    color: var(--c-text-p);
    border-bottom: 1px solid var(--c-border);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: #FAFAFA; }
.comparison-table td:first-child {
    font-weight: 700;
    color: var(--c-text-h);
}

/* K. Mythbuster block */
.mythbuster {
    background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%);
    border: 1px solid #F9A8D4;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 22px 0;
}
.mythbuster p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.65;
    color: #831843;
}
.mythbuster p:last-child { margin-bottom: 0; }
.mythbuster strong {
    color: #BE185D;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 11px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 2px;
    margin-right: 6px;
}

/* ==========================================================================
   KENYA-SPECIFIC WIDGETS (Stage 3 batch 1)
   Widget 1: H2H Comparator · Widget 3: Tax Timeline · Widget 5: Jackpot Probability
   ========================================================================== */

/* Widget 1: Operator H2H Comparator */
.ke-h2h-comparator {
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 20px;
    margin: 22px 0;
}
.ke-h2h-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: end;
    margin-bottom: 20px;
}
@media (max-width: 600px) {
    .ke-h2h-controls { grid-template-columns: 1fr; gap: 10px; }
    .ke-h2h-vs { display: none; }
}
.ke-h2h-controls label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.ke-h2h-controls select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}
.ke-h2h-vs {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-ke-mpesa);
    padding-bottom: 10px;
    text-align: center;
}
.ke-h2h-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.ke-h2h-table th, .ke-h2h-table td {
    padding: 10px 12px;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
}
.ke-h2h-table tr:last-child th, .ke-h2h-table tr:last-child td { border-bottom: none; }
.ke-h2h-table th:first-child, .ke-h2h-table td:first-child {
    text-align: left;
    color: var(--c-text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 700;
    width: 35%;
}
.ke-h2h-table td:not(:first-child) {
    font-weight: 700;
    color: var(--c-text-h);
}
.ke-h2h-table .winner {
    background: #ECFDF5;
    color: #047857;
}

/* Widget 3: Tax Timeline Slider */
.ke-tax-timeline {
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 22px;
    margin: 22px 0;
}
.ke-tt-slider-wrap {
    margin-bottom: 18px;
}
.ke-tt-slider-wrap label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.ke-tt-year {
    font-size: 26px;
    font-weight: 800;
    color: var(--c-ke-mpesa);
    text-transform: none;
    letter-spacing: 0;
}
.ke-tt-slider {
    width: 100%;
    accent-color: var(--c-ke-mpesa);
}
.ke-tt-rates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}
.ke-tt-rate {
    background: #F8FAFC;
    border-radius: 8px;
    padding: 12px 14px;
}
.ke-tt-rate-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.ke-tt-rate-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--c-text-h);
    margin-top: 2px;
}
.ke-tt-impact {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    color: #065F46;
    line-height: 1.6;
}
.ke-tt-impact strong { color: #047857; }
.ke-tt-note {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-top: 8px;
    font-style: italic;
}

/* Widget 5: Mega Jackpot Probability Calculator */
.ke-jackpot-calc {
    background: linear-gradient(180deg, var(--c-bg-surface) 0%, #FAFAFA 100%);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 22px;
    margin: 22px 0;
}
.ke-jp-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}
.ke-jp-input label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.ke-jp-input input {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
}
.ke-jp-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}
.ke-jp-result {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}
.ke-jp-result.warn { border-color: #FBBF24; background: #FFFBEB; }
.ke-jp-result.danger { border-color: #FCA5A5; background: #FEF2F2; }
.ke-jp-result.good { border-color: #6EE7B7; background: #ECFDF5; }
.ke-jp-result-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.ke-jp-result-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-text-h);
    margin: 4px 0 2px;
    line-height: 1.1;
}
.ke-jp-result.warn .ke-jp-result-value { color: #92400E; }
.ke-jp-result.danger .ke-jp-result-value { color: #991B1B; }
.ke-jp-result.good .ke-jp-result-value { color: #065F46; }
.ke-jp-result-sub {
    font-size: 11px;
    color: var(--c-text-muted);
}

/* ==========================================================================
   E-E-A-T AUTHOR + REVIEWER BYLINE (every country/category page)
   ========================================================================== */
.abg-byline {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 14px 18px;
    margin: 0 0 24px;
    font-size: 13px;
}
.abg-byline-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--c-brand-dark);
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.abg-byline-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.abg-byline-avatar .abg-initials {
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.abg-byline-body { flex: 1; min-width: 0; line-height: 1.5; }
.abg-byline-row { color: var(--c-text-p); font-size: 13px; margin-bottom: 2px; }
.abg-byline-label {
    color: var(--c-text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-right: 2px;
}
.abg-byline-author {
    color: var(--c-brand-dark);
    font-weight: 700;
    text-decoration: none;
}
.abg-byline-author:hover { text-decoration: underline; }
.abg-byline-reviewer { font-size: 12px; color: var(--c-text-muted); }
.abg-byline-reviewer a { color: var(--c-brand-dark); text-decoration: none; }
.abg-byline-reviewer a:hover { text-decoration: underline; }
.abg-byline-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--c-text-muted);
    margin-top: 4px;
    flex-wrap: wrap;
}
.abg-byline-meta svg {
    color: var(--c-brand);
    flex-shrink: 0;
}

/* ==========================================================================
   PAGE TABLE OF CONTENTS (long content nav, mobile-friendly)
   ========================================================================== */
.page-toc {
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 0;
    margin: 0 0 28px;
    overflow: hidden;
}
.page-toc-summary {
    padding: 14px 18px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--c-text-h);
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}
.page-toc-summary::-webkit-details-marker { display: none; }
.page-toc-summary::before {
    content: "";
    width: 14px;
    height: 14px;
    background: var(--c-brand);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M3 5h18v2H3zm0 6h18v2H3zm0 6h12v2H3z"/></svg>') no-repeat center / contain;
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M3 5h18v2H3zm0 6h18v2H3zm0 6h12v2H3z"/></svg>') no-repeat center / contain;
}
.page-toc-summary::after {
    content: "▼";
    margin-left: auto;
    font-size: 10px;
    color: var(--c-text-muted);
    transition: transform 0.2s ease;
}
.page-toc[open] .page-toc-summary::after { transform: rotate(180deg); }
.page-toc-summary .page-toc-count {
    background: var(--c-brand-light);
    color: var(--c-brand-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
}
.page-toc ol {
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-top: 1px solid var(--c-border);
    background: var(--c-bg-surface);
    counter-reset: toc;
}
.page-toc ol li {
    counter-increment: toc;
    padding: 0;
}
.page-toc ol li a {
    display: block;
    padding: 8px 18px 8px 46px;
    color: var(--c-text-p);
    font-size: 13px;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
    line-height: 1.45;
}
.page-toc ol li a::before {
    content: counter(toc);
    position: absolute;
    left: 18px;
    top: 8px;
    width: 22px;
    height: 22px;
    background: var(--c-bg-body);
    color: var(--c-text-muted);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 22px;
    transition: var(--transition);
}
.page-toc ol li a:hover {
    background: var(--c-bg-body);
    color: var(--c-brand-dark);
}
.page-toc ol li a:hover::before {
    background: var(--c-brand);
    color: #fff;
}

/* Smooth scroll for anchor jumps + scroll-margin so anchored H2/section doesn't hide under sticky header */
html { scroll-behavior: smooth; }
h2[id], section[id], details[id] { scroll-margin-top: 24px; }

/* ==========================================================================
   SECTION IMAGE FIGURE (illustrations above editorial H2 sections)
   ========================================================================== */
.section-image {
    margin: 0 0 22px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--c-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    background: var(--c-bg-surface);
}
.section-image picture, .section-image img {
    display: block;
    width: 100%;
    height: auto;
}
.section-image figcaption {
    font-size: 12px;
    color: var(--c-text-muted);
    padding: 8px 14px;
    background: var(--c-bg-surface);
    font-style: italic;
    border-top: 1px solid var(--c-border);
}

/* ==========================================================================
   BACK-TO-TOP FLOATING BUTTON (long page UX)
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--c-brand-dark);
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 40;
    transition: transform 0.18s ease, opacity 0.18s ease;
    opacity: 0;
}
.back-to-top.is-visible {
    display: flex;
    opacity: 1;
}
.back-to-top:hover {
    transform: translateY(-2px);
    background: var(--c-brand);
}
.back-to-top svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 768px) {
    .back-to-top { bottom: 80px; right: 14px; }
}

/* ==========================================================================
   NIGERIA-SPECIFIC WIDGETS (Stage 3 batch 2)
   Widget 1: NG H2H Comparator · Widget 2: Naira Slide Bonus Tracker
   ========================================================================== */

/* Widget 1: NG Operator H2H Comparator */
.ng-h2h-comparator {
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 20px;
    margin: 22px 0;
}
.ng-h2h-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: end;
    margin-bottom: 20px;
}
@media (max-width: 600px) {
    .ng-h2h-controls { grid-template-columns: 1fr; gap: 10px; }
    .ng-h2h-vs { display: none; }
}
.ng-h2h-controls label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.ng-h2h-controls select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}
.ng-h2h-vs {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-ng-green);
    padding-bottom: 10px;
    text-align: center;
}
.ng-h2h-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.ng-h2h-table th, .ng-h2h-table td {
    padding: 10px 12px;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
}
.ng-h2h-table tr:last-child th, .ng-h2h-table tr:last-child td { border-bottom: none; }
.ng-h2h-table th:first-child, .ng-h2h-table td:first-child {
    text-align: left;
    color: var(--c-text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 700;
    width: 35%;
}
.ng-h2h-table td:not(:first-child) {
    font-weight: 700;
    color: var(--c-text-h);
}
.ng-h2h-table .winner {
    background: #ECFDF5;
    color: #047857;
}

/* Widget 2: Naira Slide Bonus Value Tracker */
.ng-slide-tracker {
    background: linear-gradient(180deg, #FEF2F2 0%, #FFFFFF 100%);
    border: 1px solid #FECACA;
    border-radius: 12px;
    padding: 22px;
    margin: 22px 0;
}
.ng-st-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}
.ng-st-input label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.ng-st-input input {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
}
.ng-st-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.ng-st-result {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}
/* Semantic mapping fix:
   .now (bonus value today)         → neutral white (just info baseline)
   .future (real value at clearance) → amber/warn (shows erosion happening)
   .loss (implicit slide cost)       → red/danger (the actual money lost) */
.ng-st-result.now    { border-color: var(--c-border); background: #FFFFFF; }
.ng-st-result.future { border-color: #FBBF24; background: #FFFBEB; }
.ng-st-result.loss   { border-color: #FCA5A5; background: #FEF2F2; }
.ng-st-result-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.ng-st-result-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-text-h);
    margin: 4px 0 2px;
    line-height: 1.1;
}
.ng-st-result.now    .ng-st-result-value { color: var(--c-text-h); }
.ng-st-result.future .ng-st-result-value { color: #92400E; }
.ng-st-result.loss   .ng-st-result-value { color: #991B1B; }
.ng-st-result-sub {
    font-size: 11px;
    color: var(--c-text-muted);
}

/* ==========================================================================
   SOUTH AFRICA-SPECIFIC WIDGETS (Stage D — SA v2.1)
   Widget 1: ZA Operator H2H Comparator
   Widget 2: ZA Data-Free Carrier Matrix (UNIQUE to SA market)
   ========================================================================== */

/* Widget 1: ZA Operator H2H Comparator */
.za-h2h-comparator {
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 20px;
    margin: 22px 0;
}
.za-h2h-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: end;
    margin-bottom: 20px;
}
@media (max-width: 600px) {
    .za-h2h-controls { grid-template-columns: 1fr; gap: 10px; }
    .za-h2h-vs { display: none; }
}
.za-h2h-controls label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.za-h2h-controls select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}
.za-h2h-vs {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-za-green);
    padding-bottom: 10px;
    text-align: center;
}
.za-h2h-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.za-h2h-table th, .za-h2h-table td {
    padding: 10px 12px;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
}
.za-h2h-table tr:last-child th, .za-h2h-table tr:last-child td { border-bottom: none; }
.za-h2h-table th:first-child, .za-h2h-table td:first-child {
    text-align: left;
    color: var(--c-text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 700;
    width: 35%;
}
.za-h2h-table td:not(:first-child) {
    font-weight: 700;
    color: var(--c-text-h);
}
.za-h2h-table .winner {
    background: #ECFDF5;
    color: var(--c-za-green-d);
}

/* Widget 2: ZA Data-Free Carrier Matrix (UNIQUE) */
.za-df-matrix {
    background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 100%);
    border: 1px solid #BBF7D0;
    border-radius: 12px;
    padding: 22px;
    margin: 22px 0;
}
.za-df-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}
@media (max-width: 600px) {
    .za-df-controls { grid-template-columns: 1fr; gap: 10px; }
}
.za-df-controls label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.za-df-controls select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.za-df-result {
    margin-bottom: 18px;
}
.za-df-result-inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid;
}
.za-df-result-inner.za-df-free {
    background: #ECFDF5;
    border-color: #6EE7B7;
    color: var(--c-za-green-d);
}
.za-df-result-inner.za-df-partial {
    background: #FFFBEB;
    border-color: #FDE68A;
    color: #92400E;
}
.za-df-result-inner.za-df-standard {
    background: #FEF2F2;
    border-color: #FECACA;
    color: #991B1B;
}
.za-df-result-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}
.za-df-result-icon svg { width: 22px; height: 22px; }
.za-df-result-text { flex: 1; line-height: 1.5; }
.za-df-result-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}
.za-df-result-text small {
    display: block;
    font-size: 12.5px;
    opacity: 0.9;
}

.za-df-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    overflow: hidden;
}
.za-df-table thead th {
    background: var(--c-bg-surface);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--c-text-muted);
    font-weight: 800;
    padding: 10px 12px;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
}
.za-df-table thead th:first-child { text-align: left; }
.za-df-table tbody th {
    text-align: left;
    padding: 10px 12px;
    font-weight: 800;
    color: var(--c-text-h);
    background: #fff;
    border-bottom: 1px solid var(--c-border);
}
.za-df-table tbody td {
    padding: 10px 12px;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
    font-weight: 700;
}
.za-df-table tbody tr:last-child th,
.za-df-table tbody tr:last-child td { border-bottom: none; }
.za-df-table .za-df-yes     { color: var(--c-za-green-d); }
.za-df-table .za-df-partial { color: #B45309; }
.za-df-table .za-df-no      { color: #991B1B; }
@media (max-width: 640px) {
    .za-df-table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ==========================================================================
   GHANA — v2.2 (BetBooker spotlight + GhIPSS MoMo interop ladder)
   CSS prefix gh-* (no collision with ke/ng/za/sa)
   Ghana flag palette: red #CE1126 + gold #FCD116 + green #006B3F + black star
   ========================================================================== */
:root {
    --c-gh-red:     #CE1126;
    --c-gh-red-d:   #A40D1F;
    --c-gh-gold:    #FCD116;
    --c-gh-gold-d:  #D9A912;
    --c-gh-green:   #006B3F;
    --c-gh-green-d: #00532F;
    --c-gh-black:   #000000;
}

/* === GH HERO — flag gradient red → gold → green + dark navy backdrop === */
.gh-hero {
    background:
        radial-gradient(120% 100% at 0% 0%, rgba(252,209,22,0.18) 0%, transparent 60%),
        linear-gradient(115deg, #0B1F1A 0%, var(--c-gh-green-d) 45%, #1a1300 100%);
    color: #fff;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    margin: 0 0 24px;
    position: relative;
    overflow: hidden;
}
.gh-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--c-gh-red) 0%, var(--c-gh-red) 33%, var(--c-gh-gold) 33%, var(--c-gh-gold) 66%, var(--c-gh-green) 66%, var(--c-gh-green) 100%);
}
.gh-hero::after {
    content: "★";
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 64px;
    color: rgba(0,0,0,0.18);
    line-height: 1;
}
.gh-hero-inner { position: relative; z-index: 1; }
.gh-hero h1 {
    font-size: 36px;
    line-height: 1.15;
    margin: 14px 0;
    letter-spacing: -1px;
}
.gh-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(252, 209, 22, 0.18);
    color: var(--c-gh-gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(252, 209, 22, 0.35);
}
.gh-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
.gh-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

.gh-vern {
    font-style: italic;
    background: rgba(252, 209, 22, 0.18);
    color: #6B3F00;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* === BETBOOKER SPOTLIGHT CARD === */
.gh-bb-spotlight {
    background: linear-gradient(135deg, #fff 0%, #F0FDF4 50%, #FEF3C7 100%);
    border: 2px solid var(--c-gh-green-d);
    border-radius: 14px;
    padding: 22px;
    margin: 18px 0 22px;
    box-shadow: 0 8px 24px rgba(0, 107, 63, 0.12);
    position: relative;
    overflow: hidden;
}
.gh-bb-spotlight::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-gh-red) 0%, var(--c-gh-red) 33%, var(--c-gh-gold) 33%, var(--c-gh-gold) 66%, var(--c-gh-green) 66%, var(--c-gh-green) 100%);
}
.gh-bb-spotlight-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}
@media (max-width: 640px) {
    .gh-bb-spotlight-head { grid-template-columns: auto 1fr; }
    .gh-bb-trust { grid-column: 1 / -1; justify-self: start; }
}
.gh-bb-logo {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    background: #0B1F1A;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.gh-bb-logo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}
.gh-bb-headline h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-text-h);
    margin: 4px 0;
    letter-spacing: -0.3px;
}
.gh-bb-headline p {
    font-size: 13px;
    color: var(--c-text-muted);
    margin: 0;
}
.gh-bb-tag {
    display: inline-block;
    background: var(--c-gh-gold);
    color: #4A2C00;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 14px;
    margin-bottom: 4px;
}
.gh-bb-trust {
    text-align: center;
    background: #fff;
    border: 2px solid var(--c-gh-green-d);
    border-radius: 12px;
    padding: 10px 14px;
    min-width: 84px;
}
.gh-bb-trust-score {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--c-gh-green-d);
    line-height: 1;
}
.gh-bb-trust small {
    display: block;
    font-size: 10px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 700;
}
.gh-bb-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 16px 0;
}
.gh-bb-stat {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0, 107, 63, 0.22);
    border-radius: 8px;
    padding: 12px 14px;
    line-height: 1.45;
}
.gh-bb-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--c-gh-green-d);
    margin-bottom: 4px;
}
.gh-bb-stat span {
    font-size: 12px;
    color: var(--c-text-p);
}
.gh-bb-cta {
    display: inline-block;
    background: var(--c-gh-green-d);
    color: #fff !important;
    padding: 13px 26px;
    font-size: 14px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.15s ease;
}
.gh-bb-cta:hover { background: #003F23; }

/* === CEDI CALCULATOR (existing-feel reused with gh- prefix) === */
.gh-cedi-calc {
    background: linear-gradient(180deg, #FEF3C7 0%, #FFFBEB 100%);
    border: 2px solid var(--c-gh-gold);
    border-radius: 12px;
    padding: 22px;
    margin: 18px 0;
}
.gh-cedi-calc h3 { font-size: 18px; font-weight: 800; color: #78350F; margin: 0 0 6px; }
.gh-cedi-calc .crow { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-top: 14px; }
.gh-cedi-calc label { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; color: #78350F; letter-spacing: 0.4px; margin-bottom: 4px; }
.gh-cedi-calc input { width: 100%; padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid var(--c-gh-gold-d); font-size: 15px; font-weight: 700; background: #fff; color: #1a1300; }
.gh-cedi-calc .cout { margin-top: 18px; padding: 16px; background: #fff; border-radius: var(--radius-sm); border: 1px dashed #B45309; font-size: 14px; color: #78350F; line-height: 1.75; }

/* === MOMO INTEROP FEE LADDER (Ghana-unique widget) === */
.gh-momo-ladder {
    background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 100%);
    border: 1px solid #BBF7D0;
    border-radius: 12px;
    padding: 22px;
    margin: 22px 0;
}
.gh-ml-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}
.gh-ml-controls label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.gh-ml-controls select,
.gh-ml-controls input {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}
.gh-ml-result { margin-top: 8px; }
.gh-ml-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}
.gh-ml-cell {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 12px 14px;
    line-height: 1.4;
}
.gh-ml-cell small {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}
.gh-ml-cell strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--c-text-h);
}
.gh-ml-cell.gh-ml-free   { border-color: #BBF7D0; background: #ECFDF5; }
.gh-ml-cell.gh-ml-free strong   { color: var(--c-gh-green-d); }
.gh-ml-cell.gh-ml-low    { border-color: #FDE68A; background: #FFFBEB; }
.gh-ml-cell.gh-ml-low strong    { color: #92400E; }
.gh-ml-cell.gh-ml-high   { border-color: #FCA5A5; background: #FEF2F2; }
.gh-ml-cell.gh-ml-high strong   { color: #991B1B; }
.gh-ml-note {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.55;
    background: #F1F5F9;
    color: var(--c-text-p);
}
.gh-ml-note.success { background: #ECFDF5; color: var(--c-gh-green-d); border-left: 3px solid var(--c-gh-green-d); }
.gh-ml-note.warn    { background: #FEF2F2; color: #991B1B; border-left: 3px solid #991B1B; }

/* === GH FAQ marker accent (matches Ghana green) === */
.gh-faq summary::marker { color: var(--c-gh-green-d); }


/* ==========================================================================
   TANZANIA — v2.2
   CSS prefix tz-* (no collision with ke/ng/za/sa/gh)
   Tanzania flag palette: green #1EB53A + yellow #FCD116 + black + blue #00A3DD
   Widgets: Mixx by Yas Migration Helper · 15% WHT Calculator · Kariakoo Derby Market Comparator
   ========================================================================== */
:root {
    --c-tz-green:    #1EB53A;
    --c-tz-green-d:  #157C28;
    --c-tz-yellow:   #FCD116;
    --c-tz-yellow-d: #D9A912;
    --c-tz-black:    #000000;
    --c-tz-blue:     #00A3DD;
    --c-tz-blue-d:   #007BA8;
}

/* === TZ HERO — flag-themed (green → black → blue diagonal motif) === */
.tz-hero {
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(0, 163, 221, 0.18) 0%, transparent 60%),
        linear-gradient(125deg, var(--c-tz-green-d) 0%, #0B1F1A 50%, var(--c-tz-blue-d) 100%);
    color: #fff;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    margin: 0 0 24px;
    position: relative;
    overflow: hidden;
}
.tz-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--c-tz-green) 0%, var(--c-tz-green) 25%, var(--c-tz-yellow) 25%, var(--c-tz-yellow) 50%, var(--c-tz-black) 50%, var(--c-tz-black) 75%, var(--c-tz-blue) 75%, var(--c-tz-blue) 100%);
}
.tz-hero-inner { position: relative; z-index: 1; }
.tz-hero h1 {
    font-size: 36px;
    line-height: 1.15;
    margin: 14px 0;
    letter-spacing: -1px;
}
.tz-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(252, 209, 22, 0.18);
    color: var(--c-tz-yellow);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(252, 209, 22, 0.35);
}
.tz-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
.tz-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

.tz-vern {
    font-style: italic;
    background: rgba(30, 181, 58, 0.18);
    color: var(--c-tz-green-d);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* === WIDGET 1: TZ Mixx by Yas Migration Helper === */
.tz-mixx-helper {
    background: linear-gradient(180deg, #ECFEFF 0%, #FFFFFF 100%);
    border: 1px solid #A5F3FC;
    border-radius: 12px;
    padding: 22px;
    margin: 22px 0;
}
.tz-mh-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}
@media (max-width: 600px) {
    .tz-mh-controls { grid-template-columns: 1fr; gap: 10px; }
}
.tz-mh-controls label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.tz-mh-controls select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}
.tz-mh-result { margin-top: 6px; }
.tz-mh-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}
@media (max-width: 600px) {
    .tz-mh-grid { grid-template-columns: 1fr; }
    .tz-mh-arrow { transform: rotate(90deg); margin: 0 auto; }
}
.tz-mh-cell {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 12px 14px;
    text-align: center;
}
.tz-mh-cell small {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}
.tz-mh-cell strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--c-text-h);
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.tz-mh-cell .tz-mh-old { color: #94A3B8; text-decoration: line-through; }
.tz-mh-cell.tz-mh-new { border-color: var(--c-tz-yellow); background: #FFFBEB; }
.tz-mh-cell.tz-mh-new strong { color: #92400E; }
.tz-mh-arrow {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-tz-green-d);
    text-align: center;
}
.tz-mh-status {
    padding: 12px 14px;
    border-radius: 8px;
    border-left: 4px solid;
    background: #fff;
    line-height: 1.5;
}
.tz-mh-status strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}
.tz-mh-status p { font-size: 13px; color: var(--c-text-p); margin: 0; }
.tz-mh-status.tz-mh-full {
    background: #ECFDF5;
    border-color: var(--c-tz-green-d);
}
.tz-mh-status.tz-mh-full strong { color: var(--c-tz-green-d); }
.tz-mh-status.tz-mh-partial {
    background: #FFFBEB;
    border-color: #B45309;
}
.tz-mh-status.tz-mh-partial strong { color: #B45309; }

/* === WIDGET 2: TZ 15% WHT Net Take-Home Calculator === */
.tz-wht-calc {
    background: linear-gradient(180deg, #FEF2F2 0%, #FFFFFF 100%);
    border: 1px solid #FECACA;
    border-radius: 12px;
    padding: 22px;
    margin: 22px 0;
}
.tz-wc-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}
.tz-wc-input label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.tz-wc-input input {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: #fff;
}
.tz-wc-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}
.tz-wc-result {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}
.tz-wc-result.warn   { border-color: #FBBF24; background: #FFFBEB; }
.tz-wc-result.danger { border-color: #FCA5A5; background: #FEF2F2; }
.tz-wc-result.good   { border-color: #6EE7B7; background: #ECFDF5; }
.tz-wc-result-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.tz-wc-result-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-text-h);
    margin: 4px 0 2px;
    line-height: 1.1;
}
.tz-wc-result.warn   .tz-wc-result-value { color: #92400E; }
.tz-wc-result.danger .tz-wc-result-value { color: #991B1B; }
.tz-wc-result.good   .tz-wc-result-value { color: var(--c-tz-green-d); }
.tz-wc-result-sub { font-size: 11px; color: var(--c-text-muted); }

/* === WIDGET 3: TZ Kariakoo Derby Market Comparator === */
.tz-derby-comparator {
    background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 100%);
    border: 1px solid var(--c-tz-yellow);
    border-radius: 12px;
    padding: 22px;
    margin: 22px 0;
}
.tz-dc-controls {
    margin-bottom: 18px;
}
.tz-dc-controls label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.tz-dc-controls select {
    width: 100%;
    max-width: 420px;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}
.tz-dc-result { margin-top: 6px; }
.tz-dc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.tz-dc-cell {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 14px 16px;
    line-height: 1.45;
}
.tz-dc-cell.tz-dc-winner {
    background: #ECFDF5;
    border-color: var(--c-tz-green-d);
    box-shadow: 0 2px 8px rgba(21, 124, 40, 0.12);
}
.tz-dc-cell-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}
.tz-dc-cell-head strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--c-text-h);
}
.tz-dc-cell.tz-dc-winner .tz-dc-cell-head strong { color: var(--c-tz-green-d); }
.tz-dc-stars {
    font-size: 14px;
    color: var(--c-tz-yellow-d);
    letter-spacing: 1px;
}
.tz-dc-cell p { font-size: 12.5px; color: var(--c-text-p); margin: 0; }

/* === TZ FAQ marker accent (Tanzania green) === */
.tz-faq summary::marker { color: var(--c-tz-green-d); }


/* ==========================================================================
   UGANDA — v2.2
   CSS prefix ug-* (no collision with ke/ng/za/sa/gh/tz)
   Uganda flag palette: black + yellow #FCDC04 + red #D90000 + white (crane)
   Widgets: 25+ Age Gate · NLGRB 2019 Freeze Status · MTN MoMo Daily Cap Helper
   ========================================================================== */
:root {
    --c-ug-black:    #000000;
    --c-ug-yellow:   #FCDC04;
    --c-ug-yellow-d: #C99E00;
    --c-ug-red:      #D90000;
    --c-ug-red-d:    #A40000;
    --c-ug-white:    #FFFFFF;
}

/* === UG HERO — Uganda flag horizontal stripe motif === */
.ug-hero {
    background:
        radial-gradient(120% 100% at 0% 0%, rgba(252, 220, 4, 0.18) 0%, transparent 60%),
        linear-gradient(125deg, #0a0a0a 0%, #1a0000 50%, var(--c-ug-red-d) 100%);
    color: #fff;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    margin: 0 0 24px;
    position: relative;
    overflow: hidden;
}
.ug-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(180deg,
        var(--c-ug-black) 0%, var(--c-ug-black) 16.66%,
        var(--c-ug-yellow) 16.66%, var(--c-ug-yellow) 33.33%,
        var(--c-ug-red) 33.33%, var(--c-ug-red) 50%,
        var(--c-ug-black) 50%, var(--c-ug-black) 66.66%,
        var(--c-ug-yellow) 66.66%, var(--c-ug-yellow) 83.33%,
        var(--c-ug-red) 83.33%, var(--c-ug-red) 100%);
}
.ug-hero-inner { position: relative; z-index: 1; }
.ug-hero h1 {
    font-size: 36px;
    line-height: 1.15;
    margin: 14px 0;
    letter-spacing: -1px;
}
.ug-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(252, 220, 4, 0.18);
    color: var(--c-ug-yellow);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(252, 220, 4, 0.35);
}
.ug-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
.ug-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.6; max-width: 760px; }

/* === WIDGET 1: UG 25+ Age-Gate Eligibility Checker === */
.ug-age-checker {
    background: linear-gradient(180deg, #FEF2F2 0%, #FFFFFF 100%);
    border: 1px solid #FECACA;
    border-radius: 12px;
    padding: 22px;
    margin: 22px 0;
}
.ug-ac-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}
.ug-ac-controls label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.ug-ac-controls input,
.ug-ac-controls select {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}
.ug-ac-result { margin-top: 6px; }
.ug-ac-inner {
    padding: 16px 18px;
    border-radius: 10px;
    border-left: 4px solid;
    background: #fff;
}
.ug-ac-inner.ug-ac-ok    { background: #ECFDF5; border-color: #047857; }
.ug-ac-inner.ug-ac-block { background: #FEF2F2; border-color: var(--c-ug-red-d); }
.ug-ac-inner.ug-ac-warn  { background: #FEF3C7; border-color: var(--c-ug-yellow-d); }
.ug-ac-age strong { font-size: 18px; font-weight: 800; color: var(--c-text-h); }
.ug-ac-inner.ug-ac-ok    .ug-ac-age strong { color: #047857; }
.ug-ac-inner.ug-ac-block .ug-ac-age strong { color: var(--c-ug-red-d); }
.ug-ac-msg { font-size: 14px; color: var(--c-text-p); line-height: 1.55; margin: 8px 0 0; }
.ug-ac-msg-strong { font-size: 13px; font-weight: 700; color: var(--c-ug-red-d); margin: 6px 0 0; }

/* === WIDGET 2: UG NLGRB 2019 Freeze Operator Status Checker === */
.ug-freeze-checker {
    background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
    border: 1px solid #BAE6FD;
    border-radius: 12px;
    padding: 22px;
    margin: 22px 0;
}
.ug-fc-controls {
    margin-bottom: 18px;
}
.ug-fc-controls label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.ug-fc-controls select {
    width: 100%;
    max-width: 440px;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}
.ug-fc-result { margin-top: 6px; }
.ug-fc-inner {
    padding: 16px 18px;
    border-radius: 10px;
    border-left: 4px solid;
    background: #fff;
}
.ug-fc-inner.ug-fc-pre     { background: #ECFDF5; border-color: #047857; }
.ug-fc-inner.ug-fc-grey    { background: #FFFBEB; border-color: var(--c-ug-yellow-d); }
.ug-fc-inner.ug-fc-exited  { background: #FEF2F2; border-color: var(--c-ug-red-d); }
.ug-fc-inner.ug-fc-unknown { background: #F1F5F9; border-color: #475569; }
.ug-fc-status strong { font-size: 16px; font-weight: 800; }
.ug-fc-inner.ug-fc-pre    .ug-fc-status strong { color: #047857; }
.ug-fc-inner.ug-fc-grey   .ug-fc-status strong { color: var(--c-ug-yellow-d); }
.ug-fc-inner.ug-fc-exited .ug-fc-status strong { color: var(--c-ug-red-d); }
.ug-fc-licence {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    background: rgba(0,0,0,0.04);
    border: 1px dashed rgba(0,0,0,0.1);
}
.ug-fc-licence small {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}
.ug-fc-licence strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-h);
}
.ug-fc-note { font-size: 13px; color: var(--c-text-p); line-height: 1.55; margin: 10px 0 0; }

/* === WIDGET 3: UG MTN MoMo UGX 5M Daily Cap Workaround Helper === */
.ug-cap-helper {
    background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 100%);
    border: 1px solid var(--c-ug-yellow);
    border-radius: 12px;
    padding: 22px;
    margin: 22px 0;
}
.ug-ch-controls {
    margin-bottom: 18px;
}
.ug-ch-controls label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.ug-ch-controls input {
    width: 100%;
    max-width: 320px;
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text-h);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: #fff;
}
.ug-ch-result { margin-top: 6px; }
.ug-ch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}
.ug-ch-cell {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}
.ug-ch-cell.ug-ch-good { border-color: #6EE7B7; background: #ECFDF5; }
.ug-ch-cell small {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}
.ug-ch-cell strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--c-text-h);
    line-height: 1.15;
    margin-bottom: 2px;
}
.ug-ch-cell.ug-ch-good strong { color: #047857; }
.ug-ch-cell span {
    display: block;
    font-size: 11px;
    color: var(--c-text-muted);
}
.ug-ch-note {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.55;
    background: #F1F5F9;
    color: var(--c-text-p);
}
.ug-ch-note.success { background: #ECFDF5; color: #047857; border-left: 3px solid #047857; }
.ug-ch-note.warn    { background: #FFFBEB; color: #92400E; border-left: 3px solid var(--c-ug-yellow-d); }
.ug-ch-note.danger  { background: #FEF2F2; color: var(--c-ug-red-d); border-left: 3px solid var(--c-ug-red-d); }

/* === UG FAQ marker accent (Uganda red) === */
.ug-faq summary::marker { color: var(--c-ug-red-d); }


/* ==========================================================================
   ABOUT PAGE — E-E-A-T editorial team showcase
   CSS prefix ab-* (no collision with country page prefixes)
   ========================================================================== */

/* === Hero === */
.ab-hero {
    background:
        radial-gradient(120% 100% at 50% 0%, rgba(252,209,22,0.18) 0%, transparent 60%),
        linear-gradient(125deg, #0F1820 0%, #1f2a37 55%, var(--c-brand-dark, #064E3B) 100%);
    color: #fff;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    margin: 0 0 24px;
    position: relative;
    overflow: hidden;
}
.ab-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #DC2626 0%, #F59E0B 25%, #10B981 50%, #3B82F6 75%, #8B5CF6 100%);
}
.ab-hero-inner { position: relative; z-index: 1; }
.ab-hero h1 { font-size: 32px; line-height: 1.15; margin: 14px 0; letter-spacing: -0.8px; }
.ab-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(252, 209, 22, 0.18);
    color: #FCD116;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(252, 209, 22, 0.35);
}

.ab-h2 { font-size: 26px; font-weight: 800; color: var(--c-text-h); letter-spacing: -0.5px; margin: 0 0 8px; }
.ab-sub { font-size: 14px; color: var(--c-text-p); line-height: 1.65; max-width: 760px; }
.ab-h3 { font-size: 17px; font-weight: 700; color: var(--c-text-h); margin: 18px 0 8px; }
.ab-h3-section { font-size: 19px; font-weight: 800; color: var(--c-text-h); margin: 20px 0 12px; letter-spacing: -0.3px; }
.ab-p { font-size: 14px; color: var(--c-text-p); line-height: 1.7; margin: 0 0 12px; }
.ab-list { font-size: 14px; color: var(--c-text-p); line-height: 1.75; padding-left: 22px; margin: 0; }
.ab-list li { margin-bottom: 6px; }

/* === PERSON PROFILE CARD (used for author + 8 reviewers) === */
.ab-person {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 22px;
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 14px;
    scroll-margin-top: 24px;
    transition: box-shadow 0.15s ease;
}
.ab-person:target {
    box-shadow: 0 0 0 3px #FCD116, var(--shadow-md);
    border-color: #FCD116;
}
.ab-person-lead {
    grid-template-columns: 150px 1fr;
    border: 2px solid var(--c-brand-dark, #064E3B);
    background: linear-gradient(135deg, #fff 0%, #F0FDF4 100%);
    margin-bottom: 24px;
}
@media (max-width: 600px) {
    .ab-person { grid-template-columns: 1fr; text-align: center; }
    .ab-person-avatar { justify-self: center; }
    .ab-person-head { justify-content: center; }
}

.ab-person-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-brand-dark, #064E3B) 0%, #065F46 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    flex-shrink: 0;
}
.ab-person-lead .ab-person-avatar { width: 150px; height: 150px; }
.ab-person-avatar picture, .ab-person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.ab-initials {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #FCD116;
}
.ab-person-lead .ab-initials { font-size: 52px; }

.ab-person-body { line-height: 1.55; }
.ab-person-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 14px;
    margin-bottom: 10px;
}
.ab-person-head h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-text-h);
    letter-spacing: -0.3px;
    margin: 0;
}
.ab-person-lead .ab-person-head h4 { font-size: 24px; }
.ab-role {
    font-size: 13px;
    color: var(--c-text-muted);
    font-weight: 700;
    font-style: italic;
}
.ab-years {
    font-size: 12px;
    color: #065F46;
    background: #ECFDF5;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 700;
}
.ab-bio {
    font-size: 14px;
    color: var(--c-text-p);
    line-height: 1.7;
    margin: 0 0 12px;
}
.ab-specs {
    font-size: 13px;
    color: var(--c-text-p);
    margin: 10px 0;
}
.ab-specs strong { color: var(--c-text-h); margin-right: 6px; }
.ab-spec-tag {
    display: inline-block;
    background: #F1F5F9;
    color: var(--c-text-h);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin: 2px 4px 2px 0;
    border: 1px solid var(--c-border);
}
.ab-writes {
    font-size: 13px;
    color: var(--c-text-p);
    line-height: 1.65;
    margin: 8px 0 0;
    padding-top: 10px;
    border-top: 1px dashed var(--c-border);
}
.ab-writes strong { color: var(--c-text-h); }
.ab-writes a { color: var(--c-brand-dark, #064E3B); font-weight: 600; }

/* === Reviewer grid (2-column on desktop, 1-column on mobile) === */
.ab-reviewer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 14px;
}
@media (max-width: 640px) {
    .ab-reviewer-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   BLOG — Index page + single article view
   CSS prefix blog-* (no collision with country page prefixes)
   ========================================================================== */

/* === BLOG INDEX HERO === */
.blog-hero {
    background:
        radial-gradient(120% 100% at 50% 0%, rgba(252,209,22,0.18) 0%, transparent 60%),
        linear-gradient(125deg, #0F1820 0%, #1F2937 55%, #064E3B 100%);
    color: #fff;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    margin: 0 0 22px;
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0EA5E9 0%, #10B981 20%, #F59E0B 40%, #8B5CF6 60%, #DC2626 80%, #6366F1 100%);
}
.blog-hero-inner { position: relative; z-index: 1; }
.blog-hero h1 { font-size: 30px; line-height: 1.15; margin: 12px 0; letter-spacing: -0.6px; }
.blog-hero-sub { font-size: 15px; line-height: 1.6; opacity: 0.92; max-width: 760px; margin: 0; }
.blog-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(252, 209, 22, 0.18);
    color: #FCD116;
    padding: 5px 11px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(252, 209, 22, 0.35);
}

/* === CATEGORY FILTER PILLS === */
.blog-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    color: var(--c-text-p);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.15s ease;
}
.blog-cat-pill:hover { background: #F1F5F9; border-color: #94A3B8; }
.blog-cat-pill.is-active {
    background: var(--c-text-h);
    color: #fff;
    border-color: var(--c-text-h);
}
.blog-cat-pill.is-active .blog-cat-dot { background: #FCD116 !important; }
.blog-cat-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* === BLOG POST GRID === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    margin: 0 0 32px;
}
.blog-card,
.blog-card-feature {
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover,
.blog-card-feature:hover {
    box-shadow: 0 8px 22px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}
.blog-card-feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    border: 2px solid #FCD116;
}
@media (max-width: 720px) {
    .blog-card-feature { grid-template-columns: 1fr; }
}
.blog-card-imglink {
    display: block;
    position: relative;
    overflow: hidden;
    background: #F1F5F9;
    aspect-ratio: 16 / 9;
}
.blog-card-feature .blog-card-imglink { aspect-ratio: auto; min-height: 280px; }
.blog-card-imglink picture, .blog-card-imglink img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-imglink img,
.blog-card-feature:hover .blog-card-imglink img {
    transform: scale(1.04);
}
.blog-card-feature-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FCD116;
    color: #4A2C00;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.blog-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-feature .blog-card-body { padding: 24px 28px; }
.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 10px;
}
.blog-card-cat {
    display: inline-block;
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 9px;
    border-radius: 4px;
    text-decoration: none;
}
.blog-card-time {
    font-size: 12px;
    color: var(--c-text-muted);
    font-weight: 600;
}
.blog-card-title {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin: 0 0 10px;
}
.blog-card-feature .blog-card-title { font-size: 26px; line-height: 1.2; }
.blog-card-title a {
    color: var(--c-text-h);
    text-decoration: none;
}
.blog-card-title a:hover { color: var(--c-brand-dark, #064E3B); }
.blog-card-excerpt {
    font-size: 14px;
    color: var(--c-text-p);
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
}
.blog-card-feature .blog-card-excerpt { font-size: 15px; }
.blog-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px dashed var(--c-border);
    font-size: 13px;
}
.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--c-text-muted);
}
.blog-card-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-brand-dark, #064E3B) 0%, #065F46 100%);
    color: #FCD116;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
}
.blog-card-cta {
    color: var(--c-brand-dark, #064E3B);
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
}
.blog-card-cta:hover { text-decoration: underline; }

/* === SINGLE BLOG ARTICLE === */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
}
.blog-art-head { margin-bottom: 24px; }
.blog-art-cat {
    display: inline-block;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    margin-bottom: 12px;
}
.blog-art-country {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-h);
    text-decoration: none;
    margin-left: 6px;
    margin-bottom: 12px;
}
.blog-art-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--c-text-h);
    margin: 12px 0 14px;
}
.blog-art-excerpt {
    font-size: 17px;
    line-height: 1.55;
    color: var(--c-text-p);
    margin: 0 0 22px;
    font-weight: 500;
}
.blog-art-byline {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    margin: 0 0 24px;
}
.blog-art-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-brand-dark, #064E3B) 0%, #065F46 100%);
    color: #FCD116;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.blog-art-avatar img,
.blog-art-avatar picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.blog-art-avatar-lg {
    width: 64px;
    height: 64px;
    grid-row: span 2;
}
.blog-art-initials {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.5px;
}
.blog-art-byline-body { line-height: 1.5; }
.blog-art-byline-row { font-size: 14px; color: var(--c-text-p); margin-bottom: 2px; }
.blog-art-byline-row strong { color: var(--c-text-h); }
.blog-art-byline-row a { color: var(--c-brand-dark, #064E3B); text-decoration: none; }
.blog-art-byline-row a:hover { text-decoration: underline; }
.blog-art-byline-rev { font-size: 13px; color: var(--c-text-muted); }
.blog-art-by { color: var(--c-text-muted); font-size: 13px; }
.blog-art-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--c-text-muted);
    margin-top: 4px;
}

.blog-art-hero {
    margin: 0 0 26px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
}
.blog-art-hero img, .blog-art-hero picture {
    width: 100%;
    height: auto;
    display: block;
}

.blog-art-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--c-text-p);
}
.blog-art-body h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--c-text-h);
    letter-spacing: -0.4px;
    margin: 32px 0 14px;
    scroll-margin-top: 24px;
}
.blog-art-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--c-text-h);
    margin: 26px 0 10px;
}
.blog-art-body p { margin: 0 0 16px; }
.blog-art-body ul, .blog-art-body ol { margin: 0 0 20px; padding-left: 24px; }
.blog-art-body li { margin-bottom: 8px; line-height: 1.7; }
.blog-art-body a {
    color: var(--c-brand-dark, #064E3B);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
    font-weight: 600;
}
.blog-art-body a:hover { color: #043328; }
.blog-art-body code {
    background: #F1F5F9;
    color: #DC2626;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 14px;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.blog-art-body strong { color: var(--c-text-h); }

.blog-art-tags {
    margin: 28px 0 14px;
    padding: 14px 0;
    border-top: 1px dashed var(--c-border);
    font-size: 13px;
    color: var(--c-text-p);
}
.blog-art-tags strong { margin-right: 8px; color: var(--c-text-h); }
.blog-art-tag {
    display: inline-block;
    background: #F1F5F9;
    color: var(--c-text-h);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin: 2px 4px 2px 0;
    border: 1px solid var(--c-border);
}

.blog-art-aubox {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px;
    background: linear-gradient(135deg, #fff 0%, #F0FDF4 100%);
    border: 2px solid var(--c-brand-dark, #064E3B);
    border-radius: 12px;
    margin: 32px 0 0;
}
@media (max-width: 600px) {
    .blog-art-aubox { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .blog-art-avatar-lg { grid-row: auto; }
}
.blog-art-aubox-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 12px;
    margin-bottom: 6px;
}
.blog-art-aubox-head strong { font-size: 18px; color: var(--c-text-h); font-weight: 800; }
.blog-art-aubox-head span { font-size: 13px; color: var(--c-text-muted); font-style: italic; }
.blog-art-aubox p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-text-p);
    margin: 0 0 8px;
}
.blog-art-aubox a {
    color: var(--c-brand-dark, #064E3B);
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
}
.blog-art-aubox a:hover { text-decoration: underline; }

/* === RELATED POSTS GRID === */
.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.blog-related-card {
    background: var(--c-bg-surface);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.15s ease;
}
.blog-related-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.blog-related-imglink {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #F1F5F9;
}
.blog-related-imglink img, .blog-related-imglink picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-related-body { padding: 14px 16px 16px; }
.blog-related-cat {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}
.blog-related-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px;
}
.blog-related-title a {
    color: var(--c-text-h);
    text-decoration: none;
}
.blog-related-title a:hover { color: var(--c-brand-dark, #064E3B); }
.blog-related-time {
    font-size: 11px;
    color: var(--c-text-muted);
}

/* === HOMEPAGE BLOG TEASER === */
.home-blog-section {
    margin: 36px 0;
    padding: 28px;
    background: linear-gradient(135deg, var(--c-bg-surface) 0%, #F9FAFB 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
}
.home-blog-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
}
.home-blog-head h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--c-text-h);
    letter-spacing: -0.4px;
    margin: 0;
}
.home-blog-head a {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-brand-dark, #064E3B);
    text-decoration: none;
}
.home-blog-head a:hover { text-decoration: underline; }
.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

/* ============================================================
   COUNTRY-BLOG-BLOCK — per-country "Latest from the Blog" teaser
   Inserted by _partials/country-blog-block.php at the bottom of
   each country landing page. Mirrors home-blog-section styling
   with country-specific accent border.
   ============================================================ */
.country-blog-block {
    margin: 40px 0 12px;
    padding: 28px 24px;
    background: linear-gradient(135deg, var(--c-bg-surface, #F8FAFC) 0%, #FFFFFF 100%);
    border: 1px solid var(--c-border, #E2E8F0);
    border-top: 4px solid var(--c-brand, #064E3B);
    border-radius: var(--radius-lg, 12px);
}
.cbb-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}
.cbb-head h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-text-h, #0F172A);
    margin: 0;
    letter-spacing: -0.3px;
}
.cbb-sub {
    font-size: 13px;
    color: var(--c-text-muted, #64748B);
    margin: 4px 0 0;
    max-width: 540px;
    line-height: 1.55;
}
.cbb-all-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-brand-dark, #064E3B);
    text-decoration: none;
    white-space: nowrap;
}
.cbb-all-link:hover { text-decoration: underline; }

.cbb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.cbb-card {
    background: #fff;
    border: 1px solid var(--c-border, #E2E8F0);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cbb-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -10px rgba(15,23,42,0.18);
}
.cbb-card-imglink {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #F1F5F9;
}
.cbb-card-imglink picture,
.cbb-card-imglink img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.cbb-card:hover .cbb-card-imglink img { transform: scale(1.04); }

.cbb-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.cbb-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 11px;
}
.cbb-card-cat {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 10px;
    text-decoration: none;
    line-height: 1.4;
}
.cbb-card-time {
    color: var(--c-text-muted, #64748B);
    font-weight: 500;
}
.cbb-card-title {
    font-size: 15.5px;
    font-weight: 800;
    line-height: 1.35;
    margin: 4px 0;
    color: var(--c-text-h, #0F172A);
    letter-spacing: -0.2px;
}
.cbb-card-title a {
    color: inherit;
    text-decoration: none;
}
.cbb-card-title a:hover { color: var(--c-brand-dark, #064E3B); }
.cbb-card-excerpt {
    font-size: 12.5px;
    color: var(--c-text-p, #475569);
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.cbb-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--c-border, #E2E8F0);
    font-size: 11.5px;
}
.cbb-card-author {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--c-text-muted, #64748B);
}
.cbb-card-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--c-brand-dark, #064E3B);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cbb-card-cta {
    font-weight: 700;
    color: var(--c-brand-dark, #064E3B);
    text-decoration: none;
    white-space: nowrap;
}
.cbb-card-cta:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
    .country-blog-block { padding: 20px 16px; }
    .cbb-head h2 { font-size: 18px; }
    .cbb-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ============================================================
   HOMEPAGE COUNTRY SHOWCASE GRID — 8-card visual directory hub
   Inserted between hero figure and TOC. Lean conversion surface.
   ============================================================ */
.home-country-section {
    margin: 32px 0 28px;
    padding: 24px 22px;
    background: linear-gradient(135deg, var(--c-bg-surface, #F8FAFC) 0%, #FFFFFF 100%);
    border: 1px solid var(--c-border, #E2E8F0);
    border-radius: var(--radius-lg, 12px);
}
.home-country-head {
    margin-bottom: 18px;
}
.home-country-head h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-text-h, #0F172A);
    margin: 0 0 4px;
    letter-spacing: -0.3px;
}
.home-country-head p {
    font-size: 13px;
    color: var(--c-text-muted, #64748B);
    margin: 0;
    line-height: 1.55;
    max-width: 640px;
}
.home-country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.home-country-card {
    background: #fff;
    border: 1px solid var(--c-border, #E2E8F0);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.home-country-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -10px rgba(15,23,42,0.18);
    border-color: var(--c-brand, #064E3B);
}
.home-country-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    padding: 14px 14px 12px;
    height: 100%;
    gap: 8px;
}
.home-country-flag {
    flex-shrink: 0;
}
.home-country-flag img {
    width: 44px;
    height: 33px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: block;
}
.home-country-body h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--c-text-h, #0F172A);
    margin: 0 0 4px;
    line-height: 1.2;
    letter-spacing: -0.2px;
}
.home-country-stat {
    font-size: 11.5px;
    color: var(--c-text-muted, #64748B);
    line-height: 1.45;
    margin-bottom: 6px;
}
.home-country-op {
    font-size: 12px;
    color: var(--c-text-p, #475569);
    line-height: 1.4;
    margin-bottom: 4px;
}
.home-country-op strong {
    color: var(--c-text-h, #0F172A);
}
.home-country-cta {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-brand-dark, #064E3B);
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px dashed var(--c-border, #E2E8F0);
}

/* Responsive */
@media (max-width: 1024px) {
    .home-country-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .home-country-section { padding: 18px 14px; }
    .home-country-grid { grid-template-columns: 1fr; gap: 10px; }
    .home-country-head h2 { font-size: 19px; }
}

/* ===========================================================
   REVIEWS v2.2 — Trust Breakdown / Licence Verify / Coverage
   =========================================================== */

/* Trust Index Breakdown — 5 stacked sub-score rows with progress bars */
.trust-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--c-bg-surface, #fff);
    border: 1px solid var(--c-border, #E2E8F0);
    border-radius: 10px;
    padding: 16px 18px;
}
.trust-breakdown .tb-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--c-border, #E2E8F0);
}
.trust-breakdown .tb-row:last-child { border-bottom: none; padding-bottom: 0; }
.trust-breakdown .tb-row:first-child { padding-top: 0; }
.trust-breakdown .tb-row-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}
.trust-breakdown .tb-row-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-text-h, #0F172A);
}
.trust-breakdown .tb-row-score {
    font-size: 14px;
    font-weight: 800;
    color: var(--c-brand-dark, #064E3B);
    font-variant-numeric: tabular-nums;
}
.trust-breakdown .tb-row-bar {
    height: 8px;
    background: var(--c-bg-body, #F8FAFC);
    border-radius: 999px;
    overflow: hidden;
}
.trust-breakdown .tb-row-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--c-brand, #10B981), var(--c-brand-dark, #064E3B));
    border-radius: 999px;
    transition: width 0.4s ease;
}
.trust-breakdown .tb-row-note {
    font-size: 12.5px;
    color: var(--c-text-muted, #64748B);
    line-height: 1.5;
}

/* Licence Verification — card grid (1xBet has up to 4 jurisdictions) */
.license-verify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}
.license-verify-card {
    background: var(--c-bg-surface, #fff);
    border: 1px solid var(--c-border, #E2E8F0);
    border-left: 4px solid var(--c-brand, #10B981);
    border-radius: 10px;
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.license-verify-card .lvc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.license-verify-card .lvc-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.license-verify-card .lvc-status-active {
    background: #D1FAE5;
    color: #065F46;
}
.license-verify-card .lvc-status svg { width: 12px; height: 12px; }
.license-verify-card .lvc-country {
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-muted, #64748B);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.license-verify-card .lvc-regulator {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--c-text-h, #0F172A);
    line-height: 1.35;
    margin: 0;
}
.license-verify-card .lvc-number {
    font-size: 12.5px;
    color: var(--c-text-p, #334155);
}
.license-verify-card .lvc-number code {
    background: var(--c-bg-body, #F8FAFC);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--c-text-h, #0F172A);
    border: 1px solid var(--c-border, #E2E8F0);
}
.license-verify-card .lvc-verify-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-brand-dark, #064E3B);
    text-decoration: none;
    margin-top: auto;
}
.license-verify-card .lvc-verify-link:hover { text-decoration: underline; }
.license-verify-card .lvc-verify-link svg { width: 11px; height: 11px; }

/* Country Coverage Table */
.country-coverage-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    border: 1px solid var(--c-border, #E2E8F0);
    border-radius: 8px;
    overflow: hidden;
    background: var(--c-bg-surface, #fff);
}
.country-coverage-table thead { background: #F0FDF4; }
.country-coverage-table th,
.country-coverage-table td {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-border, #E2E8F0);
}
.country-coverage-table thead th {
    font-size: 11px;
    font-weight: 800;
    color: var(--c-text-h, #0F172A);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.country-coverage-table tbody tr:last-child th,
.country-coverage-table tbody tr:last-child td { border-bottom: none; }
.country-coverage-table tbody tr:hover { background: #F8FAFC; }
.country-coverage-table th[scope="row"] {
    font-weight: 700;
    color: var(--c-text-h, #0F172A);
}
.country-coverage-table code {
    background: var(--c-bg-body, #F8FAFC);
    padding: 1px 6px;
    border-radius: 3px;
    border: 1px solid var(--c-border, #E2E8F0);
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .trust-breakdown { padding: 12px 14px; }
    .trust-breakdown .tb-row-name { font-size: 13px; }
    .license-verify-grid { grid-template-columns: 1fr; }
    .country-coverage-table { font-size: 12.5px; }
    .country-coverage-table th,
    .country-coverage-table td { padding: 8px 10px; }
}
