.docs-page-header {
    margin-bottom: 36px;
}

.docs-kicker {
    margin: 0 0 12px;

    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.docs-description {
    max-width: 760px;
    margin: 16px 0 0;

    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
}

.docs-alert {
    margin: 24px 0;
    padding: 20px;

    display: flex;
    gap: 14px;

    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.docs-alert-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: rgba(124, 58, 237, 0.16);
    border-radius: 12px;
}

.docs-alert-content strong {
    display: block;
    margin-bottom: 6px;

    color: var(--text-main);
    font-size: 15px;
}

.docs-alert-content p {
    margin: 0;

    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.docs-alert-warning {
    border-color: rgba(245, 158, 11, 0.45);
}

.docs-alert-success {
    border-color: rgba(34, 197, 94, 0.45);
}

.docs-code {
    margin: 22px 0;
    padding: 18px 20px;

    background: var(--bg-card-dark);
    border: 1px solid var(--border);
    border-radius: 16px;

    overflow-x: auto;
}

.docs-code pre {
    margin: 0;
}

.docs-code code {
    padding: 0;

    background: transparent;
    border: 0;

    color: var(--text-main);
    font-size: 14px;
    line-height: 1.7;
}

.docs-feature-grid {
    margin-top: 26px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.docs-feature-card {
    padding: 22px;

    display: flex;
    gap: 16px;

    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.docs-feature-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: rgba(124, 58, 237, 0.16);
    border-radius: 13px;

    color: var(--primary);
    font-size: 20px;
}

.docs-feature-card h3 {
    margin: 0 0 8px;

    color: var(--text-main);
    font-size: 17px;
}

.docs-feature-card p {
    margin: 0;

    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.documentation-table,
.docs-table {
    width: 100%;
    margin: 22px 0;

    border-collapse: separate;
    border-spacing: 0;

    overflow: hidden;

    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.documentation-table th,
.documentation-table td,
.docs-table th,
.docs-table td {
    padding: 14px 16px;

    text-align: left;
    border-bottom: 1px solid var(--border);

    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.documentation-table th,
.docs-table th {
    color: var(--text-main);
    font-weight: 700;
}

.documentation-table tr:last-child td,
.docs-table tr:last-child td {
    border-bottom: 0;
}

.documentation-table strong,
.docs-table strong {
    color: var(--text-main);
}

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