﻿/* ===================================================================
   PlaySominalTv â€” UI Enhancements
   =================================================================== */

/* ----- 1. STICKY HEADER ----- */
.hd {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow .3s ease, background .3s ease;
}
.hd.pst-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
}

/* ----- 2. SKELETON SHIMMER ----- */
@keyframes pst-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.post-thumbnail figure,
.home.item figure {
  position: relative;
  overflow: hidden;
}
.post-thumbnail figure:not(.pst-loaded)::before,
.home.item figure:not(.pst-loaded)::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #0d0d1a 25%, #1c1c3a 50%, #0d0d1a 75%);
  background-size: 200% 100%;
  animation: pst-shimmer 1.6s ease-in-out infinite;
}

/* ----- 3. LOCK BADGE ----- */
.pst-lock {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,.78);
  color: #ffd700;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  z-index: 9;
  border: 1.5px solid rgba(255,215,0,.4);
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
/* free-content override: no lock, show green FREE tag */
.pst-free-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #22c55e;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .6px;
  padding: 2px 6px;
  border-radius: 3px;
  z-index: 9;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
}

/* ----- 4. NEW EPISODE / NEW RELEASE BADGE ----- */
@keyframes pst-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .65; }
}
.pst-new-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ef4444;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .6px;
  padding: 2px 6px;
  border-radius: 3px;
  z-index: 9;
  text-transform: uppercase;
  animation: pst-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
}

/* ----- 5. WATCHLIST HEART ----- */
button.pst-wl {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,.75);
  color: rgba(255,255,255,.75);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 9;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.18);
  transition: color .2s, transform .15s, border-color .2s;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
button.pst-wl:hover          { transform: scale(1.15); color: #ef4444; border-color: rgba(239,68,68,.5); }
button.pst-wl.active         { color: #ef4444; border-color: rgba(239,68,68,.5); }

/* ----- 6. LIVE SEARCH DROPDOWN ----- */
form.search { position: relative; }
.pst-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #0e0e20;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  max-height: 420px;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: 0 16px 48px rgba(0,0,0,.75);
  display: none;
}
.pst-search-dropdown.open { display: block; }
.pst-srch-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none !important;
  color: inherit !important;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s;
}
.pst-srch-item:last-child { border-bottom: none; }
.pst-srch-item:hover,
.pst-srch-item:focus      { background: rgba(255,255,255,.07); outline: none; }
.pst-srch-item img,
.pst-srch-placeholder {
  width: 40px;
  height: 56px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
  background: #1a1a2e;
}
.pst-srch-item-title {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pst-srch-item-meta {
  font-size: 11px;
  opacity: .5;
  margin-top: 3px;
}
.pst-srch-loading,
.pst-srch-empty {
  padding: 20px;
  text-align: center;
  font-size: 13px;
  opacity: .5;
}

/* ================================================================
   PREMIUM MOVIE PAGE â€” pst-mv-* components
   ================================================================ */

/* ---- Hero: full-bleed cinematic backdrop ---- */
.pst-mv-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  background: #070714;
  display: flex;
  align-items: flex-end;
}
.pst-mv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--pst-hero-bg);
  background-size: cover;
  background-position: center 20%;
  filter: brightness(.55) saturate(1.15);
  z-index: 0;
  transform: scale(1.03); /* subtle zoom prevents white edges */
}
.pst-mv-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,  rgba(11,12,12,0) 20%, rgba(11,12,12,.82) 65%, #0b0c0c 100%),
    linear-gradient(to right,   rgba(0,0,0,.82)  0%,  rgba(0,0,0,.35)   55%, transparent 80%);
  z-index: 1;
}
.pst-mv-hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 32px;
  padding-top: 100px;
  padding-bottom: 52px;
  width: 100%;
}
.pst-mv-poster {
  width: 170px;
  min-width: 170px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.75);
  border: 2px solid rgba(255,255,255,.14);
  display: block;
  align-self: flex-end;
  flex-shrink: 0;
}
.pst-mv-info { flex: 1; min-width: 0; }

