body {
    overflow-y: auto;
    /* Allow scrolling for docs */
}

.docs-container {
    display: flex;
    max-width: 1400px;
    margin: 100px auto 50px;
    gap: 40px;
    padding: 0 40px;
    min-height: 80vh;
}

.docs-sidebar {
    width: 300px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    position: sticky;
    top: 120px;
    align-self: start;
    height: calc(100vh - 150px);
}

.docs-sidebar h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.docs-sidebar ul {
    list-style: none;
}

.docs-sidebar li {
    margin-bottom: 15px;
}

.docs-sidebar a {
    color: #888;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    display: block;
}

.docs-sidebar a:hover,
.docs-sidebar a.active {
    color: #ff9f43;
    font-weight: 600;
}

.docs-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.docs-content section {
    margin-bottom: 60px;
}

.docs-content h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.docs-content h2 {
    font-size: 28px;
    color: #eee;
    margin-bottom: 15px;
    border-left: 4px solid #ff9f43;
    padding-left: 15px;
}

.docs-content p {
    color: #bbb;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.code-block {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
    font-family: 'Courier New', Courier, monospace;
    color: #ff9f43;
    margin: 20px 0;
}