/* ===== Avenir Next Cyr Regular ===== */
@font-face {
  font-family: 'AvenirNextCyr-Regular';
  src: url('../fonts/AvenirNextCyr-Regular.eot');
  src: url('../fonts/AvenirNextCyr-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AvenirNextCyr-Regular.woff2') format('woff2'),
    url('../fonts/AvenirNextCyr-Regular.woff') format('woff'),
    url('../fonts/AvenirNextCyr-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== Avenir Next Cyr Medium ===== */
@font-face {
  font-family: 'AvenirNextCyr-Medium';
  src: url('../fonts/AvenirNextCyr-Medium.eot');
  src: url('../fonts/AvenirNextCyr-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AvenirNextCyr-Medium.woff2') format('woff2'),
    url('../fonts/AvenirNextCyr-Medium.woff') format('woff'),
    url('../fonts/AvenirNextCyr-Medium.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== Avenir Next Cyr Bold ===== */
@font-face {
  font-family: 'AvenirNextCyr-Bold';
  src: url('../fonts/AvenirNextCyr-Bold.eot');
  src: url('../fonts/AvenirNextCyr-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AvenirNextCyr-Bold.woff2') format('woff2'),
    url('../fonts/AvenirNextCyr-Bold.woff') format('woff'),
    url('../fonts/AvenirNextCyr-Bold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ===== Avenir Next Cyr Heavy ===== */
@font-face {
  font-family: 'AvenirNextCyr-Heavy';
  src: url('../fonts/AvenirNextCyr-Heavy.eot');
  src: url('../fonts/AvenirNextCyr-Heavy.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AvenirNextCyr-Heavy.woff2') format('woff2'),
    url('../fonts/AvenirNextCyr-Heavy.woff') format('woff'),
    url('../fonts/AvenirNextCyr-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


#onetrust-banner-sdk {
  position: fixed !important;
}

.displayNone{
  display: none !important;
}

/* YouTube Preview */

.yt-preview-layer {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 50;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
    margin-top: 50px;
}

.yt-preview-box {
  position: relative;
  cursor: pointer;
}

.yt-preview-img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  opacity: 0.8;
}

.yt-play-btn {
  position: absolute;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 60px;
  color: white;
  pointer-events: none;
}

.yt-consent-layer {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
    margin-top: 50px;
}

.yt-consent-box {
  background: #111;
  padding: 25px;
  color: white;
  border-radius: 10px;
  text-align: center;
}

#ytOpenConsent, #ytCancelConsent{
  background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 6px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease;
    margin-top: 20px;
}

/* IE Block Code Start */
#olderbrowser {
  display: block;
  width: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  font-size: 20px;
  z-index: 1100;
  color: #ffffff;
  height: 100%;
  background: #000000;
  bottom: 0;
}
.ie-quote {
  margin-top: 15%;
}
.iebrowsertt{
  width: 200px;
}
.ie-quote p {
  padding-top: 35px;
} 
/*== IE Block Code Ends ==*/

/* .regular-text {
  font-family: 'AvenirNextCyr-Regular', Arial, sans-serif;
}

.medium-text {
  font-family: 'AvenirNextCyr-Medium', Arial, sans-serif;
}

.bold-text {
  font-family: 'AvenirNextCyr-Bold', Arial, sans-serif;
}

.heavy-text, h1 {
  font-family: 'AvenirNextCyr-Heavy', Arial, sans-serif;
} */

body {
  font-family: 'AvenirNextCyr-Medium', Arial, sans-serif;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

.main-container {
  background-image: url("../images/tile_bg.jpg");
  background-position: center;
    background-size: 100% 100%;
    /* background-repeat: no-repeat; */

}
.main-container-episodes-page
{
  min-height: 100vh;
}

/* HAMBURGER */
.hamburger {
  width: 30px;
  height: 23px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;

  transform-origin: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.brand-logo {
  height: 15px;
}

.show-for-mob {
  display: none;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.hamburger.active span {
  border-radius: 0;
}

.hero {
  color: #fff;
}

.fixed-top {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 10;
}

.social-logos {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 60px 15px 15px 0;

}

.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: #000000;

}

/* Content */
.hero-content {
  text-align: center;
  /* padding-top: 50px */

}

.hero-content img {
  width: 90%;
  margin: auto;
  max-width: 985px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 30px;
  margin-bottom: 30px;
  font-family: 'AvenirNextCyr-Bold', Arial, sans-serif;
  margin-top: -34px;
  font-weight: 600;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 27px;
}

.btn {
  padding: 7px 38px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.btn.outline {
  border: 1px solid #847F8B;
  color: #fff;
}

.btn.solid {
  background: #4da3ff;
  color: #000;
}

.hero-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-bottom: 30px;
}

.hero-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-family: 'AvenirNextCyr-Bold', Arial, sans-serif;
  font-weight: 600;
}

.more-episonds-btn
{
display: flex;
justify-content: center;
}

.more-episonds {
  color: #545454;
  text-decoration: none;
  font-size: 20px;
  font-family: 'AvenirNextCyr-Bold', Arial, sans-serif;
  font-weight: 600;
  position: relative;
  /* bottom: -35px; */
  background-color:#ffffff;
  border-radius: 20px;
  padding: 10px 20px;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 40px;
}

.more-episonds:hover {
  color: #ffffff;
  background: #000;
}

.hero-nav a.active {
  color: #00e0d0;
  opacity: 1;
  border-bottom: 2px solid #00e0d0;
  padding-bottom: 5px;
}

.inner-container {

  margin: 0 auto;
}

/* Episode Section one */

.episode-section {
  padding-bottom: 60px;
  padding-left: 30px;
  padding-right: 30px;
}

.episode-wrapper {
  /* max-width: 1312px; */
  margin: auto;
  display: flex;

}

.episode-image {
  width: 50%;
}

/* Image */
.episode-image img {
  width: 100%;
  height: auto;
  display: block;
  /* padding-left: 10px; */
}

/* CTA */
.episode-cta {
  text-align: center;
  background: #fff;
  padding: 10px;
  width: 60%;
}

.episode-cta h4 {
  font-size: 25px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #545454;
  font-family: 'AvenirNextCyr-Bold', Arial, sans-serif;
  font-weight: 600;
}

.episode-cta p {
  font-size: 12px;
  margin-bottom: 20px;
}

.episode-image-left {
  display: flex;
  width: 50%;
  background-color: #ffffff;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.35);
   
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-buttons .btn {
  display: block;
  background: #2600A5;
  color: #fff;
  text-decoration: none;
  padding: 14px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 15px;
  width: 80%;
}

.cta-buttons img {
  padding: 15px 0px;

}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.platform-icons img {
  width: 34px;
}

/* Content */

.episodePoster{
  text-align: center;
}

.episodePoster img{
  width: 100%;
  max-width: 480px;
}
.episode-content {
  background: #c341a8;
  color: #fff;
  padding: 10px;
  position: relative;
  width: 50%;
}

.episode-tag {
  top: 20px;
  right: 20px;
  font-size: 16px;
  font-family: 'AvenirNextCyr-Bold', Arial, sans-serif;
  text-align: right;
  display: block;
  text-decoration: underline;
  margin-bottom: 5px;

}

.episode-content h2 {
  font-size: 40px;
  margin-bottom: 5px;
  font-weight: 800;
  font-family: 'AvenirNextCyr-Heavy', Arial, sans-serif;
  text-transform: uppercase;
}

.episodeTitle{
  font-size: clamp(2rem, 5vw, 3.875rem);
  margin-bottom: 15px;
  line-height: 62px;
  font-family: 'AvenirNextCyr-Heavy', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;

}

.episode-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 2px;
}

.episodeLinksTitle{
  font-weight: 700;
}

.episode-icon {
  display: flex;
  /* gap: 35px; */
 
}

.episode-icon-position
{
  position: absolute;
  bottom: 0px;
}
.episode-icon div
{
  padding: 10px;
}

.episode-icon img {
  /* width: 100%;
    max-width: 100px; */
  cursor: pointer;
  border-radius: 10px;
}

.episode-icon div:has(img.active-platform) {
  background: #000000;
  border-radius: 10px 10px 0 0;
   
}


.episode-conten-two {
  background: #2D07B4;

}

.episode-conten-three {
  background: #6b2394;

}

/****************************************************** Filmmakers Section ***********************************************/
.filmmakers {
  /* max-width: 1312px; */
  margin: 0 auto;
  padding: 0 30px;
}

.filmmakers h2 {
  font-size: 30px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #545454;
  font-family: 'AvenirNextCyr-Bold', Arial, sans-serif;
}

.filmmaker {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  /* align-items: center; */
}

.filmmaker img {
  width: 230px;
  object-fit: cover;
}

.filmmaker .content {
  width: 80%;
  color: #545454;
  font-size: 20px;
}

.filmmaker .content p {
  line-height: 1.6;
  margin-bottom: 6px;
  overflow: hidden;
  transition: max-height 0.3s ease;

}

 
.read-more {
  background: none;
  border: none;
  padding: 0;

  font: inherit;
  color: #545454;
  font-weight: 600;
  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.read-more,
.read-more:hover,
.read-more:active,
.read-more:focus,
.read-more:visited {
  text-decoration: none ! important;
}

.read-more:focus,
.read-more:active,
.read-more:focus-visible {
  outline: none;
}




/****************************************************** Get Now Section ***********************************************/
.get-now {
  /* max-width: 1312px; */
  margin: 0 auto 50px;
  padding-left: 30px;
  padding-right: 30px;
}

.get-now h2 {
  margin-bottom: 30px;
  color: #ffffff;
  font-family: 'AvenirNextCyr-Bold', Arial, sans-serif;
  font-size: 30px;
}

/* SLIDER */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-viewport {
  overflow: hidden;
  width: 95%;
  margin: 0 auto;
}

.movie-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* CARD */
.movie-card {
  flex: 0 0 25%;
  /* Desktop: 4 cards */
  text-align: center;
}

.movie-card img {
  width: 94%;
  max-width: 300px;
  margin: auto;
  display: block;
}

.movie-btn {
  display: inline-block;
  margin-top: 12px;
  background: #ffffff;
  color: #000000;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
}

/* ARROWS */
.arrow {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 26px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center; 
  padding-bottom: 3px;
}

.arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.arrow.left {
  left: -20px;
}

.arrow.right {
  right: -20px;
}


/****************************************************** About Directors Take Section ***********************************************/
.about-directors-take {
  /* background: #fff; */
  padding-left: 15px;
  padding-right: 15px;
}

.about-wrapper {
  /* max-width: 1312px; */
  margin: auto;
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 50px;
  font-family: 'AvenirNextCyr-Bold', Arial, sans-serif;
  font-weight: 600;

}

.about-content {
  width: 50%;
}

.about-content-span {
  font-size: 53px;
  color: #ffffff;
}

/* LEFT */
.about-directors-section-label {
  font-size: 30px;
  letter-spacing: 1px;
  color: #ffffff;
  display: block;

}

.main-text {
  font-size: 20px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: 'AvenirNextCyr-Bold', Arial, sans-serif;
}

.meta {
  font-size: 25px;
  color: #ffffff;
}

/* RIGHT */
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  width: 50%;
}

.about-image img {
  width: 100%;
  max-width: 490px;
}

/****************************************************** Footer Section ***********************************************/

.site-footer {
  background: #000;
  padding: 20px 15px;
  color: #999;
  font-family: 'AvenirNextCyr-Medium', Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-links {
  margin-bottom: 6px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  margin: 0 4px;
  
}

.footer-links span {
  color: #666;
  margin: 0 2px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 11px;
  color: #777;
}
.site-footer {
  -webkit-text-size-adjust: 100%;
}

.personal_info img {
  width: 32px;
  margin-left: 0.3rem;
  margin-bottom: -3px;
}



/************************************************************************* MEDIA PLAYER **************************************************8*/
#playerContainer {
  display: none;
  margin-top: 40px;
  text-align: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99999;
}

.player-box {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.player-title {
  padding-top: 37px;

}

.player-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* Responsive 16:9 Player */
.player-frame-wrapper {
  width: 100%;
  position: relative;

}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 8px;
  right: 0px;
  /* background: #fff;
  color: #000; */
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 36px;
  text-align: center;
  /* border: 2px solid #444; */
  font-weight: bold;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-btn:hover {
  /* background: #0A0048;
  color: #fff;
  border-color: #0A0048; */
}


.fullscreen-btn {
  position: absolute;
  top: 8px;
  right: 40px;
  /* background: #fff;
  color: #000; */
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 36px;
  text-align: center;
  /* border: 2px solid #444; */
  font-weight: bold;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullscreen-btn:hover {
  /* background: #0A0048;
  color: #fff;
  border-color: #0A0048; */
}


.fullscreen-btn {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.fs-icon {
  /* width: 18px;
  height: 18px; */
  display: none;
}

.fullscreen-btn .fs-open {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
}

.fullscreen-btn.active .fs-open {
  display: none;
}

.fullscreen-btn.active .fs-close {
  display: block;
  
  position: absolute;
  top: 0px;
  right: 0px;
}



#playerContainer.fullscreen .player-box {
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
  z-index: 99999;
}

#playerContainer.fullscreen iframe {
  width: 96%;
  height: 90vh;
  margin-left: 2%;
  z-index: 9;
}

#playerContainer.fullscreen .close-btn {
  display: none;
}

.spotifywidgetClass {
  width: 400px;
  height: 200px;
}

.spotifywidgetClass iframe {
  width: 400px;
  height: 200px;
}

.spotifywidgetClass .player-frame-wrapper {
  padding-top: 152px;
}

.spotify-ctamessage {
  height: 275px;
}

.applewidgetClass {
  width: 400px;
  height: 220px;
}

.applewidgetClass iframe {
  width: 400px;
  height: 220px;
}

.applewidgetClass .player-frame-wrapper {
  padding-top: 180px;
}

.youTubewidgetClass {
  width: 450px;
  height: 400px;
}

.youTubewidgetClass iframe {
  width: 450px;
  height: 350px;
}

.youTubewidgetClass .player-frame-wrapper {
  padding-top: 350px;
}


.tuneinwidgetClass {
  width: 400px;
  height: 150px;
}

.tuneinwidgetClass iframe {
  width: 400px;
  height: 100px;
}

.tuneinwidgetClass .player-frame-wrapper {
  padding-top: 150px;
}

.tuneinwidgetClass iframe body{
  width: 400px;
  height: 100px;
}

/* Loader start */

.player-frame-wrapper {
  position: relative;
  /* width: 100%;
  height: 100%; */
}

.player-frame-wrapper iframe {
  /* width: 100%;
  height: 100%;
  border: 0; */
  display: none;
  /* hidden until loaded */
}

.player-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  z-index: 2;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* Loader End */




/************************************************************************************ Popup slider******************************************************* */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  width: 700px;
  background: #222;
  padding: 30px;
  color: #fff;
  position: relative;
  font-family: 'AvenirNextCyr-Bold', Arial, sans-serif;
  border: 1px solid #ffffff;
    border-radius: 10px;
}

.popup-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
  opacity: .8;
}

.popup-title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}

.popupMovieName{
  text-transform: uppercase;
}

.popup-tabs {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 20px 0;
}

.popup-tabs button {
  background: none;
  border: none;
  color: #00aaff;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
  padding: 14px 32px;
}
.popup-tabs button.active {
  background: #fff;
  color: #000;
  border-radius: 6px;
}
.popup-tabs:has(button:only-child) {
  justify-content: stretch;
}

.popup-tabs:has(button:only-child) button {
  width: 100%;
  text-align: center;
}

/* Platforms */
.popup-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 560px;   
  margin: 0 auto;       
}

/* � FIX: Center last button when total count is ODD (3/5/7/...) */
.popup-platforms > a:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 260px;
  width: 100%;
}

