/* Carousel Styles for AI Directives */
.carousel {
  max-width: 540px;
  margin: 48px auto 32px auto;
  background: rgba(20, 20, 40, 0.92);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  padding: 32px 24px 24px 24px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.carousel-step {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: background 0.5s;
}

.carousel-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #ffd166;
}

.carousel-desc {
  font-size: 1.08em;
  color: #f3f3f7;
  margin-bottom: 1.2em;
  min-height: 72px;
  transition: color 0.5s;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 1em;
}

.carousel-controls button {
  background: #06d6a0;
  color: #0a0a1a;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-controls button:hover {
  background: #ffd166;
  color: #0a0a1a;
}

.carousel-dots {
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border-radius: 50%;
  background: #888;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #ffd166;
  box-shadow: 0 0 8px #ffd16688;
}
