.onboarding-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.onboarding-screen::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
}

.onboarding-skip {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.875rem;
  color: #b5b3b3;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  transition: color var(--transition);
  background-color: rgb(7, 7, 28);
}

.onboarding-skip:hover {
  color: var(--text-primary);
}

/* Mascot */
.mascot-wrap {
  position: relative;
  margin: 32px auto;
}

.mascot-circle svg {
  width: 160px;
  height: 160px;
}

.mascot-circle {
  background: transparent !important;
  animation: mascotFloat 5s ease-in-out infinite;
}

.mascot-circle::before {
  content: none;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

/* Dots */
.onboarding-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

.onboarding-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border-light);
  transition: all 0.3s ease;
}

.onboarding-dot.active {
  width: 24px;
  background: var(--purple-main);
}

@keyframes mascotFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}