        :root {
            --docs-bg: #050816;
            --docs-bg-soft: #0c1226;
            --docs-surface: #111a30;
            --docs-surface-2: #0f182c;
            --docs-border: #273753;
            --docs-text: #dce7f8;
            --docs-muted: #9fb0c9;
            --docs-primary: #5fa3ff;
            --docs-primary-soft: rgba(95, 163, 255, 0.18);
            --docs-success: #22c58b;
            --docs-get: #38bdf8;
            --docs-post: #34d399;
        }

        .docs-page {
            background:
                radial-gradient(900px 500px at 85% -10%, rgba(59, 130, 246, 0.18), transparent 55%),
                radial-gradient(700px 420px at 10% 0%, rgba(16, 185, 129, 0.08), transparent 60%),
                var(--docs-bg);
            color: var(--docs-text);
        }

        /* Scrollbar theme (Firefox) */
        html,
        body,
        #docsSidebar,
        .overflow-x-auto,
        .docs-code-shell,
        .docs-code-scroll,
        .code-block {
            scrollbar-width: thin;
            scrollbar-color: rgba(96, 165, 250, 0.55) rgba(8, 14, 28, 0.95);
        }

        /* Scrollbar theme (Chromium/WebKit) */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }

        ::-webkit-scrollbar-track {
            background: linear-gradient(180deg, rgba(8, 14, 28, 0.95), rgba(5, 10, 20, 0.95));
        }

        ::-webkit-scrollbar-thumb {
            border-radius: 999px;
            border: 2px solid rgba(8, 14, 28, 0.95);
            background: linear-gradient(180deg, rgba(96, 165, 250, 0.72), rgba(59, 130, 246, 0.58));
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, rgba(125, 179, 255, 0.86), rgba(96, 165, 250, 0.72));
        }

        ::-webkit-scrollbar-corner {
            background: rgba(8, 14, 28, 0.95);
        }

        .docs-topbar {
            position: sticky;
            top: 0;
            z-index: 45;
            border-bottom: 1px solid rgba(39, 55, 83, 0.85);
            background: rgba(5, 8, 22, 0.82);
            backdrop-filter: blur(12px);
        }

        .skip-link {
            position: absolute;
            top: -999px;
            left: 0.8rem;
            z-index: 110;
            padding: 0.7rem 0.95rem;
            border-radius: 0.55rem;
            background: #2563eb;
            color: #ffffff;
            font-weight: 700;
            box-shadow: 0 10px 24px rgba(2, 6, 23, 0.35);
        }

        .skip-link:focus-visible {
            top: 0.8rem;
        }

        .docs-topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            min-height: 64px;
        }

        .docs-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .docs-brand-logo {
            width: auto;
            height: 2rem;
            object-fit: contain;
            flex-shrink: 0;
        }

        .docs-brand-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
            border-radius: 0.625rem;
            color: #dbeafe;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.18));
            border: 1px solid rgba(96, 165, 250, 0.38);
        }

        .docs-brand-title {
            font-size: 1.05rem;
            font-weight: 800;
            line-height: 1.05;
            color: #f8fbff;
            letter-spacing: 0.01em;
        }

        .docs-brand-subtitle {
            font-size: 0.8rem;
            color: var(--docs-muted);
            line-height: 1.1;
            margin-top: 0.2rem;
        }

        .docs-meta {
            display: flex;
            align-items: center;
            gap: 0.45rem;
        }

        .docs-topbar-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .docs-back-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.48rem 0.8rem;
            border-radius: 0.65rem;
            border: 1px solid rgba(96, 165, 250, 0.3);
            background: rgba(15, 23, 42, 0.72);
            color: #dbeafe;
            font-size: 0.82rem;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .docs-back-link:hover {
            color: #f8fbff;
            border-color: rgba(96, 165, 250, 0.55);
            background: rgba(30, 58, 138, 0.24);
        }

        .docs-mobile-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 2.35rem;
            height: 2.35rem;
            border-radius: 0.6rem;
            border: 1px solid rgba(71, 85, 105, 0.95);
            background: rgba(15, 23, 42, 0.85);
            color: #f8fbff;
            box-shadow: 0 8px 18px rgba(2, 6, 23, 0.35);
            flex-shrink: 0;
        }

        a:focus-visible,
        button:focus-visible {
            outline: 2px solid rgba(147, 197, 253, 0.95);
            outline-offset: 2px;
            border-radius: 0.5rem;
        }

        .docs-chip {
            display: inline-flex;
            align-items: center;
            height: 1.6rem;
            padding: 0 0.65rem;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            border: 1px solid rgba(96, 165, 250, 0.3);
            background: rgba(30, 64, 175, 0.18);
            color: #bfdbfe;
        }

        .docs-chip.docs-chip-success {
            border-color: rgba(16, 185, 129, 0.35);
            background: rgba(6, 95, 70, 0.22);
            color: #a7f3d0;
        }

        .docs-page .container {
            max-width: 1320px;
        }

        .docs-layout {
            align-items: start;
        }

        .docs-main .docs-panel,
        .docs-main .docs-footer {
            background: linear-gradient(180deg, rgba(17, 26, 48, 0.92), rgba(12, 20, 37, 0.95));
            border: 1px solid var(--docs-border);
            box-shadow: 0 12px 30px rgba(2, 6, 23, 0.25);
        }

        .docs-main .docs-hero {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(73, 127, 213, 0.6);
            background: linear-gradient(112deg, rgba(29, 78, 216, 0.88), rgba(15, 23, 42, 0.92) 72%);
            box-shadow: 0 18px 42px rgba(15, 23, 42, 0.48);
        }

        .docs-main .docs-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 95% 10%, rgba(191, 219, 254, 0.2), transparent 35%);
            pointer-events: none;
        }

        .docs-quick-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            border: 1px solid var(--docs-border);
            border-radius: 0.95rem;
            padding: 0.85rem;
            background: linear-gradient(180deg, rgba(14, 23, 43, 0.86), rgba(9, 15, 28, 0.92));
        }

        .docs-quick-nav a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.45rem 0.75rem;
            border-radius: 0.65rem;
            font-size: 0.78rem;
            color: #c9d9f3;
            border: 1px solid rgba(39, 55, 83, 0.95);
            background: rgba(15, 23, 42, 0.72);
            transition: all 0.2s ease;
        }

        .docs-quick-nav a:hover {
            color: #f0f7ff;
            border-color: rgba(96, 165, 250, 0.5);
            background: rgba(30, 58, 138, 0.28);
        }

        #docsSidebar {
            background: linear-gradient(180deg, rgba(14, 22, 39, 0.96), rgba(9, 15, 27, 0.96));
            border: 1px solid var(--docs-border);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(8px);
        }

        #docsSidebar nav a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-radius: 0.65rem;
            border: 1px solid transparent;
            padding: 0.48rem 0.65rem;
            font-weight: 500;
            color: var(--docs-muted);
            line-height: 1.3;
        }

        #docsSidebar nav a.font-semibold {
            color: #d7e4fb;
        }

        #docsSidebar nav a:hover {
            color: #e8f1ff;
            border-color: rgba(59, 130, 246, 0.32);
            background: rgba(30, 64, 175, 0.12);
        }

        #docsSidebar nav a.active {
            color: #f2f8ff;
            border-color: rgba(96, 165, 250, 0.5);
            background: rgba(30, 58, 138, 0.28);
            box-shadow: inset 3px 0 0 var(--docs-primary);
        }

        .docs-page .scroll-mt-20 {
            scroll-margin-top: 6.25rem;
        }

        .endpoint-card {
            margin-top: 0.9rem;
            border: 1px solid rgba(46, 65, 98, 0.88);
            border-radius: 0.9rem;
            background: linear-gradient(180deg, rgba(8, 13, 24, 0.42), rgba(8, 13, 24, 0.24));
            padding: 1rem;
        }

        .endpoint-card > h3 {
            margin-bottom: 0.9rem;
        }

        .http-method {
            border: 1px solid transparent;
            font-weight: 700;
            letter-spacing: 0.02em;
            box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
        }

        .http-method.method-get {
            color: #d6f2ff;
            border-color: rgba(56, 189, 248, 0.45);
            background: linear-gradient(180deg, rgba(14, 116, 144, 0.42), rgba(12, 74, 110, 0.42));
        }

        .http-method.method-post {
            color: #d8fcee;
            border-color: rgba(52, 211, 153, 0.5);
            background: linear-gradient(180deg, rgba(4, 120, 87, 0.42), rgba(6, 78, 59, 0.42));
        }

        .endpoint-route {
            display: inline-flex;
            align-items: center;
            padding: 0.2rem 0.55rem;
            border-radius: 0.45rem;
            border: 1px solid rgba(59, 130, 246, 0.3);
            background: rgba(30, 58, 138, 0.2);
            color: #bfdbfe;
            font-size: 0.83rem;
            margin-left: 0.55rem;
            white-space: nowrap;
            overflow-x: auto;
            max-width: calc(100% - 120px);
            vertical-align: middle;
        }

        .docs-code-shell,
        .code-block {
            position: relative;
            border: 1px solid rgba(40, 57, 86, 0.95);
            border-radius: 0.85rem;
            background: linear-gradient(180deg, rgba(8, 14, 29, 0.98), rgba(5, 10, 20, 0.98));
            box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.08);
            overflow: hidden;
        }

        .docs-code-shell::before {
            content: attr(data-code-label);
            position: absolute;
            top: 0.55rem;
            left: 0.75rem;
            font-size: 0.65rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #89a3c9;
            font-weight: 600;
            pointer-events: none;
        }

        .docs-code-shell[data-code-label=""]::before {
            content: "";
        }

        .docs-code-shell pre,
        .code-block pre {
            color: #d9e5fb;
            line-height: 1.58rem;
            font-size: 0.825rem;
        }

        .docs-code-shell pre {
            padding-top: 1.25rem !important;
            display: block;
            max-width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
        }

        .docs-code-shell.is-response {
            border-left: 4px solid rgba(16, 185, 129, 0.95);
        }

        .docs-code-shell button {
            border: 1px solid rgba(71, 85, 105, 0.9);
            background: rgba(30, 41, 59, 0.85);
        }

        .docs-panel table {
            border: 1px solid rgba(39, 55, 83, 0.95);
            border-radius: 0.75rem;
            overflow: hidden;
            background: rgba(9, 14, 27, 0.5);
        }

        .docs-panel table thead {
            background: rgba(12, 22, 41, 0.98);
        }

        .docs-panel table tbody tr:nth-child(even) {
            background: rgba(148, 163, 184, 0.03);
        }

        .required-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 2.25rem;
            padding: 0.16rem 0.5rem;
            border-radius: 999px;
            font-size: 0.71rem;
            font-weight: 700;
            letter-spacing: 0.01em;
            border: 1px solid transparent;
        }

        .required-pill.is-required {
            color: #bbf7d0;
            border-color: rgba(34, 197, 94, 0.42);
            background: rgba(20, 83, 45, 0.45);
        }

        .required-pill.is-optional {
            color: #cbd5e1;
            border-color: rgba(71, 85, 105, 0.65);
            background: rgba(30, 41, 59, 0.6);
        }

        .docs-main h2 {
            letter-spacing: 0.01em;
        }

        .docs-main p,
        .docs-main li {
            color: #c7d5ec;
        }

        @media (min-width: 1024px) {
            .docs-sidebar-col {
                position: sticky;
                top: 5rem;
                align-self: start;
                height: auto;
            }

            #docsSidebar {
                position: static !important;
                inset: auto;
                left: auto;
                right: auto;
                bottom: auto;
                transform: none !important;
                width: 100%;
                height: auto;
                max-height: calc(100vh - 6rem);
                overflow-y: auto;
            }
        }

        @media (max-width: 1023px) {
            .docs-topbar-inner {
                min-height: 58px;
            }

            .docs-back-link {
                display: none;
            }

            .docs-mobile-toggle {
                display: inline-flex;
            }

            .docs-chip {
                height: 1.45rem;
                padding: 0 0.55rem;
                font-size: 0.68rem;
            }

            .docs-brand-logo {
                height: 1.85rem;
            }

            #docsSidebar {
                width: min(68vw, 260px);
                border-radius: 0;
            }

            #docsSidebar nav a {
                padding: 0.38rem 0.55rem;
            }

            .endpoint-card {
                padding: 0.9rem;
            }

            .endpoint-route {
                display: block;
                max-width: 100%;
                margin-left: 0;
                margin-top: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .docs-brand-title {
                font-size: 0.98rem;
            }

            .docs-chip.docs-chip-version {
                display: none;
            }

            .docs-brand-subtitle {
                font-size: 0.74rem;
            }

            #docsSidebar {
                width: min(72vw, 248px);
            }
        }
