@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Fira+Code:wght@400;500&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

code, pre {
    font-family: 'Fira Code', monospace;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.code-bg {
    background: #1e1e1e;
}

.sidebar-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.response-bg {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.method-get {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.parameter-required {
    background: #f87171;
    color: white;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.parameter-optional {
    background: #6b7280;
    color: white;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.copy-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.endpoint-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.endpoint-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.lottery-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin: 2px;
}

.lottery-megasena { background: #10b981; color: white; }
.lottery-quina { background: #3b82f6; color: white; }
.lottery-lotofacil { background: #8b5cf6; color: white; }
.lottery-lotomania { background: #f59e0b; color: white; }
.lottery-timemania { background: #ef4444; color: white; }
.lottery-duplasena { background: #06b6d4; color: white; }
.lottery-federal { background: #6b7280; color: white; }
.lottery-loteca { background: #84cc16; color: white; }
.lottery-diadesorte { background: #ec4899; color: white; }
.lottery-supersete { background: #f97316; color: white; }
.lottery-milionaria { background: #7c3aed; color: white; }

.sticky-toc {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.json-key { color: #3b82f6; }
.json-value { color: #10b981; }
.json-string { color: #f59e0b; }
.json-number { color: #ef4444; }