/* =========================
   Intro Section (Mobile Default)
   ========================= */
#intro {
  background-image: url(image/common/BgWithHero.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  gap: 10px;
}

.intro-title-wrapper img {
  width: auto;
  height: clamp(15px, 5vw, 25px);
  max-height: 50px;
  object-fit: contain;
  z-index: 10;
}

.intro-title-text {
  font-size: clamp(15px, 6vw, 25px);
  color: #fff;
  text-align: center;
  text-shadow:
    0 0 5px rgba(201, 108, 255, 0.4),
    0 0 10px rgba(201, 108, 255, 0.4),
    0 0 20px rgba(201, 108, 255, 0.4),
    0 0 40px rgba(201, 108, 255, 0.4);
  position: relative;
  z-index: 1;
}

.intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.intro-info {
  order: 2;
  width: 100%;
  max-width: 600px;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 100px;
}

.intro-info-line {
  width: 100%;
  margin-top: -10px;
  margin-bottom: -20px;
}

.intro-content-text {
  font-size: clamp(15px, 3vw, 21px);
  color: #fff;
  text-align: left;
  text-shadow:
    0 0 5px rgba(201, 108, 255, 0.4),
    0 0 10px rgba(201, 108, 255, 0.4),
    0 0 20px rgba(201, 108, 255, 0.4),
    0 0 40px rgba(201, 108, 255, 0.4);
  width: 70%;
  line-height: 1.5;
}

.carousel {
  order: 1;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 20px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 300px;
}

.carousel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 90%;
  width: auto;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition: all 0.5s ease;
  z-index: 1;
}

.carousel-item.left {
  opacity: 1;
  transform: translate(-100%, -50%) scale(0.9) rotate(-10deg);
  z-index: 5;
  border: 2px solid rgb(135, 83, 255);
  border-radius: 3px;
  filter: brightness(0.6);

}

.carousel-item.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  z-index: 10;
  border: 2px solid #ffecfc;
  border-radius: 3px;
  filter: brightness(1);

}

.carousel-item.right {
  opacity: 1;
  transform: translate(0%, -50%) scale(0.9) rotate(10deg);
  z-index: 5;
  border: 2px solid rgb(135, 83, 255);
  border-radius: 3px;
  filter: brightness(0.6);
}

.carousel-btn {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 80px;
  height: 80px;
  padding: 0;
  z-index: 10;
}

.carousel-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 0px;
  gap: -10px;
}

.dot-wrapper {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot-wrapper img {
  width: 60px;
  height: 60px;
  display: block;
  pointer-events: none;
}

.intro-spacer {
  display: none;
  /* 手機不需要 spacer */
}