.onboarding-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 0;
}

.carousel-track-container {
  height: 70%;
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.carousel-track-container:active {
  cursor: grabbing;
}

.carousel-track {
  padding: 0;
  margin: 0;
  list-style: none;
  height: 100%;
  display: flex;
  transition: transform 0.3s ease-out;
  width: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  user-select: none;
}

.slide-content {
  text-align: center;
  max-width: 320px;
  padding: 0 20px;
}

.image-placeholder {
  width: 200px;
  height: 200px;
  background-color: var(--surface-color);
  border-radius: 50%;
  margin: 0 auto 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-soft);
  font-size: 4rem;
  color: var(--accent-color);
}

.slide-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.slide-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.carousel-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 0 20px;
}

.arrow-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: opacity 0.3s;
}

.arrow-controls.hidden {
  display: none;
}

.arrow-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 10px;
  opacity: 0.7;
}

.arrow-btn:hover {
  opacity: 1;
  color: var(--accent-color);
}

.arrow-btn:disabled {
  opacity: 0.2;
  cursor: default;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.3s;
}

.dot.current-slide {
  background: var(--accent-color);
  width: 25px;
  border-radius: 10px;
}

.hidden-btn {
  display: none;
}

.text-link {
  background: none;
  border: none;
  color: var(--text-secondary);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.85rem;
  margin-top: 15px;
  display: block;
  width: 100%;
}

.primary-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}
