/* Documentation Section */
.docs {
    padding: 100px 0;
    background: #09090b;
    /* Match body bg */
}

.docs-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.docs-block h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.code-block {
    background: #18181b;
    border: 1px solid #27272a;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #e4e4e7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    overflow-x: auto;
}

.copy-btn {
    background: transparent;
    border: 1px solid #3f3f46;
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-left: 12px;
}

.copy-btn:hover {
    background: #27272a;
    color: var(--text-color);
}

.copy-btn:active {
    background: #3f3f46;
}

.note {
    background: rgba(112, 66, 248, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.note strong {
    color: var(--primary-glow);
}

.specs-list {
    list-style: none;
}

.specs-list li {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.specs-list strong {
    color: var(--text-color);
    margin-right: 8px;
}

/* New Docs Styles */
.docs-section {
    margin-top: 60px;
}

.docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.docs-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    overflow: hidden;
    height: 100%;
}

.docs-card h4 {
    color: var(--text-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.docs-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.docs-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: block;
    transition: transform 0.3s;
}

.docs-img:hover {
    transform: scale(1.02);
}

.full-width {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
}