/* Badges */
.pst-mv-badges { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.pst-mv-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 5px;
}
.pst-mv-badge--quality {
  background: rgba(255,215,0,.15);
  color: #ffd700;
  border: 1px solid rgba(255,215,0,.4);
}
.pst-mv-badge--free {
  background: rgba(34,197,94,.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,.4);
}

/* Title */
.pst-mv-title {
  font-size: clamp(28px, 4.5vw, 56px) !important;
  font-weight: 900 !important;
  line-height: 1.04 !important;
  margin: 0 0 16px !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 2px 20px rgba(0,0,0,.55) !important;
  letter-spacing: -.5px !important;
  background: none !important;
}

/* Meta row */
.pst-mv-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,.82);
}
.pst-mv-meta-sep { color: rgba(255,255,255,.28); font-size: 11px; margin: 0 1px; }
.pst-mv-rating    { color: #ffd700; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.pst-mv-year      { font-weight: 600; }
.pst-mv-dur       { color: rgba(255,255,255,.6); }
.pst-mv-genre     {
  background: rgba(255,255,255,.1);
  border-radius: 5px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15px;
  border: 1px solid rgba(255,255,255,.12);
}

/* Hero audio chips */
.pst-mv-hero-audio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}
.pst-mv-al {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .7px;
}
.pst-mv-hero-audio .chip {
  font-size: 11px !important;
  padding: 4px 12px !important;
  background: rgba(255,255,255,.1) !important;
  border-radius: 20px !important;
  color: rgba(255,255,255,.78) !important;
  -webkit-text-fill-color: rgba(255,255,255,.78) !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  transition: background .15s !important;
}
.pst-mv-hero-audio .chip:hover {
  background: rgba(255,215,0,.18) !important;
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700 !important;
}

/* Hero CTA row */
.pst-mv-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---- Container ---- */
.pst-mv-container { padding-top: 32px !important; }

/* ---- Player wrap ---- */
.pst-mv-player-wrap { margin-bottom: 0; }
.pst-mv-player-wrap .pst-player-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.07);
}

/* ---- Two-column body ---- */
.pst-mv-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  margin-top: 44px;
  margin-bottom: 44px;
  align-items: start;
}

/* Section heading */
.pst-mv-section-h {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin: 0 0 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  background: none !important;
  letter-spacing: .1px !important;
}

/* About / excerpt */
.pst-mv-excerpt p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
  margin: 0 0 18px;
}
.pst-mv-content p,
.pst-mv-content li {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
}

/* ---- Sidebar ---- */
.pst-mv-sidebar {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 6px 20px 16px;
  position: sticky;
  top: 84px;
}
.pst-mv-detail-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pst-mv-detail-row:last-child { border-bottom: none; }
.pst-mv-dl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: rgba(255,255,255,.38);
}
.pst-mv-dv {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}
.pst-mv-dv--links a,
.pst-mv-dv a {
  color: rgba(255,255,255,.78) !important;
  text-decoration: none !important;
  transition: color .15s;
}
.pst-mv-dv--links a:hover,
.pst-mv-dv a:hover { color: #ffd700 !important; }

/* Sidebar chips */
.pst-mv-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pst-mv-chips .chip {
  font-size: 11px !important;
  padding: 4px 12px !important;
  background: rgba(255,255,255,.07) !important;
  border-radius: 20px !important;
  color: rgba(255,255,255,.72) !important;
  -webkit-text-fill-color: rgba(255,255,255,.72) !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,.11) !important;
  transition: background .15s !important;
}
.pst-mv-chips .chip:hover {
  background: rgba(255,215,0,.15) !important;
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700 !important;
  border-color: rgba(255,215,0,.3) !important;
}

/* Share row inside sidebar */
.pst-mv-detail-share ul,
.pst-mv-detail-share .share { margin: 0 !important; }
.pst-mv-detail-share ul { list-style: none !important; padding: 0 !important; display: flex !important; gap: 8px !important; flex-wrap: wrap !important; }
.pst-mv-detail-share li { margin: 0 !important; }
.pst-mv-detail-share .share > span { display: none !important; } /* hide "Share" label */

