/* ===========================
    Login Page (scoped)
    =========================== */
/* Onboarding overlay (login only) */
.lfonb{
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lfonb-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.72);
}

.lfonb-card{
  position: relative;
  width: min(520px, 92vw);
  border-radius: 18px;
  background: rgba(10,10,10,.92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  overflow: hidden;
}

.lfonb-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 10px;
}

.lfonb-dots{ display:flex; gap:6px; }
.lfonb-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.lfonb-dot.active{ background: rgba(59,130,246,.95); }

.lfonb-skip{
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.75);
  font-weight: 700;
  cursor: pointer;
}
.lfonb-skip:hover{ color: rgba(255,255,255,.92); }

.lfonb-media{
  width: 100%;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
}
.lfonb-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.lfonb-title{
  padding: 12px 14px 4px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,.95);
  line-height: 1.2;
}

.lfonb-actions{
  display:flex;
  gap: 10px;
  padding: 12px 14px 14px;
}
.lfonb-btn{
  flex: 1;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  cursor: pointer;
}
.lfonb-btn:disabled{
  opacity: .45;
  cursor: not-allowed;
}
.lfonb-btn.is-primary{
  background: rgba(59,130,246,.95);
  border-color: rgba(59,130,246,.95);
  color: #fff;
}

.lfonb-card{
  animation: onbIn .22s ease-out;
}
@keyframes onbIn{
  from { opacity:0; transform: scale(.96); }
  to { opacity:1; transform: scale(1); }
}