* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #fafafa;
    color: #1a1a1a;
    line-height: 1.6;
}

nav {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

h2 {
    font-size: 28px;
    margin: 48px 0 20px 0;
    font-weight: 600;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 12px;
}

h3 {
    font-size: 20px;
    margin: 24px 0 12px 0;
    font-weight: 600;
}

h4 {
    font-size: 16px;
    margin: 20px 0 12px 0;
    font-weight: 600;
    color: #333;
}

.section {
    margin-bottom: 60px;
}

code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #c7254e;
}

pre {
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 16px 0;
}

pre code {
    background: none;
    color: #fff;
    padding: 0;
}

.info-box {
    background: #f0f7ff;
    border-left: 4px solid #0066cc;
    padding: 16px;
    margin: 16px 0;
    border-radius: 4px;
}

.info-box.warning {
    background: #fff3cd;
    border-left-color: #ffa500;
}

.endpoint {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}

.endpoint-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.method {
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

.method.get {
    background: #e8f5e9;
    color: #2e7d32;
}

.method.post {
    background: #e3f2fd;
    color: #1565c0;
}

.path {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    background: #fff;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

th {
    background: #f9f9f9;
    font-weight: 600;
    font-size: 14px;
}

td {
    font-size: 14px;
}

tr:last-child td {
    border-bottom: none;
}

ul {
    margin: 16px 0;
    padding-left: 24px;
}

li {
    margin: 8px 0;
}

p {
    margin: 12px 0;
}