/* binds Podcast — Spotify-inspired player UI */

.binds-rebrand.binds-podcastPage {
  --podcast-bg: #0a0a0f;
  --podcast-surface: #12121a;
  --podcast-surface-2: #1a1a26;
  --podcast-surface-hover: #222233;
  --podcast-border: rgba(255, 255, 255, 0.08);
  --podcast-text: rgba(255, 255, 255, 0.95);
  --podcast-text-2: rgba(255, 255, 255, 0.62);
  --podcast-text-3: rgba(255, 255, 255, 0.42);
  --podcast-accent: var(--binds-primary-400, #9871dd);
  --podcast-accent-hot: var(--binds-accent, #ed4d7f);
  --podcast-green: #ed4d7f;
  --podcast-radius: 12px;
  --podcast-player-h: 96px;
  --podcast-space-xs: 8px;
  --podcast-space-sm: 12px;
  --podcast-space-md: 16px;
  --podcast-space-lg: 24px;
  --podcast-space-xl: 32px;
}

.binds-rebrand.binds-podcastPage body,
body.binds-rebrand.binds-podcastPage {
  background: var(--podcast-bg) !important;
  color: var(--podcast-text);
}

.binds-rebrand.binds-podcastPage #content {
  padding-bottom: var(--podcast-player-h);
}

/* Navbar escuro — sobrescreve .st-nav.navbar branco do rebrand */
.binds-rebrand.binds-podcastPage .st-nav.navbar,
.binds-rebrand.binds-podcastPage .main-nav.navigation.st-nav {
  background: rgba(10, 10, 15, 0.94) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--podcast-border) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
}

.binds-rebrand.binds-podcastPage .st-nav .st-root-link.nav-link,
.binds-rebrand.binds-podcastPage .st-nav button.st-root-link.nav-link,
.binds-rebrand.binds-podcastPage .st-nav a.st-root-link.nav-link,
.binds-rebrand.binds-podcastPage .main-nav .nav-link,
.binds-rebrand.binds-podcastPage .main-nav .st-root-link {
  color: rgba(255, 255, 255, 0.92) !important;
  opacity: 1 !important;
}

.binds-rebrand.binds-podcastPage .st-nav .st-root-link.nav-link:hover,
.binds-rebrand.binds-podcastPage .st-nav button.st-root-link.nav-link:hover,
.binds-rebrand.binds-podcastPage .st-nav a.st-root-link.nav-link:hover {
  color: #ffffff !important;
}

.binds-rebrand.binds-podcastPage .st-nav .navbar-brand .logo,
.binds-rebrand.binds-podcastPage .main-nav .navbar-brand .logo {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.binds-rebrand.binds-podcastPage .st-nav .st-nav-section.st-nav-secondary .btn-outline,
.binds-rebrand.binds-podcastPage .main-nav .btn-outline {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  background: transparent !important;
}

.binds-rebrand.binds-podcastPage .st-nav .st-nav-section.st-nav-secondary .btn-outline:hover,
.binds-rebrand.binds-podcastPage .main-nav .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
  color: #ffffff !important;
}

