
#onboarding {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
}
.onboard-screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

.onboard-next,
.onboard-finish {
  position: fixed;
  bottom: max(30px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 420px;
  height: 60px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10051;
}


.registerimg{
  all: unset;
  width: 260px;
  height: 260px;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.registerimg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.light-mode .registerimg video {
  filter: invert(1) hue-rotate(200deg) saturate(1.2);
}
.legal-link {
  color: #ea1e1e;
  font-weight: 700;
  text-decoration: none;
}
.legal-link:hover {
  text-decoration: underline;
}
@media (orientation: landscape) {
.registerimg {
    width: 190px;
    height: 190px;
    margin-bottom: 6px;
  }
 
}

.story-progress {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 1000000;
}

.story-bar {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  transition: all 0.35s ease;
}

.story-bar.active {
  width: 40px;
  height: 12px;
  border-radius: 999px;
}