/* ---- Cast avatar row ---- */
.pst-mv-cast-section { margin-bottom: 44px; }
.pst-mv-cast-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.12) transparent;
}
.pst-mv-cast-scroll::-webkit-scrollbar { height: 3px; }
.pst-mv-cast-scroll::-webkit-scrollbar-track { background: transparent; }
.pst-mv-cast-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }
.pst-mv-cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-decoration: none !important;
  flex-shrink: 0;
  width: 70px;
  transition: transform .2s;
}
.pst-mv-cast-item:hover { transform: translateY(-4px); }
.pst-mv-cast-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
  border: 2px solid rgba(255,255,255,.1);
}
.pst-mv-cast-name {
  font-size: 10.5px;
  color: rgba(255,255,255,.6);
  text-align: center;
  line-height: 1.3;
  max-width: 68px;
  word-break: break-word;
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  .pst-mv-hero { min-height: 440px; }
  .pst-mv-hero-body { flex-direction: column; align-items: flex-start; gap: 14px; padding-bottom: 28px; padding-top: 72px; }
  .pst-mv-poster { width: 110px; min-width: 110px; align-self: auto; }
  .pst-mv-title { font-size: clamp(24px, 7.5vw, 36px) !important; margin-bottom: 12px !important; }
  .pst-mv-body { grid-template-columns: 1fr; }
  .pst-mv-sidebar { position: static; top: auto; }
  .pst-mv-ctas { gap: 10px; }
}

/* ---- Override parent theme's .section.single if it somehow renders ---- */
.pst-mv-container article.post.single .dfxb { display: none !important; }

/* ----- 6b. TAXONOMY INTRO + FAQ ----- */
.pst-tax-intro {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin: 0 0 18px !important;
  max-width: 820px;
}
.pst-faq-block {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 0 0 22px !important;
  font-size: 13px;
  cursor: pointer;
}
.pst-faq-block summary {
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,215,0,.8);
  user-select: none;
  list-style: none;
}
.pst-faq-block summary::-webkit-details-marker { display: none; }
.pst-faq-block summary::before { content: '+ '; }
.pst-faq-block[open] summary::before { content: 'âˆ’ '; }
.pst-faq-list { margin-top: 14px; }
.pst-faq-list dt {
  font-weight: 600;
  font-size: 13px;
  margin: 12px 0 4px;
  color: rgba(255,255,255,.9);
}
.pst-faq-list dd {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,.58);
  margin: 0 0 4px;
}
/* Movie page inline FAQ */
.pst-movie-faq {
  margin: 28px 0 0 !important;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 18px 20px;
}
.pst-movie-faq h2 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: rgba(255,215,0,.8) !important;
  margin: 0 0 14px !important;
}

/* ----- 7. SUBSCRIBE / PRICING SECTION ----- */
.pst-subscribe-section {
  margin: 48px 0 24px !important;
  padding: 64px 20px 52px !important;
  background: linear-gradient(160deg, #0d0d24 0%, #1b0a30 40%, #091626 100%) !important;
  border: 1px solid rgba(255,215,0,.15) !important;
  border-radius: 24px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: inset 0 0 100px rgba(255,215,0,.04), 0 24px 80px rgba(0,0,0,.5) !important;
}
.pst-sub-glow {
  position: absolute !important;
  top: -80px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 600px !important;
  height: 400px !important;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,215,0,.14) 0%, transparent 70%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}
