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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

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

header {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
    color: #667eea;
    margin-bottom: 10px;
}

header p {
    color: #666;
}

.category {
    margin-bottom: 40px;
}

.category h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 24px;
}

.endpoint-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.endpoint-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

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

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

.method.get {
    background: #61affe;
    color: white;
}

.method.post {
    background: #49cc90;
    color: white;
}

.route {
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: #333;
    flex: 1;
}

.description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

h4 {
    margin: 20px 0 10px 0;
    color: #333;
}

.params-list {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.param {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.param:last-child {
    border-bottom: none;
}

.param strong {
    color: #333;
}

.required {
    color: #e53e3e;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.optional {
    color: #48bb78;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.param-desc {
    color: #666;
    font-size: 14px;
}

.param code {
    background: #e0e0e0;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    margin-top: 5px;
    display: inline-block;
}

.response-example {
    background: #2d3748;
    color: #a0aec0;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
}

.try-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.2s;
}

.try-btn:hover {
    background: #5568d3;
}
