:root {
    --primary: #1A306C;
    --primary-glow: rgba(26, 48, 108, 0.4);
    --primary-hover: #12214c;
    --accent: #00BFA5;
    --accent-glow: rgba(0, 191, 165, 0.3);
    --bg: #0F1721;
    --bg-gradient: radial-gradient(circle at 50% 50%, rgba(26, 48, 108, 0.15) 0%, transparent 60%),
                    radial-gradient(circle at 10% 20%, rgba(0, 191, 165, 0.08) 0%, transparent 40%),
                    linear-gradient(to bottom, #0F1721, #0c121a);
    --card-bg: rgba(27, 37, 49, 0.65);
    --card-border: rgba(255, 255, 255, 0.06);
    --card-border-hover: rgba(0, 191, 165, 0.4);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --code-bg: #0b0f16;
    --sidebar-bg: #0b1118;
    --success: #00BFA5;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #0ea5e9;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    background-image: var(--bg-gradient);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Cyber Grid Background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 85%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 85%);
    pointer-events: none;
    z-index: 0;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(15, 23, 33, 0.8);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Header & Nav */
header {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.9;
}



.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-main);
}

.btn-docs {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-docs:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 48, 108, 0.6);
}

/* Home / Hero Section */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 191, 165, 0.08);
    border: 1px solid rgba(0, 191, 165, 0.2);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.025em;
    animation: fadeIn 1s ease-out;
}

.status-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success);
    box-shadow: 0 0 10px var(--success);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff 30%, #8ca1db 70%, #00BFA5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 48, 108, 0.7);
}

