/* 盛宴 · 米歇尔形态选关（竖排） */
.theme-michel .page__bg {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(120, 40, 48, 0.22), transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(201, 162, 39, 0.1), transparent 50%),
    linear-gradient(165deg, #1a1210 0%, #0d0b08 55%, #16100c 100%);
}

.michel-hero {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(0.5rem, 2vw, 1.2rem) 1.5rem 0.5rem;
  animation: michel-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.michel-hero__title {
  font-family: "Cinzel", "Noto Serif SC", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: #f7efd6;
  text-shadow:
    0 0 24px rgba(201, 162, 39, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.65);
}

.michel-hero__sub {
  margin-top: 0.55rem;
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: rgba(242, 234, 216, 0.65);
}

.michel-stages {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: clamp(1.8rem, 4.5vw, 3rem);
  padding: clamp(1.2rem, 3.5vw, 2.5rem) clamp(1.2rem, 4vw, 2.5rem) 2rem;
  width: min(720px, 100%);
  margin-inline: auto;
}

.michel-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.2rem, 4vw, 2.5rem);
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  animation: michel-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.michel-row:nth-child(1) {
  animation-delay: 0.2s;
}

.michel-row:nth-child(2) {
  animation-delay: 0.35s;
}

.michel-stage {
  width: min(42vw, 220px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  pointer-events: none;
  user-select: none;
}

.michel-stage__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 248, 220, 0.16), transparent 62%),
    rgba(18, 14, 8, 0.4);
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.4),
    0 0 0 6px rgba(26, 22, 16, 0.28),
    0 14px 42px rgba(0, 0, 0, 0.5);
}

.michel-stage__frame::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.28);
  pointer-events: none;
  z-index: 2;
}

.michel-stage__img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.michel-stage__label {
  font-family: "Cinzel", "Noto Serif SC", serif;
  font-size: clamp(0.9rem, 1.7vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  padding: 0.4rem 1rem;
  color: #f7efd6;
  background: rgba(26, 22, 16, 0.72);
  border: 1px solid rgba(201, 162, 39, 0.4);
  backdrop-filter: blur(6px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* 形态右侧机制名称列表 */
.michel-mechs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: min(42vw, 11.5rem);
  padding: 0.9rem 1rem;
  background: rgba(12, 10, 8, 0.62);
  border: 1px solid rgba(201, 162, 39, 0.32);
  backdrop-filter: blur(8px);
}

.michel-mechs__title {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-align: center;
  color: rgba(201, 162, 39, 0.85);
}

.michel-mechs__nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 2.4rem;
}

.michel-mechs__item {
  display: block;
  padding: 0.65rem 0.8rem;
  text-align: center;
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  color: #f7efd6;
  background: linear-gradient(180deg, rgba(80, 28, 32, 0.72), rgba(26, 14, 14, 0.88));
  border: 1px solid rgba(201, 162, 39, 0.45);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s,
    box-shadow 0.3s;
}

.michel-mechs__item:hover,
.michel-mechs__item:focus-visible {
  border-color: rgba(201, 162, 39, 0.85);
  transform: translateX(3px);
  box-shadow: 0 0 18px rgba(160, 50, 55, 0.25);
  outline: none;
}

@keyframes michel-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .michel-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
  }

  .michel-stage {
    width: min(42vw, 160px);
  }

  .michel-mechs {
    min-width: min(42vw, 11rem);
  }

  .michel-mechs__item:hover,
  .michel-mechs__item:focus-visible {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .michel-hero,
  .michel-row,
  .michel-mechs__item {
    animation: none !important;
    transition: none !important;
  }

  .michel-hero,
  .michel-row {
    opacity: 1;
    transform: none;
  }
}
