/* Lock scroll da página pai */
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100%;
  touch-action: none;
}

/* Loader fullscreen */
#iframe-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0b0b0b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Spinner */
#iframe-loader .spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: nelsons-spin 0.9s linear infinite;
  margin-bottom: 12px;
}

@keyframes nelsons-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Iframe fullscreen */
#nelsons-offerwall-iframe {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  border: 0;
  display: none;
  z-index: 9999;
}
