/* Delete Account Page Specific Styles */

.delete-account-section {
    padding: 140px 0 80px;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.delete-account-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(232, 151, 113, 0.1));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-account-header h1 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.delete-account-header .subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.info-card.danger {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    color: #F59E0B;
}

.card-icon.danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    color: #EF4444;
}

.card-icon.primary {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    color: var(--primary);
}

.card-icon.support {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    color: #10B981;
}

.info-card h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.info-card p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.info-card.danger ul li::before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    color: #EF4444;
    content: '×';
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.step {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.step:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.9375rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Support Contact */
.support-contact {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-dark);
    gap: 16px;
}

.contact-link svg {
    color: var(--secondary);
}

/* Back to Home */
.back-home {
    text-align: center;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .delete-account-section {
        padding: 100px 0 60px;
    }

    .info-card {
        padding: 32px 24px;
    }

    .steps {
        gap: 16px;
    }

    .step {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .delete-account-header h1 {
        font-size: 1.75rem;
    }

    .delete-account-header .subtitle {
        font-size: 1rem;
    }

    .info-card h2 {
        font-size: 1.5rem;
    }

    .info-card p {
        font-size: 1rem;
    }

    .contact-link {
        font-size: 1rem;
    }
}