.popup-platforms a {
  background: #0096dc;
  color: #fff;
  text-decoration: none;
  padding: 16px;
  text-align: center;
  font-weight: 700;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-info {
  margin-top: 20px;
  text-align: center;
}

/* ********************************************************************iOS fullscreen fallback***************************************** */
.player-box.ios-fullscreen {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100% !important;
  max-height: 100% !important;
  border-radius: 0 !important;
  z-index: 99999;
  background: #000;
}

.player-box.ios-fullscreen .player-frame-wrapper {
  padding-top: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.player-box.ios-fullscreen iframe {
  position: absolute;
  inset: 0;
  width: 96% !important;
  height: 70% !important;
  z-index: 99999;
}

.player-box.ios-fullscreen .close-btn {
  display: none !important;
}


.spotify-cta {
  text-align: center;
  padding: 12px;
  background: #121212;
  color: #fff;
  /* border-top: 1px solid #ffffff; */
  border-radius: 10px;
}

.spotify-cta p {
  margin: 0 0 8px;
  font-size: 14px;
  opacity: 0.85;
}

.spotify-cta button {
  background: #00e0d0;
  color: #000000;
  border: none;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
}

.spotify-cta button:hover {
  opacity: 0.9;
}



  /* =========================================================================================RESPONSIVE ================================================================================ */

@media (max-width: 1280px) {

  .hero-content p {
    font-size: 23px;
  }

  .episode-cta h4 {
    font-size: 20px;
  }
  .episode-icon
  {
    /* gap: 15px; */
  }

  .cta-buttons .btn {

    padding: 10px;
    width: 90%;
  }

  .arrow {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .about-content-span
  {
    font-size: 45px;
  }

  .episodePoster img {
    width: 65%;
    max-width: 480px;
}

.episode-content p{
  font-size: 14px;
}

}


/* Tablet */
@media (max-width: 1023px) {

  .hero-content p {
    margin-top: -7px;
    font-size: 17px;
  }

  .episodeTitle{
    line-height: 52px;
  }

  .episode-content h2 {
    font-size: 32px;
  }

  .episode-content {
    padding: 30px;
  }

  .episode-cta h4 {
    font-size: 20px;
  }

  .episode-icon img {
    height: 63px;
  }

  .episode-image {
    width: 100%;
  }

  .episode-cta {
    width: 100%;
  }

  .cta-buttons .btn {
    padding: 15px;
    width: 80%;
  }

  .episode-wrapper {
    flex-direction: column;
  }
  
  .episode-content {
    width: 100%;
    order: 1;
    padding: 10px 20px 2px;
  }

  .episode-image-left {
    width: 100%;
    order: 2;
  }

  .episode-image img {
    width: 100%;
    height: auto;
  }
  episode-content
  .episode-cta {
    width: 100%;
    padding: 5px;
    text-align: center;
  }
  .episode-icon-position{
    position: relative;
  }


  /* filmmaker section */
  .filmmaker .content {
    width: 100%;
    font-size: 18px;
  }

  .filmmakers h2 {
    font-size: 26px;
  }

  .filmmaker img {
    width: 130px;
  }

  .filmmaker {
    align-items: flex-start;
  }

  .filmmakers {
    margin: 0px;
  }


  /* get-now-section */
  .movie-card {
    flex: 0 0 33.333%;
  }

  .site-footer 
  {
    font-size: 10px;
  }

  .episodePoster img {
    width: 100%;
    max-width: 480px;
}

}


@media (max-width: 1024px) and (orientation: landscape) {

  .popup-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: 20px 0;
  }

  .popup-box {
    margin: 0 auto;
    max-height: none;
  }

.episode-tag
{
  font-size: 11px;
}

  .episodeTitle
  {
    font-size: 2rem;
  }
  .episode-content h2 {
    font-size: 22px;
}

.episode-content p
{
  font-size: 14px;
}

.episode-cta h4
{
font-size: 15px;
}
.cta-buttons .btn
{
  font-size: 12px;
}
.filmmakers h2
{
  font-size: 18px;
}
.filmmaker .content
{
  font-size: 15px;
}
.get-now h2
{
  font-size: 16px;
}
.about-directors-section-label
{
  font-size: 18px;
}
.about-content-span
{
  font-size: 31px;
}
.meta
{
  font-size: 16px;
}

}
.popup-box {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}



@media (max-width: 992px) {

  .episode-icon div {
    padding: 5px;
    padding-bottom: 10px;
}
  .episode-icon img {
    height: 45px;
  }

  /* about-directors-take section */
  .about-wrapper {
    flex-direction: column;
    gap: 0px;
    text-align: left;
  }

  .about-content {
    width: 100%;
  }

  .about-image {
    width: 100%;
  }

  .main-text {
    font-size: 18px;
  }

  .episodeLinksTitle{
    margin-top: 20px;
  }
  .episodePoster img {
    width: 100%;
    max-width: 480px;
}

}

@media (max-width: 768px) {

  .episode-tag {
    position: static;
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .episode-content h2 {
    font-size: 22px;
  }

  .episodeTitle{
    line-height: 40px;
  }

  .episode-content p {
    font-size: 14px;
  }

  .cta-buttons .btn {
    font-size: 12px;
    padding: 10px 2px;
  }

  .episode-icon {
    gap: 0px;
    
  }

  /* filmmaker section */
  .filmmaker img {
    width: 120px;
  }

  .filmmaker .content {
    width: 100%;
    font-size: 15px;
  }

  .filmmakers h2 {
    font-size: 18px;
    margin-bottom: 25px;
  }

  /* get-now-section */
  .movie-card {
    flex: 0 0 50%;
    /* 2 cards */
  }
  .episodePoster img {
    width: 100%;
    max-width: 480px;
}



}


@media (min-height: 320px) and (max-height: 480px) and (orientation: landscape) {
  .youTubewidgetClass {
    width: 100%;
    height: 200px;
  }

  .youTubewidgetClass iframe {
    width: 100%;
    height: 150px;
  }

  .youTubewidgetClass .player-frame-wrapper {
    padding-top: 200px;
  }

}


@media (max-width: 767px) {

  /* hamburger show on mobile */
  .social-logos {
    position: fixed;
    right: 0px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 9;
    background-color: rgba(18, 0, 61, 0.5);
    background-color: rgb(18, 0, 61 / 50%);
    padding: 60px 7px 8px 7px;
  }

  .social-logos img {
    width: 20px;
  }

  .top-bar {
    font-size: 16px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .fixed-top {
    height: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding-top: 70px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #12003d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease;
    z-index: 2;
  }

  .hero-nav.active {
    right: 0;
  }

  .hero-nav a {
    font-size: 22px;
  }

  .hamburger,
.hamburger * {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.hamburger {
  user-select: none;
  -webkit-user-select: none;
}

.more-episonds {
  font-size: 12px;
  padding: 10px 13px;
  bottom: -25px;
}

}


@media only screen and (max-width: 896px) and (orientation: landscape) {

  #playerContainer {
    right: 0px;
  }

}

/* Small Mobile */
@media (max-width: 480px) {

  /* episode section */
  .episode-wrapper {
    flex-direction: column;
  }

  .episode-image-left {
    flex-direction: row;
  }

  .episodeTitle{

    line-height: 34px;
  }

  

  .episode-cta h4 {
    font-size: 15px;
  }

  .episode-icon img {
    height: 35px;
  }

  .episode-section {
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .filmmakers {
    padding-left: 15px;
    padding-right: 15px;

  }

  .get-now {
    padding-left: 15px;
    padding-right: 15px;

  }

  /* filmmaker section */
  .filmmaker img {
    width: 100px;
  }

   




  /* get-now-section */

  .get-now h2 {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .movie-grid {
    flex-direction: column;
    gap: 35px;
    align-items: center;
  }

  .get-now {

    margin: 24px auto;

  }

  .movie-btn {
    font-size: 12px;
    padding: 10px 13px;
  }

  .movie-card {
    flex: 0 0 100%;
    /* 1 cards */
  }


  /* about-directors-take */

  .about-directors-section-label {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .about-content-span {
    font-size: 31px;
    margin-bottom: 1px;
  }

  .main-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
  }

  .meta {
    font-size: 16px;
  }

  .about-image img {
    max-width: 260px;
  }


  /* media pop up */
  #playerContainer {
    right: 0px;
  }

  .spotifywidgetClass {
    width: 100%;
    height: 200px;
  }

  .spotifywidgetClass iframe {
    width: 100%;
    height: 200px;
  }
  .spotify-ctamessage {
    height: 275px;
  }

  .applewidgetClass {
    width: 100%;
    height: 220px;
  }

  .applewidgetClass iframe {
    width: 100%;
    height: 220px;
  }

  .youTubewidgetClass {
    width: 100%;
    height: 300px;
  }

  .youTubewidgetClass iframe {
    width: 100%;
    height: 250px;
  }

  .youTubewidgetClass .player-frame-wrapper {
    padding-top: 300px;
  }

   .tuneinwidgetClass {
    width: 100%;
    height: 150px;
  }

  .tuneinwidgetClass iframe {
    width: 100%;
    height: 100px;
  }


  


   /* slider pop up */
   .popup-box {
    width: 92%;
    padding: 20px 16px;
    margin-top: 20px;
  }
  .popup-overlay {
    overflow-y: auto;
    padding: 24px 16px;  
    align-items: center;
  }

  .popup-title {
    font-size: 22px;
  }

  .popup-tabs {
    flex-direction: column;
    gap: 0px;
    margin: 15px 0 24px;
  }

  .popup-tabs button {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    border-radius: 6px;
  }

  .popup-tabs button.active {
    width: 100%;
  }

  .popup-platforms {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 160px));
    justify-content: center; 
    gap: 14px;
    max-width: 100%;
  }

  .popup-platforms a {
    width: 100%;
    padding: 12px;
    font-size: 12px;
  }

  .popup-platforms:has(a:only-child) {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .popup-platforms:has(a:only-child) a {
    width: 100%;
    max-width: 100%;
  }

}

@media (max-width: 375px) {
  .episode-icon img {
    height: 30px;
    border-radius: 5px;
}
.episode-icon div {
  padding: 3px;
}
}

@media screen and (min-width: 320px) {
  .inner-container {
    width: 84%;
  }
}

@media screen and (min-width: 480px) {
  .inner-container {
    width: 90%;
  }
}

@media screen and (min-width: 768px) {
  .inner-container {
    width: 90%;
  }
}

@media screen and (min-width: 992px) {
  .inner-container {
    width: 900px;
  }

  .episodeTitle{
    font-size: 32px;
    line-height: 32px;
  }

  .episode-content h2 {
    font-size: 28px;

  }

  .episode-icon div {
    padding: 5px;
    padding-bottom: 10px;
}

  .episode-icon img {
    height: 42px;
  }

  .episode-image {
    width: 80%;
  }

 
}

@media screen and (min-width: 1200px) {
  .inner-container {
    width: 1200px;
  }

  .episodeTitle{
    font-size: clamp(2rem, 5vw, 3.875rem);
    line-height: 62px;
  }

  .episode-content h2 {
    font-size: 40px;
  }

  .episode-icon img {
    height: 63px;
  }

  .episode-image {
    width: 75%;
  }
}


/* Ensure fullscreen player sits above top bar on iOS */
.player-box.ios-fullscreen {
  z-index: 2147483647 !important; /* higher than anything */
  padding-top: env(safe-area-inset-top);
}


