
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #0f172a;
            color: #e2e8f0;
            padding: 40px 20px;
            line-height: 1.6;
        }
        .container {
            max-width: 900px;
            margin: 0 auto;
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .subtitle {
            color: #94a3b8;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }
        .api-section {
            background: #1e293b;
            border-radius: 12px;
            padding: 32px;
            margin-bottom: 24px;
            border: 1px solid #334155;
        }
        h2 {
            color: #38bdf8;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .code-block {
            background: #0f172a;
            border: 1px solid #334155;
            border-radius: 8px;
            padding: 20px;
            overflow-x: auto;
            margin: 16px 0;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            color: #34d399;
        }
        .example {
            background: #1e293b;
            border-left: 4px solid #38bdf8;
            padding: 16px;
            margin: 16px 0;
            border-radius: 4px;
        }
        .example-url {
            color: #60a5fa;
            word-break: break-all;
        }
        code {
            background: #0f172a;
            padding: 2px 6px;
            border-radius: 4px;
            color: #34d399;
            font-size: 0.9em;
        }
        .response-example {
            background: #0f172a;
            border: 1px solid #334155;
            border-radius: 8px;
            padding: 20px;
            overflow-x: auto;
            margin: 16px 0;
        }
        .response-example pre {
            color: #34d399;
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            white-space: pre-wrap;
            word-wrap: break-word;
        }
        .param-table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0;
        }
        .param-table th,
        .param-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #334155;
        }
        .param-table th {
            color: #38bdf8;
            font-weight: 600;
        }
        .status-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 600;
            margin: 4px 0;
        }
        .status-ok { background: #10b981; color: #fff; }
        .status-missing { background: #f59e0b; color: #fff; }
        .status-error { background: #ef4444; color: #fff; }
        .test-form {
            background: #1e293b;
            border-radius: 12px;
            padding: 32px;
            margin-top: 32px;
            border: 1px solid #334155;
        }
        .test-form input {
            width: 100%;
            padding: 12px 16px;
            background: #0f172a;
            border: 1px solid #334155;
            border-radius: 8px;
            color: #e2e8f0;
            font-size: 1rem;
            margin-bottom: 16px;
        }
        .test-form input:focus {
            outline: none;
            border-color: #38bdf8;
            box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
        }
        .test-form button {
            background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
            color: #0f172a;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .test-form button:hover {
            transform: translateY(-2px);
        }
        .test-result {
            margin-top: 24px;
            padding: 20px;
            background: #0f172a;
            border-radius: 8px;
            border: 1px solid #334155;
            display: none;
        }
        .test-result pre {
            color: #34d399;
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            white-space: pre-wrap;
            word-wrap: break-word;
            overflow-x: auto;
        }
        .note {
            background: #1e3a8a;
            border-left: 4px solid #38bdf8;
            padding: 16px;
            margin: 16px 0;
            border-radius: 4px;
            color: #93c5fd;
        }
    


.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}