.binds-rebrand.binds-podcastPage .st-nav .st-nav-section.st-nav-secondary .btn-primary,
.binds-rebrand.binds-podcastPage .main-nav .btn-primary {
  background: var(--binds-primary, #673ab7) !important;
  border-color: transparent !important;
  color: #ffffff !important;
}

.binds-rebrand.binds-podcastPage .whatsapp-btn {
  display: none !important;
}

.binds-rebrand.binds-podcastPage .st-nav .navbar-toggler .icon-bar {
  background: #ffffff !important;
}

/* Tipografia: sobrescreve --binds-text escuro do rebrand */
.binds-rebrand.binds-podcastPage .binds-podcast,
.binds-rebrand.binds-podcastPage .binds-podcast h1,
.binds-rebrand.binds-podcastPage .binds-podcast h2,
.binds-rebrand.binds-podcastPage .binds-podcast h3,
.binds-rebrand.binds-podcastPage .binds-podcast p {
  color: var(--podcast-text);
}

.binds-rebrand.binds-podcastPage .binds-podcast__featuredTitle,
.binds-rebrand.binds-podcastPage .binds-podcast__nowTitle,
.binds-rebrand.binds-podcastPage .binds-podcast__episodesHead h2,
.binds-rebrand.binds-podcastPage .binds-podcast__epCardTitle,
.binds-rebrand.binds-podcastPage .binds-podcast__playerTitle {
  color: #ffffff !important;
}

.binds-rebrand.binds-podcastPage footer.footer {
  display: none;
}

/* App shell */
.binds-podcast {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

.binds-podcast__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.binds-podcast__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.binds-podcast__orb--1 {
  width: 420px;
  height: 420px;
  background: var(--binds-primary, #673ab7);
  top: -120px;
  left: -80px;
}

.binds-podcast__orb--2 {
  width: 360px;
  height: 360px;
  background: var(--binds-accent, #ed4d7f);
  top: 40%;
  right: -100px;
}

.binds-podcast__orb--3 {
  width: 280px;
  height: 280px;
  background: var(--binds-teal, #00aaa7);
  bottom: 120px;
  left: 30%;
  opacity: 0.2;
}

.binds-podcast__shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--podcast-space-lg);
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--podcast-space-lg) var(--podcast-space-xl) var(--podcast-space-xl);
  min-height: calc(100vh - 72px - var(--podcast-player-h));
}

.binds-podcast__shellHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--podcast-space-lg);
  padding-bottom: var(--podcast-space-md);
  border-bottom: 1px solid var(--podcast-border);
}

.binds-podcast__shellHeadMain {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--podcast-space-xs);
}

.binds-podcast__shellGrid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) minmax(260px, 288px);
  gap: var(--podcast-space-lg);
  align-items: start;
}

.binds-podcast__shellGrid > .binds-podcast__sidebar,
.binds-podcast__shellGrid > .binds-podcast__content,
.binds-podcast__shellGrid > .binds-podcast__nowPlaying {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/* Sidebar — identidade do show */
.binds-podcast__sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
  max-height: calc(100vh - 72px - var(--podcast-player-h) - 40px);
  overflow-y: auto;
}

.binds-podcast__colCard {
  margin-top: 0;
}

.binds-podcast__showCard.binds-podcast__colCard,
.binds-podcast__nowCard.binds-podcast__colCard,
.binds-podcast__episodeList > .binds-podcast__epCard--featured.binds-podcast__colCard {
  align-self: start;
}

.binds-podcast__showCard {
  display: flex;
  flex-direction: column;
  gap: var(--podcast-space-sm);
  margin-bottom: 0;
  padding: 18px 16px 14px;
  border-radius: 18px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(103, 58, 183, 0.22) 0%, transparent 55%),
    radial-gradient(90% 60% at 100% 100%, rgba(237, 77, 127, 0.08) 0%, transparent 50%),
    var(--podcast-surface);
  border: 1px solid var(--podcast-border);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.binds-podcast__showLogo {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.binds-podcast__showLogoImg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  mix-blend-mode: lighten;
}

.binds-podcast__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--podcast-space-xl);
}

.binds-rebrand.binds-podcastPage .binds-podcast__content section,
.binds-rebrand.binds-podcastPage .binds-podcast__content main {
  margin: 0;
  padding: 0;
}

.binds-podcast__coverWrap {
  position: relative;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  margin-bottom: 16px;
}

.binds-podcast__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--binds-primary-700, #3f3356), var(--binds-primary, #673ab7));
  padding: 0;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.binds-podcast__cover.binds-podcast__cover--brand {
  object-fit: contain;
  padding: 20px;
  filter: brightness(0) invert(1);
  background: linear-gradient(145deg, #3f3356 0%, #5c4690 100%);
}

.binds-podcast__playerThumb img.binds-podcast__cover--logo {
  object-fit: contain;
  background: #0a0a0f;
}

.binds-podcast__coverGlow {
  position: absolute;
  inset: 10%;
  background: var(--binds-primary);
  filter: blur(40px);
  opacity: 0.4;
  z-index: -1;
  border-radius: 50%;
}

.binds-podcast__showSubtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--podcast-text);
  margin: 0;
  line-height: 1.4;
}

