/* NIVO SLIDER IN SECTIONS */

/* SENDEPLAN IN SECTIONS */
.me-sp-list { display: flex; flex-direction: column; gap: 2px; }
/* ===== NÄCHSTE SENDUNG – Auffällig ===== */
@keyframes meNextGlow {
  0%,100% {
    box-shadow: 0 0 0 0 rgba(155,77,255,0), 0 0 18px rgba(155,77,255,0.3), 0 0 40px rgba(155,77,255,0.12), inset 0 1px 0 rgba(255,255,255,0.07);
    border-color: rgba(155,77,255,0.55);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(155,77,255,0.1), 0 0 30px rgba(224,64,251,0.45), 0 0 60px rgba(224,64,251,0.18), inset 0 1px 0 rgba(255,255,255,0.07);
    border-color: rgba(224,64,251,0.75);
  }
}
@keyframes meNextLabelPulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes meNextShine {
  0%   { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(300%) skewX(-12deg); }
}
@keyframes meNextCountdown {
  0%,100% { color: #fff; text-shadow: 0 0 10px rgba(192,132,252,0.6); }
  50%     { color: #c084fc; text-shadow: 0 0 20px rgba(192,132,252,0.9); }
}

.me-sp-next {
  position: relative;
  background: rgba(8,3,22,0.7);
  border: 1px solid rgba(155,77,255,0.55);
  border-radius: 12px;
  padding: 14px 14px 12px;
  margin-bottom: 12px;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: meNextGlow 2.5s ease-in-out infinite;
}
/* Shine-Effekt */
.me-sp-next::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,64,251,0.7), rgba(192,132,252,0.9), rgba(224,64,251,0.7), transparent);
}
/* Laufender Shine-Streifen */
.me-sp-next::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: meNextShine 4s ease-in-out infinite;
  pointer-events: none;
}
/* Ecken-Akzente */
.me-sp-next__corner {
  position: absolute;
  width: 10px; height: 10px;
  border-color: rgba(224,64,251,0.7);
  border-style: solid;
}
.me-sp-next__corner--tl { top: 4px; left: 4px; border-width: 1.5px 0 0 1.5px; border-radius: 2px 0 0 0; }
.me-sp-next__corner--tr { top: 4px; right: 4px; border-width: 1.5px 1.5px 0 0; border-radius: 0 2px 0 0; }
.me-sp-next__corner--bl { bottom: 4px; left: 4px; border-width: 0 0 1.5px 1.5px; border-radius: 0 0 0 2px; }
.me-sp-next__corner--br { bottom: 4px; right: 4px; border-width: 0 1.5px 1.5px 0; border-radius: 0 0 2px 0; }

.me-sp-next__label {
  font-size: 8px; font-weight: 900; letter-spacing: 2.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #9b4dff, #e040fb, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  animation: meNextLabelPulse 2s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.me-sp-next__label::before,
.me-sp-next__label::after {
  content: '';
  display: inline-block;
  width: 16px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,64,251,0.6));
}
.me-sp-next__label::after {
  background: linear-gradient(90deg, rgba(224,64,251,0.6), transparent);
}

.me-sp-next__time {
  font-size: 28px; font-weight: 900; color: #fff; line-height: 1;
  letter-spacing: 1px;
  animation: meNextCountdown 2.5s ease-in-out infinite;
  margin-bottom: 2px;
}

