@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&display=swap');
        body { font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif; }
        .doc-container { max-width: 800px; margin: 0 auto; padding: 20px; }
        .endpoint-card {
            background: var(--ios-card);
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        .method {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 12px;
            margin-right: 8px;
            color: white;
            letter-spacing: 0.5px;
        }
        .method.get  { background: #34c759; }
        .method.post { background: #0a84ff; }
        .url { font-family: 'Fira Code', monospace; color: var(--ios-text-secondary); font-size: 14px; }
        .section-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            border-left: 5px solid var(--ios-primary);
            padding-left: 15px;
        }
        .pre-wrapper { position: relative; margin-top: 12px; }
        pre {
            background: var(--ios-bg);
            padding: 15px;
            border-radius: 12px;
            overflow: auto;
            border: 1px solid var(--ios-border);
            margin: 0;
        }
        code { font-family: 'Fira Code', monospace; font-size: 13px; color: var(--ios-primary); }
        .copy-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            background: var(--ios-primary);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.2s;
            font-family: 'Quicksand', sans-serif;
        }
        .copy-btn:hover { opacity: 0.8; }
        .param-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
        .param-table th, .param-table td {
            text-align: left;
            padding: 11px 12px;
            border-bottom: 1px solid var(--ios-border);
            font-size: 14px;
        }
        .param-table th { font-weight: 700; color: var(--ios-text-secondary); font-size: 12px; text-transform: uppercase; }
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            font-size: 80px;
            font-weight: 800;
            color: rgba(10, 132, 255, 0.05);
            pointer-events: none;
            user-select: none;
        }
        .badge-required {
            display: inline-block;
            background: rgba(255,59,48,0.1);
            color: #ff3b30;
            border-radius: 6px;
            padding: 2px 7px;
            font-size: 11px;
            font-weight: 700;
        }
        .badge-optional {
            display: inline-block;
            background: rgba(52,199,89,0.1);
            color: #34c759;
            border-radius: 6px;
            padding: 2px 7px;
            font-size: 11px;
            font-weight: 700;
        }
        .endpoint-row {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }
        .note-box {
            background: rgba(10, 132, 255, 0.08);
            border-left: 4px solid var(--ios-primary);
            border-radius: 0 10px 10px 0;
            padding: 12px 15px;
            font-size: 13px;
            margin-top: 12px;
            color: var(--ios-text-secondary);
        }
        .note-box i { color: var(--ios-primary); margin-right: 6px; }