.binds-podcast__showDesc {
  font-size: 12px;
  color: var(--podcast-text-2);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.binds-podcast__showMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding-top: var(--podcast-space-sm);
  border-top: 1px solid var(--podcast-border);
}

.binds-podcast__pill {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--podcast-surface-2);
  color: var(--podcast-text-2);
  border: 1px solid var(--podcast-border);
}

.binds-podcast__pill--accent {
  background: rgba(103, 58, 183, 0.35);
  color: #e8dcff;
  border-color: rgba(152, 113, 221, 0.45);
}

.binds-podcast__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.binds-podcast__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--podcast-text-2);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--podcast-surface-2);
  border: 1px solid var(--podcast-border);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.binds-podcast__social a:hover {
  background: var(--podcast-surface-hover);
  color: var(--podcast-text);
  transform: translateY(-1px);
}

.binds-podcast__sidebarNote {
  margin: 0;
  padding-top: var(--podcast-space-sm);
  font-size: 12px;
  border-top: 1px solid var(--podcast-border);
}

.binds-podcast__sidebarNote a {
  color: var(--podcast-text-3);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.15s, border-color 0.15s;
}

.binds-podcast__sidebarNote a:hover {
  color: var(--podcast-green);
  border-color: var(--podcast-green);
}

/* Filtros horizontais */
.binds-podcast__filtersBar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 4px;
}

.binds-podcast__chipGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.binds-podcast__chip {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--podcast-text-2);
  background: var(--podcast-surface);
  border: 1px solid var(--podcast-border);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.binds-podcast__chip:hover {
  background: var(--podcast-surface-hover);
  color: var(--podcast-text);
  border-color: rgba(255, 255, 255, 0.16);
}

.binds-podcast__chip.is-active {
  background: rgba(103, 58, 183, 0.45);
  color: #ffffff;
  border-color: rgba(152, 113, 221, 0.5);
}

/* Blocos da home: bindsCast → Shorts */
.binds-podcast__homeBlock + .binds-podcast__homeBlock {
  margin-top: 8px;
}

.binds-podcast__shorts {
  margin-bottom: 0;
  padding-bottom: 8px;
}

.binds-podcast__content > .binds-podcast__shorts {
  margin-top: 0;
  padding-top: var(--podcast-space-lg);
  border-top: 1px solid var(--podcast-border);
}

.binds-podcast__cast {
  padding: 0;
  margin: 0;
}

.binds-podcast__episodeListWrap {
  margin: 0;
  padding: 0;
}

.binds-podcast__episodeList > .binds-podcast__epCard--featured {
  margin-top: 0;
}

.binds-podcast__castHeadRow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--podcast-space-sm);
}

.binds-podcast__shellHead h2 {
  font-size: 21px;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.binds-rebrand.binds-podcastPage .binds-podcast__shellHead h2,
.binds-rebrand.binds-podcastPage #podcast-cast-heading {
  color: #ffffff !important;
}

.binds-podcast__castLead {
  font-size: 14px;
  color: var(--podcast-text-2);
  margin: 0;
  max-width: 520px;
}

.binds-podcast__castTools {
  flex-shrink: 0;
  width: min(100%, 280px);
}

/* Shorts — barra horizontal */

.binds-podcast__shortsHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.binds-podcast__shortsHead h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 4px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.binds-rebrand.binds-podcastPage .binds-podcast__shortsHead h2 {
  color: #ffffff !important;
}

.binds-podcast__shortsLead {
  font-size: 13px;
  color: var(--podcast-text-3);
  margin: 0;
}

.binds-podcast__shortsLink {
  font-size: 13px;
  font-weight: 600;
  color: var(--podcast-text-2);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.binds-podcast__shortsLink:hover {
  color: var(--podcast-green);
}

.binds-podcast__shortsRail {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.binds-podcast__shortsTrack {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}

.binds-podcast__shortsTrack::-webkit-scrollbar {
  display: none;
}

.binds-podcast__shortsNav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--podcast-border);
  background: var(--podcast-surface);
  color: var(--podcast-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.1s;
}

.binds-podcast__shortsNav:hover {
  background: var(--podcast-surface-hover);
  transform: scale(1.05);
}

.binds-podcast__shortCard {
  flex: 0 0 152px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--podcast-border);
  border-radius: 16px;
  background: var(--podcast-surface);
  cursor: pointer;
  text-align: left;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.binds-podcast__shortCard:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  background: var(--podcast-surface-hover);
}

