/*
 * De ce exista:
 * Acest fisier stilizeaza starea publica de cont blocat din shell-ul V2.
 *
 * Responsabilitate:
 * Pune accent pe claritate, siguranta si un singur CTA de iesire atunci cand
 * accesul public este blocat de safety enforcement.
 *
 * Ce NU face:
 * Nu stilizeaza formulare de suport complexe si nu schimba shell-ul normal.
 *
 * Depinde de:
 * tpl-screen-account-blocked si componentele shared ale frontendului V2.
 */

.v2-screen--account-blocked {
    align-items: center;
}

.v2-account-blocked-card {
    width: min(100%, 520px);
    display: grid;
    gap: 18px;
    padding: 20px 18px;
}

.v2-account-blocked-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #f59e0b 0%, #dc2626 100%);
}

.v2-account-blocked-state {
    width: 76px;
    height: 76px;
    margin: -2px auto 0;
    display: grid;
    place-items: center;
    border-radius: 24px;
    border: 1px solid rgba(245, 158, 11, 0.28);
    background:
        radial-gradient(circle at top right, rgba(254, 243, 199, 0.86), transparent 42%),
        rgba(255, 251, 235, 0.96);
    color: #16a34a;
}

.v2-account-blocked-state svg {
    width: 34px;
    height: 34px;
}

.v2-account-blocked-summary {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(245, 158, 11, 0.24);
    background:
        radial-gradient(circle at top right, rgba(254, 243, 199, 0.78), transparent 42%),
        rgba(255, 251, 235, 0.96);
}

.v2-account-blocked-user {
    font-size: 1rem;
    color: #111827;
}

.v2-account-blocked-meta {
    display: grid;
    gap: 12px;
    margin: 0;
}

.v2-account-blocked-meta div {
    display: grid;
    gap: 4px;
}

.v2-account-blocked-meta dt {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #92400e;
}

.v2-account-blocked-meta dd {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
}

.v2-account-blocked-help {
    margin: 0;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.5;
}

.v2-screen--account-blocked .v2-button-row {
    margin-top: 4px;
}

.v2-screen--account-blocked .v2-button-row .v2-button-secondary {
    width: 100%;
    min-height: 52px;
    border-radius: 18px;
}
