
/* Soft Gate Overlay (NOT secure) */
#soft-gate-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 12, 18, 0.92);
  backdrop-filter: blur(6px);
  color: #eaf0f6; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
#soft-gate-card {
  width: min(92vw, 420px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  padding: 22px;
}
#soft-gate-card h2 { margin: 6px 0 8px; font-size: 22px; font-weight: 700; }
#soft-gate-card p  { margin: 0 0 14px; color: #9aa3b2; font-size: 14px; }
#soft-gate-card label { display:block; font-size: 14px; margin: 8px 0 6px; }
#soft-gate-card input[type="password"] {
  width: 100%; border-radius: 10px; border: 1px solid rgba(255,255,255,.14);
  background: #0f1420; color: #eaf0f6; padding: 12px 12px;
}
#soft-gate-card button {
  margin-top: 12px; width: 100%;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, #ff6a8a, #ffd1ec); color: #0b0d12;
  font-weight: 700; padding: 12px 16px; cursor: pointer;
}
#soft-gate-error { color: #ff8a8a; font-size: 13px; display:none; margin-top: 8px; }
.soft-gate-blur { filter: blur(10px) saturate(0.85); pointer-events: none; user-select: none; }
