
    /* Scoped CSS: Isolates styles to prevent conflicts */
    .fuji-guide-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Typography Enforcement */
    .fuji-guide-wrapper p, 
    .fuji-guide-wrapper li, 
    .fuji-guide-wrapper td, 
    .fuji-guide-wrapper th, 
    .fuji-guide-wrapper span, 
    .fuji-guide-wrapper a {
        font-size: 16px !important;
    }

    /* Post Meta Data (Dates & Reviewer) */
    .post-meta {
        font-size: 14px !important;
        color: #666;
        background-color: #f8f9fa;
        padding: 10px 15px;
        border-radius: 4px;
        margin-bottom: 25px;
        border-left: 3px solid #d32f2f;
    }

    /* Headings */
    .fuji-guide-wrapper h2 {
        font-size: 22px !important;
        font-weight: 700;
        color: #111;
        margin-top: 40px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid #f0f0f0;
        line-height: 1.3;
    }
    .fuji-guide-wrapper h2:first-of-type {
        margin-top: 0 !important;
    }
    .fuji-guide-wrapper h3 {
        font-size: 18px !important;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 10px;
        color: #444;
    }

    /* Links */
    .fuji-guide-wrapper a {
        color: #d32f2f;
        text-decoration: underline;
        text-decoration-color: rgba(211, 47, 47, 0.3);
        font-weight: 600;
        transition: all 0.2s ease;
    }
    .fuji-guide-wrapper a:hover {
        text-decoration-color: #d32f2f;
        color: #b71c1c;
    }

    /* Images */
    .fuji-guide-wrapper img {
        max-width: 600px; 
        width: 100%;      
        height: auto;
        display: block;
        margin: 25px auto; 
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .img-caption {
        text-align: center;
        font-size: 14px !important;
        color: #666;
        margin-top: -15px; 
        margin-bottom: 25px;
        font-style: italic;
    }

    /* Video Embed */
    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        margin: 30px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 6px;
        overflow: hidden;
    }
    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Tables */
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        border: 1px solid #eee;
    }
    .tech-table th, .tech-table td {
        border: 1px solid #eee;
        padding: 12px;
        text-align: left;
    }
    .tech-table th {
        background-color: #f8f8f8;
        font-weight: 700;
        color: #111;
    }

    /* Feature Blocks */
    .info-box {
        background-color: #f9f9f9;
        border-left: 4px solid #333;
        padding: 15px 20px;
        margin: 25px 0;
    }
    .info-box h3 {
        margin-top: 0;
    }
    
    /* E-E-A-T Case Study Box */
    .case-study-box {
        background-color: #f0fdf4;
        border-left-color: #16a34a;
    }

    /* Troubleshooting Table */
    .trouble-table th {
        background-color: #ffebee; 
    }
    
    /* Author Bio Box */
    .author-bio {
        background-color: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 25px;
        margin-top: 50px;
        display: flex;
        align-items: center;
        gap: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }
    .author-bio img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin: 0; 
        object-fit: cover;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-guide-wrapper { padding: 0; }
        .tech-table { display: block; overflow-x: auto; white-space: nowrap; }
        .author-bio { flex-direction: column; text-align: center; }
    }
