/* ── Chat verification gate ───────────────────────────── */
.chat-verify-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - var(--topbar-height, 52px));
    padding: 1.5rem;
}

.verify-container {
    width: 100%;
    max-width: 380px;
}

.verify-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
}

.verify-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bg-hover);
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.verify-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
}

.verify-card p {
    margin: 0 0 1.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.verify-widget {
    display: flex;
    justify-content: center;
}

.verify-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    font-size: 0.82rem;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.verify-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}
