* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #020617;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #e2e8f0;
    min-height: 100vh;
}
.bg-glow-1 {
    position: fixed; top: 10%; left: 10%;
    width: 500px; height: 500px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 50%; filter: blur(140px); pointer-events: none;
}
.bg-glow-2 {
    position: fixed; bottom: 15%; right: 10%;
    width: 450px; height: 450px;
    background: rgba(29, 78, 216, 0.05);
    border-radius: 50%; filter: blur(140px); pointer-events: none;
}
.nav {
    position: sticky; top: 0; z-index: 40;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}
.code-block {
    background: #0a0f1a;
    border: 1px solid #1e293b;
    border-radius: 10px;
    padding: 1rem 1.15rem;
    font-family: 'SF Mono', ui-monospace, monospace;
    font-size: 0.78rem;
    overflow-x: auto;
    color: #93c5fd;
    line-height: 1.55;
}
.endpoint-card {
    background: rgba(9, 13, 22, 0.7);
    border: 1px solid rgba(30, 41, 59, 0.7);
    border-radius: 14px;
    padding: 1.35rem 1.5rem;
}
.method-get {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
}
.param-table td, .param-table th {
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
    font-size: 0.78rem;
}
.param-table th {
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.65rem;
}
.badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 9999px;
    letter-spacing: 0.04em;
}
.badge-required { background: rgba(244, 63, 94, 0.15); color: #fb7185; }
.badge-optional { background: rgba(148, 163, 184, 0.12); color: #94a3b8; }
.copy-btn {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}
.copy-btn:hover { background: rgba(59, 130, 246, 0.2); }
a.nav-link {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
a.nav-link:hover, a.nav-link.active { color: #3b82f6; }
