                :root {
                    --bg: #0f1115;
                    --sidebar: #15181e;
                    --panel: #191d24;
                    --border: #292e38;
                    --text: #e7eaf0;
                    --muted: #9299a8;
                    --accent: #9d7cff;
                    --accent-soft: rgba(157,124,255,.12);
                    --code: #111318;
                }

                * {
                    box-sizing: border-box;
                }

                html {
                    scroll-behavior: smooth;
                }

                body {
                    margin: 0;
                    background: var(--bg);
                    color: var(--text);
                    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont,
                                 "Segoe UI", sans-serif;
                    line-height: 1.65;
                }

                a {
                    color: var(--accent);
                    text-decoration: none;
                }

                a:hover {
                    text-decoration: underline;
                }

                .topbar {
                    height: 64px;
                    position: fixed;
                    inset: 0 0 auto 0;
                    z-index: 50;
                    display: flex;
                    align-items: center;
                    gap: 16px;
                    padding: 0 24px;
                    background: rgba(15,17,21,.92);
                    border-bottom: 1px solid var(--border);
                    backdrop-filter: blur(12px);
                }

                .brand {
                    color: var(--text);
                    font-size: 18px;
                    font-weight: 700;
                    text-decoration: none;
                }

                .brand span {
                    color: var(--accent);
                }

                .menu-button {
                    display: none;
                    background: transparent;
                    color: var(--text);
                    border: 0;
                    font-size: 24px;
                    cursor: pointer;
                }

                .wiki-layout {
                    display: flex;
                    min-height: 100vh;
                    padding-top: 64px;
                }

                .sidebar {
                    position: fixed;
                    top: 64px;
                    bottom: 0;
                    width: 300px;
                    overflow-y: auto;
                    padding: 24px 16px 60px;
                    background: var(--sidebar);
                    border-right: 1px solid var(--border);
                }

                .sidebar-title {
                    padding: 0 12px 14px;
                    color: var(--muted);
                    font-size: 12px;
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: .08em;
                }

                .nav-node a,
                .nav-node span {
                    display: block;
                    padding: 7px 10px;
                    border-radius: 7px;
                    color: var(--muted);
                }

                .nav-node a:hover {
                    background: var(--accent-soft);
                    color: var(--text);
                    text-decoration: none;
                }

                .nav-node.active > a {
                    background: var(--accent-soft);
                    color: var(--accent);
                    font-weight: 600;
                }

                .nav-level-0 {
                    margin-top: 10px;
                    font-weight: 700;
                }

                .nav-level-1 {
                    padding-left: 10px;
                }

                .nav-level-2 {
                    padding-left: 20px;
                }

                .nav-level-3 {
                    padding-left: 30px;
                    font-size: 14px;
                }

                .nav-level-4 {
                    padding-left: 42px;
                    font-size: 13px;
                }

                .content {
                    width: 100%;
                    margin-left: 300px;
                }

                .content-inner {
                    max-width: 1050px;
                    padding: 46px 64px 80px;
                    margin: 0 auto;
                }

                .breadcrumb {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 8px;
                    margin-bottom: 26px;
                    color: var(--muted);
                    font-size: 13px;
                }

                .wiki-content h1 {
                    margin-top: 0;
                    font-size: 38px;
                    line-height: 1.2;
                }

                .wiki-content h2 {
                    margin-top: 42px;
                    padding-bottom: 8px;
                    border-bottom: 1px solid var(--border);
                }

                .wiki-content h3 {
                    margin-top: 32px;
                }

                .wiki-content p,
                .wiki-content li {
                    color: #cbd0da;
                }

                .wiki-content code {
                    padding: 2px 6px;
                    background: var(--panel);
                    border: 1px solid var(--border);
                    border-radius: 5px;
                    font-family: "JetBrains Mono", Consolas, monospace;
                    font-size: .9em;
                }

                .wiki-content pre {
                    position: relative;
                    overflow-x: auto;
                    margin: 22px 0;
                    padding: 18px;
                    background: var(--code);
                    border: 1px solid var(--border);
                    border-radius: 10px;
                }

                .wiki-content pre code {
                    padding: 0;
                    background: transparent;
                    border: 0;
                    color: #d7dbe5;
                }

                .copy-code {
                    position: absolute;
                    top: 8px;
                    right: 8px;
                    padding: 5px 8px;
                    background: var(--panel);
                    color: var(--muted);
                    border: 1px solid var(--border);
                    border-radius: 6px;
                    cursor: pointer;
                }

                .wiki-content blockquote {
                    margin: 20px 0;
                    padding: 10px 18px;
                    background: var(--accent-soft);
                    border-left: 3px solid var(--accent);
                    border-radius: 0 7px 7px 0;
                }

                .wiki-content table {
                    width: 100%;
                    margin: 24px 0;
                    border-collapse: collapse;
                }

                .wiki-content th,
                .wiki-content td {
                    padding: 10px 12px;
                    border: 1px solid var(--border);
                    text-align: left;
                }

                .wiki-content th {
                    background: var(--panel);
                }

                .lead {
                    color: var(--muted);
                    font-size: 18px;
                }

                .product-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                    gap: 18px;
                    margin-top: 32px;
                }

                .product-card {
                    padding: 22px;
                    background: var(--panel);
                    border: 1px solid var(--border);
                    border-radius: 12px;
                }

                .product-card h2 {
                    margin-top: 0;
                }

                .versions {
                    display: flex;
                    gap: 8px;
                    flex-wrap: wrap;
                }

                .version-button {
                    padding: 7px 12px;
                    background: var(--accent-soft);
                    border-radius: 7px;
                }

                .wiki-footer {
                    margin-top: 70px;
                    padding-top: 20px;
                    color: var(--muted);
                    border-top: 1px solid var(--border);
                    font-size: 13px;
                }

                .wiki-search {
    position: relative;
    margin: 0 6px 20px;
}

.wiki-search input {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
}

.wiki-search input:focus {
    border-color: var(--accent);
}

.wiki-search input::placeholder {
    color: var(--muted);
}

.wiki-search-results {
    display: none;
    position: absolute;
    z-index: 80;
    top: 44px;
    left: 0;
    right: 0;
    max-height: 480px;
    overflow-y: auto;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 9px;
    box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.wiki-search-results.open {
    display: block;
}

.search-result {
    display: block;
    padding: 11px 12px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.search-result:last-child {
    border-bottom: 0;
}

.search-result:hover {
    background: var(--accent-soft);
    text-decoration: none;
}

.search-result-title {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 600;
}

.search-result-meta {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.search-result-empty {
    padding: 14px;
    color: var(--muted);
    font-size: 13px;
}
.language-selector {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.language-selector a {
    padding: 5px 8px;
    color: var(--muted);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.language-selector a:hover {
    background: var(--accent-soft);
    color: var(--text);
    text-decoration: none;
}
                @media (max-width: 900px) {

                    .menu-button {
                        display: block;
                    }

                    .sidebar {
                        z-index: 40;
                        transform: translateX(-100%);
                        transition: transform .2s ease;
                    }

                    .sidebar.open {
                        transform: translateX(0);
                    }

                    .content {
                        margin-left: 0;
                    }

                    .content-inner {
                        padding: 32px 22px 70px;
                    }
                }
