
    /* SCOPED CSS: Strictly affects only content inside .content-wrapper */
    .content-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #fff;
        max-width: 1300px; /* Wide layout for PC */
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    /* Scoped Typography */
    .content-wrapper p, 
    .content-wrapper li, 
    .content-wrapper td, 
    .content-wrapper th, 
    .content-wrapper span, 
    .content-wrapper a {
        font-size: 16px;
    }

    /* H2 & H3 Styling - Optimized for Ueeshop TOC detection */
    .content-wrapper h2 {
        font-size: 20px;
        font-weight: 600;
        color: #222;
        margin-top: 30px;
        margin-bottom: 15px;
        background-color: #f9f9f9;
        padding: 10px 15px;
        border-left: 4px solid #d32f2f;
    }

    .content-wrapper h3 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    /* Links */
    .content-wrapper a {
        color: #0066cc;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s;
    }
    .content-wrapper a:hover {
        color: #004499;
        text-decoration: underline;
    }

    /* Data Tables */
    .content-wrapper .tech-table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
    }
    .content-wrapper .tech-table th, 
    .content-wrapper .tech-table td {
        border: 1px solid #e0e0e0;
        padding: 12px 15px;
        text-align: left;
    }
    .content-wrapper .tech-table th {
        background-color: #f4f4f4;
        width: 30%;
        color: #333;
        font-weight: 600;
    }

    /* Images */
    .content-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* FAQ Section */
    .content-wrapper .faq-item {
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    .content-wrapper .faq-question {
        font-weight: 700;
        color: #d32f2f;
        display: block;
        margin-bottom: 8px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .content-wrapper {
            padding: 15px;
            width: 100%;
        }
        .content-wrapper h2 {
            margin-top: 20px;
            font-size: 18px;
        }
        .content-wrapper p {
            margin-bottom: 12px;
            line-height: 1.5;
            text-align: left;
        }
        .content-wrapper .tech-table th, 
        .content-wrapper .tech-table td {
            padding: 8px;
            font-size: 14px;
        }
    }
