
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f0f23;
            color: #e0e0e0;
            min-height: 100vh;
            line-height: 1.65;
        }
        .container { max-width: 820px; margin: 0 auto; padding: 40px 24px 80px; }
        .crumb {
            color: rgba(255,255,255,0.62);
            font-size: 13px;
            margin-bottom: 20px;
        }
        .crumb a { color: #10B981; text-decoration: none; }
        .crumb a:hover { text-decoration: underline; }

        h1 {
            font-size: 36px;
            font-weight: 900;
            color: white;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .lede {
            font-size: 17px;
            color: rgba(255,255,255,0.6);
            margin-bottom: 36px;
            line-height: 1.5;
        }

        h2 {
            font-size: 24px;
            font-weight: 800;
            color: white;
            margin: 40px 0 14px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding-bottom: 10px;
        }
        h3 {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin: 24px 0 8px;
        }
        p { color: rgba(255,255,255,0.7); margin: 0 0 14px; }
        p strong { color: white; font-weight: 700; }

        ul { color: rgba(255,255,255,0.7); padding-left: 22px; margin-bottom: 18px; }
        li { margin-bottom: 6px; }
        li strong { color: white; }

        code, pre {
            font-family: 'Cascadia Code', Consolas, 'Courier New', monospace;
            font-size: 13px;
        }
        code.inline {
            background: rgba(96,165,250,0.1);
            color: #93c5fd;
            padding: 2px 7px;
            border-radius: 5px;
        }
        pre {
            background: #0a0a1a;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            padding: 14px 16px;
            overflow-x: auto;
            color: #d1d5db;
            margin: 12px 0;
            font-size: 12px;
            line-height: 1.6;
        }

        .panel {
            background: rgba(99,102,241,0.06);
            border: 1px solid rgba(99,102,241,0.25);
            border-radius: 14px;
            padding: 18px 22px;
            margin: 18px 0;
        }
        .panel.warn {
            background: rgba(251,191,36,0.06);
            border-color: rgba(251,191,36,0.25);
        }
        .panel .badge {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            font-weight: 800;
            margin-bottom: 6px;
            color: #a5b4fc;
        }
        .panel.warn .badge { color: #fbbf24; }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 18px 0;
            font-size: 13px;
        }
        th, td {
            text-align: left;
            padding: 10px 12px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            vertical-align: top;
        }
        th {
            color: rgba(255,255,255,0.85);
            font-weight: 700;
            background: rgba(255,255,255,0.03);
        }
        td { color: rgba(255,255,255,0.7); }
        td.status-mit { color: #6ee7b7; font-weight: 600; }
        td.status-res { color: #fcd34d; font-weight: 600; }
        td.status-oos { color: rgba(255,255,255,0.62); font-weight: 600; }

        .footer {
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.62);
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
        }
        .footer a:hover { color: #10B981; }
    