.binds-podcast__shortCard.is-active {
  border-color: rgba(237, 77, 127, 0.55);
  box-shadow: 0 0 0 1px rgba(237, 77, 127, 0.35), 0 16px 36px rgba(237, 77, 127, 0.12);
}

.binds-podcast__shortCard.is-playing .binds-podcast__shortCardArt::after {
  opacity: 1;
}

.binds-podcast__shortCardArt {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: var(--podcast-surface-2);
}

.binds-podcast__shortCardArt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.2s;
}

.binds-podcast__shortCardArt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.binds-podcast__shortCard:hover .binds-podcast__shortCardArt img {
  transform: scale(1.04);
}

.binds-podcast__shortCardBadge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(237, 77, 127, 0.92);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.binds-podcast__shortCardPlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.binds-podcast__shortCardPlay i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--podcast-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding-left: 2px;
  box-shadow: 0 8px 24px rgba(237, 77, 127, 0.45);
}

.binds-podcast__shortCard:hover .binds-podcast__shortCardPlay,
.binds-podcast__shortCard.is-active .binds-podcast__shortCardPlay {
  opacity: 1;
}

.binds-podcast__shortCardBody {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.binds-podcast__shortCardTitle {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--podcast-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.binds-podcast__shortCardDate {
  font-size: 11px;
  font-weight: 500;
  color: var(--podcast-text-3);
}

/* Main */
.binds-podcast__main {
  min-width: 0;
}

.binds-podcast__toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.binds-podcast__searchWrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--podcast-surface);
  border: 1px solid var(--podcast-border);
  border-radius: 999px;
  padding: 0 16px;
  min-width: 0;
}

.binds-podcast__searchLabel {
  color: var(--podcast-text-3);
  margin: 0;
}

.binds-podcast__search {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: var(--podcast-text);
  font-size: 14px;
  padding: 11px 0;
  outline: none;
}

.binds-podcast__search::placeholder {
  color: var(--podcast-text-3);
}

.binds-podcast__iconBtn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--podcast-text-2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}

.binds-podcast__iconBtn:hover {
  background: var(--podcast-surface-hover);
  color: var(--podcast-text);
}

.binds-podcast__iconBtn--like.is-liked {
  color: var(--podcast-accent-hot);
}

.binds-podcast__iconBtn--like.is-liked i::before {
  font-weight: 900;
}

/* Featured — card principal bindsCast */
.binds-podcast__featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  min-height: 220px;
  background: linear-gradient(135deg, #1f1830 0%, #3d2a62 40%, #2a2040 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.binds-podcast__featuredBg {
  display: none;
}

.binds-podcast__featuredInner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px 32px;
}

.binds-podcast__featuredCopy {
  min-width: 0;
}

.binds-podcast__featuredMedia {
  flex-shrink: 0;
  width: min(280px, 38vw);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
}

.binds-podcast__featuredMedia img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.binds-podcast__featuredBadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--podcast-green);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.binds-podcast__featuredTitle {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.binds-podcast__featuredDesc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 520px;
}

.binds-podcast__featuredActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.binds-podcast__playBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: var(--podcast-green);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s;
}

.binds-podcast__playBtn:hover {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.binds-podcast__playBtn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.binds-podcast__playBtn--round {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

.binds-podcast__playBtn.is-playing {
  background: #ffffff;
  color: var(--podcast-bg);
}

.binds-podcast__playBtn.is-playing i {
  color: var(--podcast-bg);
}

.binds-rebrand.binds-podcastPage .binds-podcast__playBtn {
  background: var(--podcast-green) !important;
  color: #ffffff !important;
}

.binds-rebrand.binds-podcastPage .binds-podcast__playBtn i {
  color: #ffffff !important;
}

.binds-rebrand.binds-podcastPage .binds-podcast__playBtn.is-playing {
  background: #ffffff !important;
  color: var(--podcast-bg) !important;
}

.binds-rebrand.binds-podcastPage .binds-podcast__playBtn.is-playing i {
  color: var(--podcast-bg) !important;
}

.binds-podcast__ghostBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--podcast-text);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--podcast-border);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.15s, border-color 0.15s;
}

