.section-delete-account {
    min-height: calc(100vh - var(--topbar-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background:
        radial-gradient(circle at 50% 30%, rgba(8, 187, 231, 0.12), transparent 50%),
        #f8fcfd;
}

.delete-account-container {
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.delete-account-container .badge {
    margin-bottom: 1rem;
}

.delete-account-container .headline {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.delete-account-container .subheadline {
    font-size: 1.05rem;
    color: #475569;
    max-width: 480px;
    margin: 0 auto 2rem auto;
    line-height: 1.5;
}

/* Card Styling */
.deletion-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 2.25rem 2rem;
    text-align: left;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.deletion-card>p {
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Email Link Button */
.email-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #f0fbfe;
    border: 1.5px solid var(--brand-color);
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 14px;
    text-decoration: none;
    margin: 1.5rem 0;
    transition: all 0.2s ease;
}

.email-box:hover {
    background: var(--brand-color);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(8, 187, 231, 0.25);
}

/* Instructions Block */
.deletion-instructions {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid #f1f5f9;
}

.deletion-instructions h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.deletion-instructions ul {
    padding-left: 1.25rem;
    margin: 0;
    color: #334155;
    font-size: 0.92rem;
}

.deletion-instructions li {
    margin-bottom: 0.35rem;
}

.deletion-instructions li:last-child {
    margin-bottom: 0;
}

.deletion-footnote {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 640px) {
    .deletion-card {
        padding: 1.5rem;
    }

    .email-box {
        font-size: 0.95rem;
        word-break: break-all;
    }
}