/* Hesap Silme Sayfası Stilleri - Modern Gradient */
.account-deletion-body {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 1rem;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

.account-deletion-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(245, 87, 108, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
    animation: bodyGlow 10s ease-in-out infinite alternate;
}

@keyframes bodyGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.account-deletion-container {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.account-deletion-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.6s ease-out;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.account-deletion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
}

.account-deletion-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.03) 0%, transparent 70%);
    animation: cardGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cardGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10%, -10%); }
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.app-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.app-icon-large img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.logo-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-purple);
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin: 0;
}

/* Warning Section */
.warning-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--border-radius);
}

.warning-icon {
    margin-bottom: 1rem;
}

.warning-section h2 {
    color: #856404;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.warning-section p {
    color: #856404;
    margin: 0;
}

/* Deletion Details */
.deletion-details {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.deletion-details h3 {
    color: var(--brand-purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.deletion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deletion-list li {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.deletion-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Deletion Instructions */
.deletion-instructions {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.deletion-instructions h3 {
    color: var(--brand-purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.deletion-instructions > p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--brand-blue);
}

.step-number {
    background: var(--brand-blue);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--brand-purple);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.5;
}

.step-content strong {
    color: var(--brand-blue);
    font-weight: 600;
}

.important-note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.important-note h4 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.important-note ul {
    margin: 0;
    padding-left: 1.5rem;
}

.important-note li {
    color: #856404;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.important-note strong {
    font-weight: 600;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--brand-purple);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
}

.checkbox-text {
    font-weight: 500;
    color: var(--dark-gray);
    line-height: 1.4;
}

.form-group input[type="password"],
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(49, 123, 197, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-text {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.25rem;
    display: block;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Loading State */
.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.success-icon {
    margin-bottom: 1rem;
}

.success-message h3 {
    color: var(--brand-purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-message p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 2rem;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.error-icon {
    margin-bottom: 1rem;
}

.error-message h4 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.error-message p {
    color: #721c24;
    margin-bottom: 1rem;
}

/* Help Section */
.help-section {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.help-section h4 {
    color: var(--brand-purple);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.help-section p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.help-link {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.help-link:hover {
    color: var(--brand-purple);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 480px) {
    .account-deletion-body {
        padding: 1rem 0.5rem;
    }
    
    .account-deletion-card {
        padding: 2rem 1.5rem;
    }
    
    .logo-section h1 {
        font-size: 1.75rem;
    }
    
    .warning-section h2 {
        font-size: 1.25rem;
    }
    
    .deletion-details,
    .warning-section {
        padding: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Animation for form transitions */
.success-message,
.error-message {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.success-message.show,
.error-message.show {
    opacity: 1;
    transform: translateY(0);
}
