:root {
  --lf-focus: rgba(236,72,153,.7);
  --lf-focus-bg: rgba(236,72,153,.12);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--lf-focus);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--lf-focus-bg);
}

.lf-toast {
  position: fixed;
  left: 50%;
  bottom: 5.5rem;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(13,13,26,.97);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .75rem;
  padding: .65rem 1.3rem;
  color: rgba(255,255,255,.88);
  font-size: .83rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.lf-toast.lf-toast--show {
  opacity: 1;
}

.lf-toast.lf-toast--hide {
  opacity: 0;
}

.lf-modal-open {
  overflow: hidden !important;
}
