    /* 1. CORE SETUP */
    .fb-tmi-scope {
        background: #0a0a0a;
        color: #fff;
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .fb-tmi-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
        width: 100%;
        margin-top: 50px;
    }

    /* 2. TITLES (Left Aligned) */
    .fb-tmi-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        font-weight: 800;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
        text-align: left;
    }

    .fb-tmi-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 5px;
        background: #ffcc00;
    }

    .fb-tmi-title span {
        color: #ffcc00;
    }

    .fb-tmi-header-left {
        margin-bottom: 40px;
    }

    /* 3. HERO SECTION (Diagnostic Theme) */
    .fb-tmi-hero {
        padding: clamp(80px, 15vh, 180px) 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 40%, rgba(0, 0, 0, 0.5) 100%),
            url('') center/cover;
        text-align: left;
    }

    .fb-tmi-badge {
        color: #ffcc00;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .fb-tmi-h1 {
        font-size: clamp(2.2rem, 8vw, 3.8rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .fb-tmi-p {
        max-width: 600px;
        color: #ccc;
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .fb-tmi-btn-wrap {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    /* 4. BUTTONS */
    .fb-tmi-btn-y {
        background: #ffcc00;
        color: #000;
        padding: 16px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
        display: inline-block;
    }

    .fb-tmi-btn-w {
        border: 2px solid #fff;
        color: #fff;
        padding: 14px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
        display: inline-block;
    }

    .fb-tmi-btn-y:hover {
        background: #fff;
        transform: translateY(-3px);
    }

    /* 5. GRID & SPLIT LAYOUT */
    .fb-tmi-section {
        padding: clamp(50px, 10vh, 100px) 0;
    }

    .fb-tmi-bg-dark {
        background: #050505;
    }

    .fb-tmi-split {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .fb-tmi-resp-img {
        width: 100%;
        border-radius: 4px;
        border: 1px solid #333;
        box-shadow: 0 0 30px rgba(255, 204, 0, 0.1);
    }

    .fb-tmi-check-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }

    .fb-tmi-check-item {
        background: #111;
        padding: 12px 20px;
        border-radius: 4px;
        border-left: 3px solid #ffcc00;
        font-weight: 700;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .fb-tmi-check-item span {
        color: #ffcc00;
        font-size: 0.8rem;
    }

    /* 6. CARDS (Technical Style) */
    .fb-tmi-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .fb-tmi-card {
        background: #111;
        border: 1px solid #222;
        border-radius: 8px;
        overflow: hidden;
        transition: 0.4s;
    }

    .fb-tmi-card-head {
        background: #1a1a1a;
        padding: 20px;
        border-bottom: 2px solid #222;
        text-align: center;
    }

    .fb-tmi-active {
        border-color: #ffcc00;
        transform: translateY(-10px);
    }

    .fb-tmi-active .fb-tmi-card-head {
        background: #ffcc00;
        color: #000;
    }

    .fb-tmi-card-body {
        padding: 30px;
    }

    .fb-tmi-mini-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .fb-tmi-mini-list li {
        padding: 10px 0;
        color: #bbb;
        border-bottom: 1px solid #222;
        font-size: 0.95rem;
        display: flex;
        justify-content: space-between;
    }

    .fb-tmi-mini-list li::after {
        content: '→';
        color: #ffcc00;
    }

    /* 7. DUAL INFO BOXES */
    .fb-tmi-dual {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .fb-tmi-info-card {
        padding: clamp(30px, 5vw, 50px);
        background: #111;
        border: 1px solid #222;
        border-radius: 4px;
    }

    .fb-tmi-yellow {
        background: #ffcc00;
        color: #000;
        border: none;
    }

    .fb-tmi-ul {
        list-style: none;
        padding: 0;
        margin-top: 25px;
    }

    .fb-tmi-ul li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        padding-left: 30px;
        font-weight: 700;
    }

    .fb-tmi-yellow .fb-tmi-ul li {
        border-bottom-color: rgba(0, 0, 0, 0.1);
    }

    .fb-tmi-ul li::before {
        content: '◈';
        position: absolute;
        left: 0;
        color: #ffcc00;
    }

    .fb-tmi-yellow .fb-tmi-ul li::before {
        color: #000;
    }

    /* 8. RESPONSIVE DESIGN */
    @media (max-width: 992px) {
        .fb-tmi-split {
            grid-template-columns: 1fr;
        }

        .fb-tmi-img-box {
            order: -1;
        }

        .fb-tmi-hero {
            text-align: left;
        }
    }

    @media (max-width: 600px) {
        .fb-tmi-hero {
            text-align: center;
        }

        .fb-tmi-badge {
            justify-content: center;
        }

        .fb-tmi-btn-wrap {
            flex-direction: column;
            align-items: center;
        }

        .fb-tmi-btn-y,
        .fb-tmi-btn-w {
            width: 100%;
            text-align: center;
            max-width: 300px;
        }

        .fb-tmi-h1 {
            font-size: 2.2rem;
        }

        .fb-tmi-title {
            text-align: center;
        }

        .fb-tmi-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
    }