/* Page Header */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--carbon-gray) 0%, var(--dark-carbon) 100%);
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    padding: 80px 0;
}

/* Docs Layout */
.docs-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

.docs-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.docs-nav-section {
    margin-bottom: 32px;
}

.docs-nav-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.docs-nav-section ul {
    list-style: none;
}

.docs-nav-section li {
    margin-bottom: 8px;
}

.docs-nav-section a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 6px;
    transition: all 0.2s;
}

.docs-nav-section a:hover,
.docs-nav-section a.active {
    background: rgba(0, 240, 255, 0.1);
    color: var(--electric-cyan);
}

.docs-section {
    margin-bottom: 60px;
}

.docs-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.docs-section p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.code-block {
    background: var(--carbon-gray);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.code-block code {
    color: var(--electric-cyan);
}

.docs-cta {
    background: var(--carbon-gray);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
}

.docs-cta h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.docs-cta p {
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .docs-layout {
        grid-template-columns: 1fr;
    }
    
    .docs-sidebar {
        position: static;
    }
}
