/* ─── CONTENT CONTAINER ─── */
.content-wrapper {
  padding: 140px 24px 80px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.content-wrapper::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: min(600px, 90vw); height: min(600px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.card-container {
  background: var(--card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: clamp(32px, 6vw, 48px) clamp(24px, 5vw, 40px);
  border-radius: 32px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: fadeUp 0.5s ease-out both;
}

.card-container.small {
  max-width: 650px;
}

.card-container h1 {
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.card-container h1 .accent { color: var(--green); }

.card-container p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: clamp(0.95rem, 3.5vw, 1rem);
}

.card-container strong {
  color: var(--green);
  font-weight: 600;
}

.card-container h2, .section-title {
  font-size: clamp(1.1rem, 4vw, 1.3rem);
  font-weight: 800;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  letter-spacing: -0.3px;
}

.card-container ul {
  margin: 1.2rem 0 1.5rem;
  padding-left: 20px;
  color: var(--muted);
  font-size: clamp(0.9rem, 3vw, 0.95rem);
  line-height: 1.7;
}
.card-container ul li { margin-bottom: 8px; }

/* Elements for delete account */
.alert-box {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 2rem;
  display: flex;
  gap: 14px;
}
.alert-box svg {
  width: 24px;
  height: 24px;
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}
.alert-text {
  color: #fca5a5;
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 1.5rem;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.step-content p { margin-bottom: 0; font-size: 0.9rem; }

/* Primary Button (Email) */
.btn-primary.large-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: #000;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(34,197,94,0.25);
  width: 100%;
  margin-top: 1rem;
}
.btn-primary.large-btn:hover {
  background: #4ade80;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(34,197,94,0.25);
}
.btn-primary.large-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

/* Secondary Button (Back) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  width: 100%;
  margin-top: 2rem;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .content-wrapper { padding-top: 110px; }
}

@media (max-width: 480px) {
  .content-wrapper { padding: 100px 16px 60px; }
  .card-container h2, .section-title { margin-top: 1.5rem; }
}
