.delete-post-page {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: 42px 16px;
}

.delete-post-card {
  width: min(720px, 100%);
  border-radius: 28px;
  padding: 30px;
  color: rgba(238, 250, 255, .88);
  background:
    radial-gradient(circle at top left, rgba(255, 50, 120, .16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(0, 220, 255, .12), transparent 34%),
    rgba(4, 10, 24, .84);
  border: 1px solid rgba(255, 90, 140, .22);
  box-shadow:
    0 0 42px rgba(255, 70, 120, .10),
    inset 0 0 30px rgba(255,255,255,.025);
  backdrop-filter: blur(14px);
}

.delete-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffd1df;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  background: rgba(255, 80, 130, .10);
  border: 1px solid rgba(255, 80, 130, .22);
}

.delete-post-card h1 {
  margin: 18px 0 10px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 80, 130, .28);
}

.delete-post-card p {
  color: rgba(238, 250, 255, .72);
  line-height: 1.65;
}

.delete-preview {
  margin: 22px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  display: grid;
  gap: 8px;
}

.delete-preview span {
  color: rgba(238, 250, 255, .68);
  overflow-wrap: anywhere;
}

.delete-post-card form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.delete-post-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.delete-post-card .btn.danger {
  color: white;
  background: linear-gradient(135deg, #ff3b72, #ff7a59);
  box-shadow: 0 0 22px rgba(255, 65, 120, .22);
}

.delete-post-card .btn.ghost {
  color: #dffbff;
  background: rgba(255,255,255,.06);
}
