.docs-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    gap: 3rem;
}

.docs-sidebar {
    width: 280px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.docs-sidebar h3 {
    color: #00ff88;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-family: 'Space Mono', monospace;
}

.docs-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.docs-nav li {
    margin-bottom: 0.5rem;
}

.docs-nav a {
    color: #8b92a0;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: block;
    transition: all 0.2s;
    border-left: 2px solid transparent;
}

.docs-nav a:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
    border-left-color: #00ff88;
}

.docs-nav a.active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    border-left-color: #00ff88;
    font-weight: 600;
}

.docs-content {
    flex: 1;
    max-width: 900px;
}

.docs-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 255, 136, 0.2);
}

.docs-header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e4e7eb 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.docs-header p {
    color: #8b92a0;
    font-size: 1.2rem;
}

.docs-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.docs-section h2 {
    color: #00ff88;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Space Mono', monospace;
}

.docs-section h3 {
    color: #e4e7eb;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.docs-section h4 {
    color: #e4e7eb;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.docs-section p {
    color: #8b92a0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.docs-section ul,
.docs-section ol {
    color: #8b92a0;
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.docs-section li {
    margin-bottom: 0.5rem;
}

.code-block {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
}

.code-block pre {
    margin: 0;
    color: #e4e7eb;
}

.code-inline {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
}

.info-box {
    background: rgba(0, 255, 136, 0.05);
    border-left: 4px solid #00ff88;
    border-radius: 0 8px 8px 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-box p {
    margin: 0;
    color: #e4e7eb;
}

.warning-box {
    background: rgba(251, 191, 36, 0.05);
    border-left: 4px solid #fbbf24;
    border-radius: 0 8px 8px 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-box p {
    margin: 0;
    color: #e4e7eb;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.feature-card h4 {
    color: #00ff88;
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.feature-card p {
    color: #8b92a0;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 968px) {
    .docs-container {
        flex-direction: column;
        padding: 1rem;
    }

    .docs-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 2rem;
    }

    .docs-header h1 {
        font-size: 2rem;
    }
}