.binds-podcast__ghostBtn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--podcast-text);
}

.binds-podcast__ghostBtn--block {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

/* Lista de episódios */
.binds-podcast__episodesCount {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--podcast-text-3);
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--podcast-surface-2);
  border: 1px solid var(--podcast-border);
  white-space: nowrap;
}

.binds-podcast__episodeList {
  display: flex;
  flex-direction: column;
  gap: var(--podcast-space-lg);
}

.binds-podcast__episodesMore {
  display: flex;
  flex-direction: column;
  gap: var(--podcast-space-sm);
  padding-top: var(--podcast-space-md);
  border-top: 1px solid var(--podcast-border);
}

.binds-podcast__episodesMoreTitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--podcast-text-3);
  margin: 0;
}

.binds-podcast__episodesMoreList {
  display: flex;
  flex-direction: column;
  gap: var(--podcast-space-sm);
}

.binds-podcast__epCard {
  display: grid;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  background: var(--podcast-surface);
  border: 1px solid var(--podcast-border);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}

.binds-podcast__epCard--featured {
  grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
}

.binds-podcast__epCard--featured:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.binds-podcast__epCard--featured.is-active {
  border-color: rgba(237, 77, 127, 0.5);
  box-shadow: 0 0 0 1px rgba(237, 77, 127, 0.3), 0 18px 42px rgba(237, 77, 127, 0.1);
}

.binds-podcast__epCard--compact {
  grid-template-columns: 136px minmax(0, 1fr) 52px;
  gap: 0;
  border-radius: 12px;
  min-height: 104px;
}

.binds-podcast__epCard--compact:hover {
  background: var(--podcast-surface-hover);
  border-color: rgba(255, 255, 255, 0.12);
}

.binds-podcast__epCard--compact.is-active {
  background: rgba(237, 77, 127, 0.06);
  border-color: rgba(237, 77, 127, 0.35);
  box-shadow: inset 3px 0 0 var(--podcast-green);
}

.binds-podcast__epCard--compact .binds-podcast__epCardMedia {
  width: 136px;
  min-height: 104px;
  height: 104px;
  flex-shrink: 0;
}

.binds-podcast__epCard--compact .binds-podcast__epCardShade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
}

.binds-podcast__epCard--compact .binds-podcast__epCardBody {
  padding: 14px 16px;
  gap: 8px;
  justify-content: center;
}

.binds-podcast__epCard--compact .binds-podcast__epCardTitle {
  font-size: 15px;
  font-weight: 700;
  -webkit-line-clamp: 2;
}

.binds-podcast__epCard--compact .binds-podcast__epCardMeta {
  font-size: 11px;
  gap: 8px;
}

.binds-podcast__epCard--compact .binds-podcast__epCardPlay {
  position: static;
  align-self: center;
  justify-self: center;
  margin: 0;
  opacity: 0;
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.binds-podcast__epCard--compact:hover .binds-podcast__epCardPlay,
.binds-podcast__epCard--compact.is-active .binds-podcast__epCardPlay {
  opacity: 1;
  transform: scale(1);
}

.binds-podcast__epCard--compact .binds-podcast__epCardBadge {
  top: 6px;
  left: 6px;
  font-size: 9px;
  padding: 4px 8px;
}

.binds-podcast__epCard--featured .binds-podcast__epCardMedia {
  position: relative;
  min-height: 216px;
  background: var(--podcast-surface-2);
  overflow: hidden;
}

.binds-podcast__epCardMedia {
  position: relative;
  background: var(--podcast-surface-2);
  overflow: hidden;
}

.binds-podcast__epCardMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.binds-podcast__epCard--featured:hover .binds-podcast__epCardMedia img {
  transform: scale(1.03);
}

.binds-podcast__epCardShade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.binds-podcast__epCardBadge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.binds-podcast__epCard.is-active .binds-podcast__epCardBadge,
.binds-podcast__epCard.is-playing .binds-podcast__epCardBadge {
  background: var(--podcast-green);
  border-color: transparent;
}

.binds-podcast__epCardPlay {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--podcast-green);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding-left: 2px;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 20px rgba(237, 77, 127, 0.4);
}