.me-sp-next__show {
  font-size: 12px; font-weight: 700;
  color: rgba(240,234,255,0.85);
  margin-top: 4px; margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.me-sp-next__mod { font-size: 12px; color: #e040fb; font-weight: 800; letter-spacing: 0.3px; }
.me-sp-next__mod-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(155,77,255,0.15); }
.me-sp-next__mod-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(224,64,251,0.6);
  box-shadow: 0 0 14px rgba(224,64,251,0.4), 0 0 28px rgba(155,77,255,0.2);
}
.me-sp-next__mod-avatar--fallback {
  background: linear-gradient(135deg,#9b4dff,#e040fb);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
  box-shadow: 0 0 14px rgba(224,64,251,0.4);
}
.me-sp-next__mod-info { min-width: 0; text-align: left; }
.me-sp-next__mod-label { font-size: 8px; color: rgba(192,132,252,0.5); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2px; }
.me-sp-item { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 6px; transition: background .15s; }
.me-sp-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(155,77,255,0.4);
  box-shadow: 0 0 8px rgba(155,77,255,0.3);
}
.me-sp-avatar--autodj {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  filter: drop-shadow(0 0 6px rgba(155,77,255,0.6));
  background: transparent !important;
  width: 52px !important; height: 52px !important;
}
.me-sp-avatar--init {
  background: linear-gradient(135deg, var(--me-purple), var(--me-pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff;
}
.me-sp-item:hover { background: rgba(155,77,255,0.06); }
.me-sp-item--active { background: rgba(155,77,255,0.12); border-left: 3px solid var(--me-purple); }
.me-sp-time { font-size: 10px; color: var(--me-muted); min-width: 40px; font-weight: 600; flex-shrink: 0; }
.me-sp-item--active .me-sp-time { color: var(--me-purple); }
.me-sp-info { flex: 1; min-width: 0; }
.me-sp-mod { font-size: 12px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.me-sp-show { font-size: 10px; color: var(--me-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.me-sp-live { font-size: 8px; font-weight: 800; letter-spacing: 1px; color: #fff; background: #e0001a; padding: 2px 5px; border-radius: 3px; flex-shrink: 0; display: inline-flex; align-items: center; gap: 3px; animation: me-live-pulse 1.5s infinite; }
.me-sp-live::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: mepulse 1.5s infinite; }
@keyframes me-live-pulse { 0%,100%{box-shadow:0 0 4px rgba(224,0,26,0.8)} 50%{box-shadow:0 0 10px rgba(224,0,26,1)} }

.me-section--slider { display: flex; align-items: stretch; padding: 0; align-self: stretch; }
.me-nivo-wrap { position: relative; width: 100%; border-radius: 0; overflow: hidden; background: var(--me-bg3); display: flex; flex-direction: column; }
/* Höhe = Breite × Seitenverhältnis des ersten Bildes (wird per JS gesetzt) */
.me-nivo-slider { position: relative; width: 100%; flex: 1; height: 0; padding-bottom: 18%; }
.me-nivo-slider a { display: block; position: absolute; inset: 0; }
.me-nivo-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: fill;
  opacity: 0; transition: opacity 0.8s ease;
}
.me-nivo-slider img.me-nivo-active { opacity: 1; }
@media(max-width:900px) {
  .me-section--slider { padding: 0; }
  .me-nivo-wrap { border-radius: 0; }
}
@media(max-width:600px) {
  .me-nivo-slider { padding-bottom: 56%; }
}
@media(max-width:600px) {
  .me-player-bar, .me-player-bar--sticky {
    position: relative !important;
    top: auto !important;
  }
} 
.me-nivo-controls { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; align-items: center; justify-content: center; gap: 8px; z-index: 10; }
.me-nivo-prev, .me-nivo-next { background: rgba(0,0,0,0.6); border: 1px solid rgba(155,77,255,0.3); color: #fff; font-size: 22px; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; line-height: 1; flex-shrink: 0; }
.me-nivo-prev:hover, .me-nivo-next:hover { background: var(--me-purple); border-color: var(--me-purple); box-shadow: 0 0 10px rgba(155,77,255,0.5); }
.me-nivo-dots { display: flex; gap: 6px; align-items: center; }
.me-nivo-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all .2s; border: none; padding: 0; }
.me-nivo-dot.active { background: var(--me-purple); transform: scale(1.3); box-shadow: 0 0 6px rgba(155,77,255,0.6); }