.pst-subscribe-section > * { position: relative !important; z-index: 1 !important; }
.pst-sub-title {
  font-size: clamp(26px, 4vw, 44px) !important;
  font-weight: 800 !important;
  margin: 0 0 14px !important;
  line-height: 1.15 !important;
  display: block !important;
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700 !important;
  background: linear-gradient(135deg, #ffd700 20%, #ffaa00 80%);
  -webkit-background-clip: text;
  background-clip: text;
}
.pst-sub-subtitle {
  font-size: 15px !important;
  color: rgba(255,255,255,.6) !important;
  -webkit-text-fill-color: rgba(255,255,255,.6) !important;
  margin: 0 auto 48px !important;
  max-width: 500px !important;
  line-height: 1.7 !important;
  display: block !important;
}
/* Plan cards row */
.pst-plans {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  margin: 0 auto 16px !important;
  max-width: 860px !important;
  padding: 0 !important;
  list-style: none !important;
}
/* Individual plan card */
.pst-plan {
  flex: 1 !important;
  min-width: 210px !important;
  max-width: 265px !important;
  background: rgba(255,255,255,.08) !important;
  border: 1.5px solid rgba(255,255,255,.15) !important;
  border-radius: 20px !important;
  padding: 36px 24px 28px !important;
  position: relative !important;
  text-align: left !important;
  box-shadow: 0 6px 28px rgba(0,0,0,.3) !important;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease !important;
  display: block !important;
}
.pst-plan:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(255,215,0,.4) !important;
  box-shadow: 0 16px 44px rgba(0,0,0,.5) !important;
}
.pst-plan.popular {
  border-color: rgba(255,215,0,.65) !important;
  background: rgba(255,215,0,.1) !important;
  box-shadow: 0 8px 36px rgba(255,215,0,.2) !important;
}
.pst-plan.best-val {
  border-color: rgba(129,140,248,.45) !important;
  background: rgba(99,102,241,.08) !important;
}
.pst-plan-badge {
  position: absolute !important;
  top: -14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(135deg, #ffd700, #ff9500) !important;
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  padding: 4px 16px !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
  box-shadow: 0 2px 10px rgba(255,165,0,.4) !important;
  display: block !important;
}
.pst-plan-badge--blue {
  background: linear-gradient(135deg, #6366f1, #818cf8) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 2px 10px rgba(99,102,241,.4) !important;
}
.pst-plan-name {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,.5) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  margin: 0 0 10px !important;
  display: block !important;
}
.pst-plan-price {
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700 !important;
  line-height: 1 !important;
  margin: 0 0 5px !important;
  display: block !important;
}
.pst-plan-price sup {
  font-size: 20px !important;
  font-weight: 700 !important;
  vertical-align: top !important;
  line-height: 1.5 !important;
}
.pst-plan-cents {
  font-size: 22px !important;
  font-weight: 700 !important;
}
.pst-plan-period {
  font-size: 12px !important;
  color: rgba(255,255,255,.42) !important;
  -webkit-text-fill-color: rgba(255,255,255,.42) !important;
  margin: 0 0 22px !important;
  display: block !important;
  line-height: 1.5 !important;
}
.pst-plan-features {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
}
.pst-plan-features li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 6px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.78) !important;
  -webkit-text-fill-color: rgba(255,255,255,.78) !important;
  line-height: 1.45 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
}
.pst-plan-features li:last-child { border-bottom: none !important; }
.pst-plan-features li::marker   { content: '' !important; display: none !important; }
.pst-plan-features li::before {
  content: 'âœ“' !important;
  display: inline-block !important;
  color: #22c55e !important;
  -webkit-text-fill-color: #22c55e !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  font-size: 12px !important;
  margin-top: 1px !important;
}
/* Per-card CTA button */
.pst-plan-btn {
  display: block !important;
  text-align: center !important;
  background: rgba(255,255,255,.1) !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 11px 0 !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  transition: background .2s, border-color .2s;
  letter-spacing: .3px !important;
  width: 100% !important;
}
.pst-plan-btn:hover {
  background: rgba(255,255,255,.18) !important;
  border-color: rgba(255,255,255,.4) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.pst-plan-btn--gold {
  background: linear-gradient(135deg, #ffd700, #ff9500) !important;
  border-color: transparent !important;
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  box-shadow: 0 4px 18px rgba(255,190,0,.35) !important;
}
.pst-plan-btn--gold:hover {
  background: linear-gradient(135deg, #ffe340, #ff9f00) !important;
  box-shadow: 0 6px 24px rgba(255,190,0,.5) !important;
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}
.pst-sub-note {
  font-size: 13px !important;
  color: rgba(255,255,255,.45) !important;
  -webkit-text-fill-color: rgba(255,255,255,.45) !important;
  margin: 20px 0 0 !important;
  display: block !important;
}
.pst-sub-note a {
  color: rgba(255,215,0,.8) !important;
  -webkit-text-fill-color: rgba(255,215,0,.8) !important;
  text-decoration: underline !important;
}
.pst-sub-note a:hover {
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700 !important;
}
.pst-trust-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 6px 28px !important;
  margin: 28px 0 0 !important;
  font-size: 12px !important;
  color: rgba(255,255,255,.38) !important;
  -webkit-text-fill-color: rgba(255,255,255,.38) !important;
}
.pst-trust-row span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
}
.pst-trust-row svg { opacity: .6; flex-shrink: 0; }
@media (max-width: 660px) {
  .pst-plan { max-width: 100% !important; min-width: 280px !important; }
}

/* ----- 8. PAYWALL PLAYER PLACEHOLDER ----- */
.pst-paywall {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 340px;
  padding: 48px 24px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #070714;
  background-size: cover;
  background-position: center;
  position: relative;
  box-sizing: border-box;
}
.pst-paywall::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,7,20,.5) 0%, rgba(7,7,20,.92) 100%);
  z-index: 0;
}
.pst-paywall > * { position: relative; z-index: 1; }
.pst-paywall-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,215,0,.12);
  border: 2px solid rgba(255,215,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ffd700;
}
.pst-paywall-title {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.pst-paywall-sub {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin: 0 0 28px;
  max-width: 400px;
  line-height: 1.7;
}
.pst-paywall-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
.pst-paywall-free-link {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
.pst-paywall-free-link:hover { color: rgba(255,255,255,.7); }
.pst-btn-primary {
  background: linear-gradient(135deg, #ffd700, #ff9500);
  color: #000 !important;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none !important;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(255,215,0,.3);
  letter-spacing: .2px;
}
.pst-btn-primary:hover { transform: scale(1.04); }
.pst-btn-secondary {
  background: rgba(255,255,255,.1);
  color: #fff !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none !important;
  font-size: 14px;
  transition: background .2s;
  border: 1px solid rgba(255,255,255,.2);
}
.pst-btn-secondary:hover { background: rgba(255,255,255,.18); }

/* cleaner player wrapper (replaces inline styles) */
.pst-player-wrap {
  padding-bottom: 56.25%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  margin-bottom: 16px;
}
.pst-player-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ----- 9. SECTION VISUAL DIFFERENTIATION ----- */
/* Movies: gold left accent */
.section.featured .section-header {
  border-left: 3px solid #ffd700;
  padding-left: 14px;
}
/* Series: blue/purple left accent */
.section.nt-tb-carousel:not(.featured) .section-header {
  border-left: 3px solid #818cf8;
  padding-left: 14px;
}
/* Continue watching: teal accent */
.pst-continue-section .section-header {
  border-left: 3px solid #14b8a6;
  padding-left: 14px;
}

/* ----- 10. CONTINUE WATCHING ROW ----- */
.pst-continue-section {
  display: none;
  margin-bottom: 8px;
}

/* ----- 11. HERO CTA FOR NON-MEMBERS ----- */
.pst-hero-ctas {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 18px !important;
  list-style: none !important;
  padding: 0 !important;
}
.pst-hero-ctas a.pst-hero-subscribe,
.pst-hero-ctas a.pst-btn-outline-sm {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
.pst-hero-ctas a.pst-hero-subscribe {
  background: linear-gradient(135deg,#ffd700,#ff9500) !important;
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  letter-spacing: .2px !important;
  box-shadow: 0 4px 18px rgba(255,215,0,.35) !important;
  transition: transform .2s, box-shadow .2s !important;
  border: none !important;
  line-height: 1.2 !important;
}
.pst-hero-ctas a.pst-hero-subscribe:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 8px 28px rgba(255,215,0,.5) !important;
}
.pst-hero-ctas a.pst-btn-outline-sm {
  background: rgba(255,255,255,.1) !important;
  color: rgba(255,255,255,.85) !important;
  -webkit-text-fill-color: rgba(255,255,255,.85) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 11px 20px !important;
  border-radius: 50px !important;
  border: 1.5px solid rgba(255,255,255,.3) !important;
  line-height: 1.2 !important;
  transition: background .2s !important;
}
.pst-hero-ctas a.pst-btn-outline-sm:hover {
  background: rgba(255,255,255,.18) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.pst-hero-subscribe {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700, #ff9500) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 13px 26px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-size: 14px !important;
  letter-spacing: .2px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(255,215,0,.4);
  line-height: 1.2 !important;
  border: none !important;
}
.pst-hero-subscribe:hover { transform: scale(1.05) !important; box-shadow: 0 8px 28px rgba(255,215,0,.5); color: #000 !important; }
.pst-btn-outline-sm {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 13px !important;
  padding: 11px 20px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  color: rgba(255,255,255,.85) !important;
  border: 1.5px solid rgba(255,255,255,.3) !important;
  background: rgba(255,255,255,.06) !important;
  transition: background .2s, color .2s;
  margin-left: 10px;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}
.pst-btn-outline-sm:hover { background: rgba(255,255,255,.12) !important; color: #fff !important; }

/* ----- 12. WHATSAPP / SHARE ----- */
.pst-share-wa {
  color: #25D366 !important;
}

/* ----- 13. LANGUAGE BROWSE ROW ----- */
.pst-lang-filter {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 7px !important;
  margin: 0 0 20px !important;
}
.pst-lang-filter-label {
  font-size: 11px !important;
  color: rgba(255,255,255,.4) !important;
  -webkit-text-fill-color: rgba(255,255,255,.4) !important;
  text-transform: uppercase !important;
  letter-spacing: .7px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}
.pst-lang-btn {
  display: inline-block !important;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.75) !important;
  -webkit-text-fill-color: rgba(255,255,255,.75) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 5px 14px !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  transition: background .2s, border-color .2s, color .2s;
  line-height: 1.5 !important;
  white-space: nowrap !important;
}
.pst-lang-btn:hover {
  background: #ffd700 !important;
  border-color: #ffd700 !important;
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}

/* ----- 14. RELATED SECTION ----- */
.pst-related-section { margin-top: 28px; }
.pst-related-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pst-related-section h3::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: #ffd700;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ----- 15. LOAD MORE BUTTON ----- */
.pst-load-more-wrap { text-align: center; padding: 28px 0 8px; }
.pst-load-more {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.pst-load-more:hover    { background: rgba(255,255,255,.12); border-color: rgba(255,215,0,.4); transform: scale(1.02); }
.pst-load-more:disabled { opacity: .4; cursor: not-allowed; transform: none !important; }
@keyframes pst-spin { to { transform: rotate(360deg); } }
.pst-load-more .pst-spinner {
  display: none;
  width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: pst-spin .6s linear infinite;
  flex-shrink: 0;
}
.pst-load-more.loading .pst-spinner   { display: block; }
.pst-load-more.loading .pst-lm-text  { opacity: .5; }

/* ----- 16. FOOTER EXTRA LINKS ----- */
.pst-footer-links {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 4px 18px !important;
  padding: 16px 20px !important;
  font-size: 12px !important;
  color: rgba(255,255,255,.52) !important;
  -webkit-text-fill-color: rgba(255,255,255,.52) !important;
  border-top: 1px solid rgba(255,255,255,.09) !important;
  line-height: 1.8 !important;
  opacity: 1 !important;
}
.pst-footer-links a {
  color: rgba(255,255,255,.52) !important;
  -webkit-text-fill-color: rgba(255,255,255,.52) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: color .2s;
}
.pst-footer-links a:hover {
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700 !important;
  opacity: 1 !important;
}
.pst-footer-links span {
  color: rgba(255,255,255,.3) !important;
  -webkit-text-fill-color: rgba(255,255,255,.3) !important;
  white-space: nowrap !important;
}

/* ----- 17. AUDIO & SUBTITLES CHIPS ----- */
.meta-block {
  margin: 14px 0 4px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.meta-heading {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: rgba(255,255,255,.4) !important;
  margin: 0 0 10px !important;
  display: block !important;
}
.meta-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: baseline !important;
  gap: 6px !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
}
.meta-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 68px;
}
.meta-values {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.chip {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.8);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
  line-height: 1.5;
}
.chip:hover {
  background: rgba(255,215,0,.15);
  border-color: rgba(255,215,0,.35);
  color: #ffd700;
}

/* ----- 18. MOBILE BREAKPOINTS ----- */
@media (max-width: 768px) {
  /* Single movie: poster + info stack */
  .dfxb {
    flex-direction: column !important;
  }
  .dfxb > aside {
    width: 100% !important;
    max-width: 180px !important;
    margin: 0 auto 16px !important;
  }
  /* Section headers */
  .section-header {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  /* Hero CTAs */
  .pst-hero-subscribe {
    padding: 11px 18px !important;
    font-size: 13px !important;
  }
  .pst-btn-outline-sm {
    padding: 10px 16px !important;
    font-size: 12px !important;
    margin-left: 6px !important;
  }
  /* Pricing plans */
  .pst-plans {
    flex-direction: column !important;
    align-items: center !important;
  }
  .pst-plan {
    max-width: 100% !important;
    min-width: 260px !important;
    width: 100% !important;
  }
  /* Paywall action buttons */
  #pst-pw .pw-actions {
    flex-direction: column !important;
    align-items: center !important;
  }
  #pst-pw .pw-btn-sub,
  #pst-pw .pw-btn-log {
    width: 100% !important;
    max-width: 300px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
  /* Movie details list */
  .details-lst li.rw.sm {
    flex-direction: column !important;
    gap: 2px !important;
  }
  /* Meta chips */
  .meta-label {
    min-width: auto;
  }
  /* Search dropdown */
  .pst-search-dropdown {
    left: -10px !important;
    right: -10px !important;
  }
  /* Load more button */
  .pst-load-more {
    width: 100%;
    justify-content: center;
  }
}

/* ----- MISC POLISH ----- */
/* Remove orphan </p> before single section */
.section.single > p:empty { display: none; }

/* ----- PAGINATION ----- */
/* Hide the "Posts navigation" screen-reader heading */
.navigation.pagination h2,
.navigation h2.screen-reader-text { display: none !important; }
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 28px 0 8px;
}
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
  line-height: 1;
}
.pagination .page-numbers:hover {
  background: rgba(255,215,0,.15);
  border-color: rgba(255,215,0,.35);
  color: #ffd700;
}
.pagination .page-numbers.current {
  background: #ffd700;
  border-color: #ffd700;
  color: #000;
  font-weight: 700;
}
.pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  color: rgba(255,255,255,.3);
  pointer-events: none;
}

/* ----- CONTINUE WATCHING: gap + remove button ----- */
.pst-continue-section { margin-bottom: 36px !important; }
[data-cw-id] { position: relative !important; }
.pst-cw-remove {
  position: absolute !important;
  top: 6px !important;
  right: 6px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 4px !important;
  background: rgba(0,0,0,.65) !important;
  border: none !important;
  color: rgba(255,255,255,.9) !important;
  cursor: pointer !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  transition: background .15s !important;
  pointer-events: auto !important;
  font-family: inherit !important;
  backdrop-filter: blur(4px) !important;
}
.pst-cw-remove:hover { background: rgba(239,68,68,.9) !important; }
.pst-cw-remove svg { display: block; pointer-events: none; }