.binds-podcast__epCard--featured:hover .binds-podcast__epCardPlay,
.binds-podcast__epCard--featured.is-active .binds-podcast__epCardPlay {
  opacity: 1;
  transform: scale(1);
}

.binds-podcast__epCardBody {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.binds-podcast__epCardTitle {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.02em;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.binds-rebrand.binds-podcastPage .binds-podcast__epCardTitle {
  color: #ffffff !important;
}

.binds-podcast__epCardDesc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--podcast-text-2);
  margin: 0;
  max-width: 640px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.binds-podcast__epCardMeta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--podcast-text-3);
}

.binds-podcast__epCardDur {
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.binds-podcast__epCardTags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.binds-podcast__tag {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(103, 58, 183, 0.22);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(152, 113, 221, 0.25);
}

.binds-podcast__empty {
  text-align: center;
  color: var(--podcast-text-3);
  padding: 48px 24px;
}

/* Now playing panel */
.binds-podcast__nowPlaying {
  position: sticky;
  top: 88px;
  align-self: start;
  max-height: calc(100vh - 72px - var(--podcast-player-h) - 40px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--podcast-space-sm);
}

.binds-podcast__nowCard {
  background: var(--podcast-surface);
  border: 1px solid var(--podcast-border);
  border-radius: 16px;
  padding: var(--podcast-space-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  margin: 0;
}

.binds-podcast__nowCard:not(.has-episode) .binds-podcast__nowTitle,
.binds-podcast__nowCard:not(.has-episode) .binds-podcast__nowMeta,
.binds-podcast__nowCard:not(.has-episode) .binds-podcast__nowDesc,
.binds-podcast__nowCard:not(.has-episode) .binds-podcast__nowTags {
  display: none;
}

.binds-podcast__nowKicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--podcast-text-3);
  margin: 0 0 10px;
  padding: 0;
}

.binds-podcast__nowArt {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--podcast-space-sm);
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, #1e1e2a 0%, #2d2540 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--podcast-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.binds-podcast__nowArt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.binds-podcast__nowArt img.is-hidden {
  display: none;
}

.binds-podcast__nowArtPlaceholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  color: var(--podcast-text-3);
  text-align: center;
}

.binds-podcast__nowArtPlaceholder i {
  font-size: 32px;
  color: var(--podcast-accent);
  opacity: 0.7;
}

.binds-podcast__nowArtPlaceholder span {
  font-size: 12px;
  font-weight: 600;
}

.binds-podcast__nowTitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}

.binds-podcast__nowMeta {
  font-size: 13px;
  color: var(--podcast-text-3);
  margin: 0 0 12px;
}

.binds-podcast__nowDesc {
  font-size: 13px;
  color: var(--podcast-text-2);
  line-height: 1.55;
  margin: 0;
  max-height: 120px;
  overflow-y: auto;
}

.binds-podcast__nowTags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.binds-podcast__videoWrap {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}

.binds-podcast__videoWrap iframe {
  width: 100%;
  height: 100%;
}

/* Bottom player */
.binds-podcast__player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  height: var(--podcast-player-h);
  background: rgba(18, 18, 26, 0.95);
  border-top: 1px solid var(--podcast-border);
  backdrop-filter: blur(20px);
}

.binds-podcast__playerInner {
  display: grid;
  grid-template-columns: minmax(200px, 28%) minmax(0, 1fr) minmax(180px, 22%);
  align-items: center;
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 12px 24px;
  height: 100%;
}

.binds-podcast__playerTrack {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.binds-podcast__playerThumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: var(--podcast-surface-2);
}

