   
    /* ============================================================
   ПОВНОЕКРАННИЙ РЕЖИМ — бокові панелі
   ============================================================ */
.playlists-player.fs-active .episode-name {
    display: none !important;
}
.fs-body { overflow: hidden; }

/* ── Плеєр займає весь екран ─────────────────────────────── */
.playlists-player.fs-active {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  z-index: 99999 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: #000 !important;
}

/* ── iframe займає весь плеєр ────────────────────────────── */
.playlists-player.fs-active .playlists-iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  z-index: 1;
}
.playlists-player.fs-active .playlists-iframe iframe {
  width: 100% !important;
  height: 100% !important;
}

/* ── Загальні стилі бокових панелей ──────────────────────── */
.playlists-player.fs-active .playlists-lists,
.playlists-player.fs-active .playlists-videos {
  position: absolute !important;
  top: 50% !important;
  bottom: auto !important;
  max-height: 72vh !important;
  transform: translateY(-50%);
  z-index: 10 !important;
  width: 170px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 10px 0 10px !important;
  box-sizing: border-box !important;
  border-radius: 14px !important;
  transition: opacity 0.35s ease, transform 0.35s ease;
  /* Заголовок панелі через pseudo — місце зверху */
  padding-top: 28px !important;
}

/* ── Ліва панель — таби ───────────────────────────────────── */
.playlists-player.fs-active .playlists-lists {
  left: 6px !important;
  right: auto !important;
  background: rgb(12,12,22) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.playlists-player.fs-active .playlists-lists::-webkit-scrollbar { width: 3px; }
.playlists-player.fs-active .playlists-lists::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
}

/* ── Права панель — серії ─────────────────────────────────── */
.playlists-player.fs-active .playlists-videos {
  right: 6px !important;
  left: auto !important;
  background: rgb(12,12,22) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(100,120,255,0.45) rgba(255,255,255,0.05);
}
.playlists-player.fs-active .playlists-videos::-webkit-scrollbar { width: 4px; }
.playlists-player.fs-active .playlists-videos::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
}
.playlists-player.fs-active .playlists-videos::-webkit-scrollbar-thumb {
  background: rgba(100,120,255,0.5);
  border-radius: 2px;
}

/* ── Заголовки панелей (псевдоелемент) ───────────────────── */
.playlists-player.fs-active .playlists-lists::before {
  content: 'ПЛЕЄРИ';
  position: absolute;
  top: 8px;
  left: 10px;
  right: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.35);
  font-family: var(--pl-font, 'Nunito', sans-serif);
  pointer-events: none;
}
.playlists-player.fs-active .playlists-videos::before {
  content: 'СЕРІЇ';
  position: absolute;
  top: 8px;
  right: 14px;
  left: 0;
  text-align: right;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.35);
  font-family: var(--pl-font, 'Nunito', sans-serif);
  pointer-events: none;
}

/* ── Рядки табів — вертикально ───────────────────────────── */
.playlists-player.fs-active .playlists-lists .playlists-items {
  width: 100% !important;
  flex-shrink: 0 !important;
}
.playlists-player.fs-active .playlists-lists .playlists-items ul {
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
  padding: 0 !important;
  gap: 2px !important;
}
/* Стрілки горизонтального скролу — ховаємо */
.playlists-player.fs-active .playlists-lists .playlists-prev,
.playlists-player.fs-active .playlists-lists .playlists-next {
  display: none !important;
}

/* ── Роздільник між рівнями табів ────────────────────────── */
.playlists-player.fs-active .playlists-lists .playlists-items + .playlists-items {
  margin-top: 4px !important;
  padding-top: 5px !important;
  border-top: 1px solid rgba(255,255,255,0.10) !important;
}

/* ── Таби у лівій панелі ─────────────────────────────────── */
.playlists-player.fs-active .playlists-lists .playlists-items li {
  width: 100% !important;
  height: 30px !important;
  line-height: 30px !important;
  font-size: 13px !important;
  padding: 0 10px 0 12px !important;
  box-sizing: border-box !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  border: none !important;
  /* Підсвічення активного */
  transition: background 0.15s;
}
/* Перший рядок (плеєри) — трохи яскравіший акцент */
.playlists-player.fs-active .playlists-lists .playlists-items:first-child li.active {
  background: rgba(79,110,247,0.28) !important;
  box-shadow: inset 3px 0 0 #4f6ef7 !important;
}
/* Інші рівні — тихіший акцент */
.playlists-player.fs-active .playlists-lists .playlists-items:not(:first-child) li.active {
  background: rgba(255,255,255,0.10) !important;
  box-shadow: inset 3px 0 0 rgba(255,255,255,0.4) !important;
}

/* ── Серії у правій панелі — вертикально ─────────────────── */
.playlists-player.fs-active .playlists-videos .playlists-items {
  width: 100% !important;
  flex-shrink: 0 !important;
}
.playlists-player.fs-active .playlists-videos .playlists-items ul {
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
  padding: 0 !important;
  gap: 2px !important;
}
.playlists-player.fs-active .playlists-videos .playlists-prev,
.playlists-player.fs-active .playlists-videos .playlists-next {
  display: none !important;
}

/* ── Серії ────────────────────────────────────────────────── */
.playlists-player.fs-active .playlists-videos .playlists-items li {
  width: 100% !important;
  height: 32px !important;
  line-height: 32px !important;
  font-size: 13px !important;
  padding: 0 14px 0 10px !important;
  box-sizing: border-box !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  transition: background 0.15s;
}
/* Активна серія */
.playlists-player.fs-active .playlists-videos li.active {
  box-shadow: inset -3px 0 0 #4f6ef7 !important;
  background: rgba(79,110,247,0.2) !important;
}

/* ── Приховування при неактивності ───────────────────────── */
.playlists-player.fs-active.fs-ui-hidden .playlists-lists {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-14px);
}
.playlists-player.fs-active.fs-ui-hidden .playlists-videos {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(14px);
}
.playlists-player.fs-active.fs-ui-hidden .fs-nav-btn {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── Кнопки попередня / наступна — по центру знизу ──────── */
.fs-nav-btn {
  position: absolute;
  bottom: 58px;
  background: rgba(10,10,24,0.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--pl-font, 'Nunito', sans-serif);
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 7px;
  z-index: 20;
  backdrop-filter: blur(8px);
  opacity: 0.88;
  pointer-events: auto;
  top: auto;
  transform: none;
  transition: background 0.18s, opacity 0.35s ease, transform 0.15s;
}
.fs-nav-btn:hover {
  background: rgba(79,110,247,0.82);
  opacity: 1;
  transform: scale(1.05);
}
.playlists-player.fs-active .fs-nav-btn { display: flex; }

.fs-prev-btn { left: 50%; margin-left: -130px; }
.fs-next-btn { left: 50%; margin-left: 14px; }

.fs-arrow { font-size: 14px; }
.fs-label { font-size: 14px; }

/* ── Кнопка ✕ ────────────────────────────────────────────── */
.fs-exit-btn {
  bottom: auto !important;
  top: 12px !important;
  right: 12px !important;
  left: auto !important;
  margin: 0 !important;
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  justify-content: center;
  font-size: 14px;
}
.fs-exit-btn:hover {
  background: rgba(200,40,40,0.85) !important;
  transform: scale(1.12) !important;
}

/* ── Toast ────────────────────────────────────────────────── */
.info-message-full-scrin {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(8,8,20,0.88);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 9px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-family: var(--pl-font, 'Nunito', sans-serif);
  font-weight: 600;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.info-message-full-scrin.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}