.me-carousel-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(155,77,255,0.15);
}
.me-carousel {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, rgba(5,2,15,0) 0%, rgba(10,5,28,0.8) 50%, rgba(5,2,15,0) 100%);
  padding: 24px 0 52px;
  overflow: hidden;
  border-right: 1px solid rgba(155,77,255,0.15);
}
.me-carousel-placeholder {
  display: none;
}
/* Platzhalter-Text */
.me-carousel-placeholder__hint {
  color: rgba(155,77,255,0.2);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media(max-width:600px) {
  .me-carousel-wrap { grid-template-columns: 1fr; }
  .me-carousel { border-right: none; border-bottom: 1px solid rgba(155,77,255,0.15); }
}
.me-carousel__title {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #f0c040, #c8960c, #f0c040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(200,150,12,0.5));
  margin-bottom: 20px;
  text-transform: uppercase;
}
.me-carousel__scene {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.me-carousel__ring {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
}
.me-carousel__item {
  position: absolute;
  width: 72px;
  height: 72px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  overflow: visible;
  border: 2px solid rgba(155,77,255,0.4);
  box-shadow: 0 0 12px rgba(155,77,255,0.3);
  cursor: default;
  background: rgba(10,5,28,0.8);
}
.me-carousel__item:hover {
  box-shadow: 0 0 24px rgba(155,77,255,0.7), 0 0 40px rgba(224,64,251,0.3);
  border-color: rgba(224,64,251,0.8);
}
.me-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.me-carousel__item-name {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.5px;
  color: #e0b8ff;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(155,77,255,0.9), 0 1px 3px rgba(0,0,0,0.8);
  text-align: center;
  background: rgba(5,2,15,0.7);
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: none;
}
.me-carousel__fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: #c084fc;
  text-shadow: 0 0 12px rgba(155,77,255,0.8);
  border-radius: 50%;
}