.binds-podcast__playerThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.binds-podcast__playerInfo {
  min-width: 0;
}

.binds-podcast__playerTitle {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.binds-podcast__playerArtist {
  font-size: 12px;
  color: var(--podcast-text-2);
  margin: 0;
}


.binds-podcast__playerControls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.binds-podcast__transport {
  display: flex;
  align-items: center;
  gap: 16px;
}

.binds-podcast__progress {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 560px;
}

.binds-podcast__time {
  font-size: 11px;
  color: var(--podcast-text-3);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
}

.binds-podcast__progressBar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.binds-podcast__progressBar:hover {
  height: 6px;
}

.binds-podcast__progressFill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--podcast-text);
  border-radius: 4px;
  transition: width 0.1s linear;
}

.binds-podcast__progressBar:hover .binds-podcast__progressFill {
  background: var(--podcast-green);
}

.binds-podcast__playerExtras {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.binds-podcast__speedLabel {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.binds-podcast__speed {
  font-size: 12px;
  font-weight: 600;
  background: var(--podcast-surface-2);
  color: var(--podcast-text-2);
  border: 1px solid var(--podcast-border);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
}

.binds-podcast__volume {
  width: 96px;
  accent-color: var(--podcast-green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .binds-podcast__shellHead {
    flex-direction: column;
    align-items: stretch;
    gap: var(--podcast-space-md);
  }

  .binds-podcast__castTools {
    width: 100%;
  }

  .binds-podcast__shellGrid {
    grid-template-columns: 1fr;
  }

  .binds-podcast__sidebar {
    position: static;
    max-height: none;
  }

  .binds-podcast__nowPlaying {
    position: static;
    max-height: none;
    order: -1;
  }

  .binds-podcast__videoWrap.is-mobile-visible {
    display: block !important;
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    z-index: 90;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
  }
}

@media (max-width: 768px) {
  .binds-podcast__featuredInner {
    grid-template-columns: 1fr;
  }

  .binds-podcast__featuredMedia {
    width: 100%;
    max-width: 280px;
    justify-self: start;
  }

  .binds-podcast__shell {
    padding: 16px;
    gap: var(--podcast-space-md);
  }

  .binds-podcast__shellGrid {
    gap: var(--podcast-space-md);
  }

  .binds-podcast__showDesc {
    -webkit-line-clamp: 2;
  }

  .binds-podcast__filtersBar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .binds-podcast__filtersBar::-webkit-scrollbar {
    display: none;
  }

  .binds-podcast__chipGroup {
    flex-wrap: nowrap;
  }

  .binds-podcast__playerInner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    padding: 10px 16px 12px;
  }

  .binds-podcast__playerExtras {
    display: none;
  }

  .binds-podcast__shortCard {
    flex: 0 0 136px;
  }
}

@media (max-width: 720px) {
  .binds-podcast__epCard--featured {
    grid-template-columns: 1fr;
  }

  .binds-podcast__epCard--featured .binds-podcast__epCardMedia {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .binds-podcast__epCard--featured .binds-podcast__epCardBody {
    padding: 16px 18px 18px;
  }

  .binds-podcast__epCard--featured .binds-podcast__epCardTitle {
    font-size: 18px;
  }

  .binds-podcast__epCard--compact {
    grid-template-columns: 120px minmax(0, 1fr) 48px;
    min-height: 96px;
  }

  .binds-podcast__epCard--compact .binds-podcast__epCardMedia {
    width: 120px;
    min-height: 96px;
    height: 96px;
  }

  .binds-podcast__epCard--compact .binds-podcast__epCardPlay {
    opacity: 1;
    margin-right: 10px;
  }
}

@media (max-width: 600px) {
  .binds-rebrand.binds-podcastPage #content {
    padding-bottom: 140px;
  }

  .binds-podcast {
    --podcast-player-h: 132px;
  }

  .binds-podcast__sidebar {
    grid-template-columns: 1fr;
  }

  .binds-podcast__featuredInner {
    padding: 28px 20px;
  }

  .binds-podcast__epCardPlay {
    opacity: 1;
    transform: scale(1);
  }
}
