/* Blind Ninja Reveal styles - fullscreen transparent overlay */
#bnr-overlay{
  position: fixed !important;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999 !important;
  background: rgba(0,0,0,0);
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transition: opacity 0.6s ease;
}

#bnr-overlay.is-open{
  display: flex;
  opacity: 1;
}

#bnr-overlay .bnr-message{
  font-family: 'Mohave', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(64px, 12vw, 200px);
  font-weight: 800;
  line-height: 1.05;
  color: #FF6557;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  padding: 0;
  margin: 0 4vw;
  background: none;
  border: none;
  box-shadow: none;
  text-shadow: none;
  pointer-events: none;
}