.btn-secondary {
    background: rgba(27, 37, 49, 0.5);
    color: var(--text-main);
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(27, 37, 49, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Features Grid */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(26, 48, 108, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-border-hover);
    box-shadow: 0 10px 30px rgba(26, 48, 108, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(26, 48, 108, 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(26, 48, 108, 0.25);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 15px var(--accent-glow);
    transform: scale(1.05);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Demo / Showcase */
.showcase {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 6rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.showcase-header {
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid var(--card-border);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.window-title {
    font-size: 0.85rem;
    font-family: 'Fira Code', monospace;
    color: var(--text-muted);
    font-weight: 500;
}

.showcase-tabs {
    display: flex;
    background: rgba(15, 23, 42, 0.4);
    border-bottom: 1px solid var(--card-border);
}

.tab-btn {
    background: transparent;
    border: none;
    border-right: 1px solid var(--card-border);
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}

.tab-btn.active {
    background: var(--code-bg);
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

.tab-btn:hover:not(.active) {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.02);
}

.showcase-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--code-bg);
}

@media (max-width: 900px) {
    .showcase-body {
        grid-template-columns: 1fr;
    }
}

.code-panel {
    padding: 2rem;
    overflow-x: auto;
    border-right: 1px solid var(--card-border);
}

@media (max-width: 900px) {
    .code-panel {
        border-right: none;
        border-bottom: 1px solid var(--card-border);
    }
}

.code-panel h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

pre {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0;
}

/* Syntax Highlighting Colors */
.c-keyword { color: #f472b6; font-weight: 600; }
.c-string { color: #34d399; }
.c-number { color: #fb923c; }
.c-comment { color: #64748b; font-style: italic; }
.c-type { color: #38bdf8; }
.c-property { color: #a78bfa; }

/* Call To Action Banner */
.cta-banner {
    background: radial-gradient(circle at 100% 100%, rgba(26, 48, 108, 0.2) 0%, transparent 50%),
                linear-gradient(135deg, rgba(27, 37, 49, 0.6), rgba(15, 23, 33, 0.8));
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #8ca1db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-banner p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
}

/* Footer styling */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 3rem;
    background: rgba(2, 6, 23, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-main);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- Documentation Styles --- */
.app-wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

aside {
    width: 320px;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--card-border);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    z-index: 90;
    transition: transform 0.3s ease;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.search-container {
    margin-bottom: 1.5rem;
    position: relative;
}

.search-input {
    width: 100%;
    background: rgba(15, 23, 33, 0.8);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 0.6rem 1rem 0.6rem 2.2rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 191, 165, 0.15);
}

.search-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    width: 14px;
    height: 14px;
}

.nav-group-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin: 1.5rem 0 0.5rem;
    font-weight: 700;
}

.nav-links-sidebar {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-item-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.nav-item-link:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    padding-left: 0.9rem;
}

.nav-item-link.active {
    background: rgba(0, 191, 165, 0.06);
    color: var(--accent);
    border-left-color: var(--accent);
    font-weight: 600;
}

.method-badge-micro {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.method-badge-micro.get { background: rgba(14, 165, 233, 0.15); color: var(--info); }
.method-badge-micro.post { background: rgba(0, 191, 165, 0.15); color: var(--accent); }
.method-badge-micro.put { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.method-badge-micro.delete { background: rgba(239, 68, 110, 0.15); color: var(--danger); }

main {
    margin-left: 320px;
    flex: 1;
    padding: 2.5rem 3rem;
    min-width: 0;
}

.api-section {
    margin-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 4rem;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 800px;
}

.endpoint-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 3rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.endpoint-card:hover {
    border-color: var(--card-border-hover);
    box-shadow: 0 10px 30px rgba(0, 191, 165, 0.03);
}

.endpoint-details {
    padding: 2rem;
    border-right: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.endpoint-header {
    margin-bottom: 1.5rem;
}

.endpoint-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.endpoint-title-row h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.method-badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.method-badge.get { background: rgba(14, 165, 233, 0.12); border: 1px solid rgba(14, 165, 233, 0.25); color: var(--info); }
.method-badge.post { background: rgba(0, 191, 165, 0.12); border: 1px solid rgba(0, 191, 165, 0.25); color: var(--accent); }
.method-badge.put { background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.25); color: var(--warning); }
.method-badge.delete { background: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.25); color: var(--danger); }

.auth-badge {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--warning);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.path-container {
    font-family: 'Fira Code', monospace;
    background: rgba(15, 23, 33, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-main);
    word-break: break-all;
    display: inline-block;
}

.endpoint-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.params-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.params-title svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.params-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.params-table th, .params-table td {
    padding: 0.6rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.params-table th {
    color: var(--text-muted);
    font-weight: 600;
}

.params-table td {
    color: var(--text-main);
}

.param-name {
    font-family: 'Fira Code', monospace;
    font-weight: 600;
    color: var(--accent);
}

.param-type {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.param-required {
    color: var(--danger);
    font-weight: 700;
    margin-left: 0.15rem;
}

.endpoint-code-panel {
    background: rgba(11, 15, 22, 0.7);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.tab-btn-docs {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    outline: none;
}

.tab-btn-docs:hover {
    color: #fff;
}

.tab-btn-docs.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.code-container {
    position: relative;
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 1.25rem;
    overflow-x: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.code-container pre {
    margin: 0;
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #cbd5e1;
    white-space: pre-wrap;
    word-break: break-all;
}

.copy-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--text-muted);
    padding: 0.35rem 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    outline: none;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--accent);
}

.copy-btn.copied {
    background: rgba(0, 191, 165, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.docs-top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.docs-top-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-home {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-home:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.api-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 191, 165, 0.08);
    border: 1px solid rgba(0, 191, 165, 0.2);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.api-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 100;
    outline: none;
}

.info-box {
    background: rgba(14, 165, 233, 0.06);
    border-left: 4px solid var(--info);
    padding: 1.25rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.info-box h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #fff;
}

.info-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* responsive details for split */
@media (max-width: 1023px) {
    .endpoint-card {
        grid-template-columns: 1fr;
    }
    .endpoint-details {
        border-right: none;
        border-bottom: 1px solid var(--card-border);
    }
}

@media (max-width: 768px) {
    aside {
        transform: translateX(-100%);
    }
    aside.open {
        transform: translateX(0);
    }
    main {
        margin-left: 0;
        padding: 1.5rem;
    }
    .menu-toggle {
        display: block;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px var(--success);
    }
    50% {
        transform: scale(1.15);
        opacity: 0.6;
        box-shadow: 0 0 15px var(--success);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
