@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*****************************************************************
	CSS Index
*****************************************************************/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body, html {
	height: 100%;
}
body {
    margin: 0;
	background: #000000;
	overflow: hidden;
	font-family: "Poppins", sans-serif;
    color: #ffffff;
}
a {
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a:hover {
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a:focus {
	text-decoration: none;
}
svg { 
	width: 22px; 
	height: 22px; 
	fill: currentColor; 
}
.eps-btn svg{
	width: 20px; 
	height: 20px;
	fill: transparent;
}
.player-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #000;
}
#video { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    cursor: pointer; 
}
.player-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 15%, transparent 60%, rgba(0, 0, 0, 0.7) 90%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    pointer-events: none;
}
/* .player-container:hover .player-overlay, .player-container.show-controls .player-overlay { 
	opacity: 1; 
	pointer-events: all; 
} */

.player-container.show-controls .player-overlay { 
	opacity: 1; 
	pointer-events: all; 
}

/* Top Section */
.top-info { 
	display: flex; 
	align-items: center; 
}
.episode-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* New Back Button Styles */
.back-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
}
.back-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}
.back-btn svg {
    width: 26px; /* Slightly larger than standard icons */
    height: 26px;
    fill: currentColor;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* Center Controls */
.center-controls-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 30px;
}
.control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
	background:transparent;
	border:0;
    gap: 7px;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border-radius: 20px;
    font-weight: 500;
}
.control-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}
.play-btn { 
	display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    gap: 0px;
	padding:0;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
	border-radius: 100px;
    transition: all 0.3s ease;
}
.play-btn svg{
	background: rgba(32, 32, 32, 0.3);
    backdrop-filter: blur(10px);
	padding: 0px;
	border-radius: 100px;
	width: 80px;
    height: 80px;
	color: #ffffff;
}
.play-btn:hover { 
	background: transparent;
    border: 0;
}
.play-btn:focus, .play-btn svg:focus{
	outline:0;
	border:0;
}
.play-btn:hover {
    color: #ffffff;
    background: transparent;
    backdrop-filter: blur(0px);
}
.seek-btn { 
	background:transparent;
	border:0;
	border-radius:50px;
	opacity: 1; 
}
.center-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(32, 32, 32, 0.3);
    border:0px;
	backdrop-filter: blur(30px);
    color:#ffffff;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    pointer-events:auto;
    user-select:none;
	transition: all 0.3s ease;
	transform: scale(0.8);
	backdrop-filter: blur(5px);
}
.center-btn svg{
	width:40px;
	height:40px;
}
.center-btn:hover{
    background:linear-gradient(90deg, #ff00cc, #3333ff);
    background:#1b6cae;
    transform: scale(1) !important;
}

/* Bottom Controls */
.bottom-controls {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
	background: rgba(32, 32, 32, 0.2);
    padding:10px 15px;
    border-radius: 10px;
    backdrop-filter: blur(15px);
}
.bottom-row {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.bottom-row.progress-row {
    gap: 10px;
}
.progress-container {
    flex-grow: 1;
    cursor: pointer;
    height: 20px;
    display: flex;
    align-items: center;
}
.progress-bar {
    height: 6px;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}
.progress-filled {
    height: 100%;
    background: #1B6CAE;
    width: 0%;
	border-radius: 20px;
    position: relative;
}
.controls-center-group {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex: 1;
}
.controls-right-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}
.volume-control {
    position: relative; /* Anchor for the absolute popup */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 20; /* Ensure it stays above other controls */
}

/* The vertical popup container */
.volume-popup {
    position: absolute;
    bottom: 40px; /* Position above the icon */
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 110px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Show popup on hover */
.volume-control:hover .volume-popup {
    display: flex;
}

/* The slider rotation */
.volume-control input[type="range"] {
    width: 90px;  /* This effectively becomes the height */
    height: 4px;   
	border-radius:10px;	
    /* Rotate -90deg to make it vertical */
    transform: rotate(-90deg);    
    accent-color: #1B6CAE;
    cursor: pointer;
    outline: none;
}
.time-display {
    font-size: 14px;
	font-weight: 500;
    white-space: nowrap;
    min-width: 80px;
	display: flex;
    gap: 3px;
    justify-content: end;
}

/* Dropdowns */
.dropdown { 
	position: relative; 
}
.dropdown-menu {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 10px 0;
    min-width: 150px;
    display: none;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}
.dropdown-menu.active { 
	display: block; 
}
.dropdown-item {
    padding: 8px 15px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.dropdown-item:hover { 
	background: rgba(255, 255, 255, 0.1); 
}
.dropdown-item.active { 
	color: #1B6CAE; 
}
input[type="range"] { 
	accent-color: #1B6CAE; 
	cursor: pointer; 
}
.skip-intro {
    position: absolute;
    bottom: 130px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 2px;
    display: none;
}
.skip-intro.show { 
	display: block; 
}
.nav-btn {
	font-family:"Poppins", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
	background:transparent;
	border:0;
    gap: 5px;
    font-size: 14px;
	font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border-radius: 20px;
}
.nav-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

/* ===== EPISODES POPUP ===== */
.episode-popup {
    position: absolute;
    inset: 0;
    background: rgba(0, 41, 75, 0.9);
	backdrop-filter: blur(10px);
    z-index: 4000;
    display: none;
    flex-direction: column;
	overflow: hidden;
}
.episode-popup.show { 
	display: flex; 
}
.episode-popup-header {
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}
.episode-popup-header button.nav-btn{
	padding:0;
}
.episode-popup-header button.nav-btn svg{
	width:28px;
	height:28px;
}
.episode-popup-header button.nav-btn:hover{
	background:transparent
}
.episode-popup-body {
    padding:0 10px;
	width: 100%;
    margin: 0 auto;
    display: inline-block;
    align-items: center;
    align-content: center;
    height: 100%;
}
.episode-popup-body .item-list-block{
	width:320px;
	align-content: center;
	margin: 0 auto;
}
.episode-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
}
.episode-card {
    min-width: 220px;
    cursor: pointer;
}
.episode-card img {
    width: 100%;
    border-radius: 4px;
}
.episode-card span {
    display: block;
    margin-top: 0;
    font-size: 14px;
}
.episode-card.active span {
    color: #1B6CAE;
}
.popup-item {
    padding: 10px;
	font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}
.popup-item:last-child {
    border-bottom: 0;
}
.popup-item.active {
    color: #1B6CAE;
	font-weight: 600;
}

/* --- AD SYSTEM STYLES --- */
.ad-layer {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 2000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ad-layer.active { 
	display: flex; 
}
#adVideo { 
	width: 100%; 
	height: 100%; 
	object-fit: contain; 
}
.ad-ui-overlay {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 100%;
    padding: 0 30px;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.ad-timer {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
	font-weight: 500;
    color: #ffffff;
    z-index: 2001;
}

/* --- Skip Ad, Skip Intro Button --- */
.skip-btn, .skip-intro {
	pointer-events: auto;
	width:max-content;
	text-align:center;
	padding: 10px 20px;
	background: rgba(0, 0, 0, 0.85);
	border-radius: 30px;
	color: #ffffff;
	display: none; 
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	gap: 7px;
	background: linear-gradient(120deg, rgba(254, 83, 187, 0.4) 0%, rgba(14, 131, 227, 0.4) 100%);
	box-shadow: 0 0 20px rgba(254, 83, 187, 0.6), 0 0 40px rgba(14, 131, 227, 0.4);
	backdrop-filter: blur(40px);
	z-index: 20;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.skip-btn::before, .skip-intro::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 2px; /* border thickness */
	border-radius: 30px;
	background: linear-gradient(to right, #FE53BB, #0E83E3);
	-webkit-mask: 
	linear-gradient(#fff 0 0) content-box, 
	linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	z-index: -1;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.skip-btn svg{
	width: 18px;
	height: 23px;
}
.skip-btn:hover, .skip-intro:hover{
	background: linear-gradient(120deg, rgba(14, 131, 227, 0.3) 0%, rgba(254, 83, 187, 0.3) 100%);
	box-shadow: 0 0 20px rgba(254, 83, 187, 0.3), 0 0 40px rgba(14, 131, 227, 0.2);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

/* Yellow Marker on Progress Bar */
.ad-marker {
    position: absolute;
    top: 0;
    width: 4px;          
    height: 100%;       
	border-radius: 10px;
    background-color: #ffd700; 
    z-index: 10;        
    pointer-events: none;
    transform: translateX(-50%); 
}

/* Hide Main Controls when Ad is playing */
.player-container.ad-playing .player-overlay {
    display: none !important;
}
.ad-control-btn {
	font-family:"Poppins", sans-serif;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 14px;
	font-weight:500;
    cursor: pointer;
    margin-right: 15px; 
    display: flex;
	gap: 5px;
    align-items: center;
    transition: background 0.2s;
}
.ad-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}
.ad-link-btn {
    position: absolute;
    top: 0px;
    left: 30px;
    background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 14px;
	font-weight:500;
    cursor: pointer;
    pointer-events: auto;
    display: none; 
    align-items: center;
}
.ad-link-btn:hover { 
	background: rgba(255, 255, 255, 0.3);
}
.ad-link-btn svg{
	width:18px; 
	height:18px; 
	margin-left:7px; 
	vertical-align: sub;
}
 .ad-banner-overlay {
    position: absolute;
    bottom: 140px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 1500;
    display: none; 
    /* background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px); 
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);*/
}  
.ad-banner-overlay img {
    max-width: 468px; 
	border-radius: 10px;
    height: auto;
    display: block;
    cursor: pointer;
} 
.close-banner {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #1B6CAE;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    text-align: center;
}
.close-banner svg{
	width: 18px;
    height: 18px;
    vertical-align: bottom;
}

/* Episode Carousel Container */
.episode-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #ff77c9 transparent;
}

/* Custom Scrollbar for Chrome/Safari */
.episode-carousel::-webkit-scrollbar {
    height: 6px;
}
.episode-carousel::-webkit-scrollbar-thumb {
    background: #ff77c9;
    border-radius: 10px;
}

/* Episode Card Styling */
.episode-card {
    min-width: 390px; /* Width of the thumbnail */
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
	display: flex
}
.episode-card:hover {
    transform: scale(1.05);
}
.episode-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
}
.episode-card .card-eps-item {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: 15px 20px;
	display: flex; 
	justify-content: space-between;
    align-self: center;
    align-items: center;
}
.episode-card .card-eps-item span {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}
.episode-card .card-eps-item span.eps-play-icon {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-self: center;
    align-items: center;
}
.episode-card .card-eps-item span.eps-play-icon img {
    display: inline-flex;
    width: 46px;
    aspect-ratio: 4 / 4;
	border: 0;
	margin-left:7px;
}

/* Active Episode Styling */
.episode-card.active img {
    border-color: #ff77c9;
}
.episode-card .ep-info {
    margin-top: 0px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
	font-weight:400;
	position: absolute;
    z-index: 99;
    bottom: 20px;
    left: 21px;
}
.episode-card .ep-title {
    font-weight: 500;
    color: #fff;
}
.episode-card.active .ep-title {
    color: #e50914;
}
.episode-card .now-playing {
    font-size: 12px;
    color: #e50914;
    text-transform: uppercase;
    font-weight: bold;
}

/* Hide Scrollbar but keep functionality */
.episode-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth; /* Smooth scrolling for arrows */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab; /* Shows the "hand" icon */
}
.episode-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.episode-carousel:active {
    cursor: grabbing; /* Shows the "closed hand" when dragging */
}

/* Wrapper for Carousel and Arrows */
.carousel-wrapper {
    position: relative;
    width: 100%;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 80px;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.carousel-nav:hover {
    color:#1B6CAE;
}
.carousel-wrapper > button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.carousel-wrapper .item {
	position: relative;
	z-index: 100; 
	-webkit-backface-visibility: hidden; 
}
.prev-arrow, .next-arrow{
	background: transparent;
	width: 30px;
	height: 50px;
	position: absolute;
	text-align: center;
	-webkit-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
}
.carousel-wrapper .prev-arrow::after {
	content: "";
	width: 0;
	height: 104%;
	position: absolute;
	left: -12px;
	bottom: 0;
	backdrop-filter: blur(1px);
	background: -webkit-linear-gradient(left, rgba(0, 41, 75, 0) 0%, rgba(0, 41, 75, 0.9) 80%);
	background: -o-linear-gradient(left, rgba(0, 41, 75, 0) 0%, rgba(0, 41, 75, 0.9) 80%);
	background: -moz-linear-gradient(left, rgba(0, 41, 75, 0) 0%, rgba(0, 41, 750, 0.9) 80%);
	background: linear-gradient(to left, rgba(0, 41, 75, 0) 0%, rgba(0, 41, 75, 0.9) 80%);
	background: linear-gradient(to left, rgba(0, 41, 75, 0) 0%, rgba(0, 41, 75, 0.9) 80%);
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all .4s linear 0s;
	transition: all .4s linear 0s;
	-webkit-transform-origin: left 0 0;
	transform-origin: left 0 0;
	z-index: -1;
}
.carousel-wrapper:hover .prev-arrow::after {
	width: 70px;
	left: -1rem;
}
.carousel-wrapper .next-arrow::before {
	content: "";
	width: 0;
	height: 104%;
	position: absolute;
	right: -12px;
	bottom: 0;
	backdrop-filter: blur(1px);
	background: -webkit-linear-gradient(right, rgba(0, 41, 75, 0) 0%, rgba(0, 41, 75, 0.9) 80%);
	background: -o-linear-gradient(right, rgba(0, 41, 75, 0) 0%, rgba(0, 41, 75, 0.9) 80%);
	background: -moz-linear-gradient(right, rgba(0, 41, 75, 0) 0%, rgba(0, 41, 75, 0.9) 80%);
	background: linear-gradient(to right, rgba(0, 41, 75, 0) 0%, rgba(0, 41, 75, 0.9) 80%);
	background: linear-gradient(to right, rgba(0, 41, 75, 0) 0%, rgba(0, 41, 75, 0.9) 80%);
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all .4s linear 0s;
	transition: all .4s linear 0s;
	-webkit-transform-origin: right 0 0;
	transform-origin: right 0 0;
	z-index: -1;
}
.carousel-wrapper:hover .next-arrow::before {
	width: 70px;
	right:-1rem;
}
.disabled{
	display: none;
}
.carousel-wrapper .prev-arrow {
	left: -5rem;
	height: 100%;
}
.carousel-wrapper .next-arrow {
	right: -3rem;
	height: 100%;
}
.carousel-wrapper:hover .next-arrow {
	right: 0.3rem;
	z-index: 3;
}
.carousel-wrapper:hover .prev-arrow {
	left: 0.3rem;
	z-index: 3;
}
.prev-arrow { left: -10px; border-radius: 0 4px 4px 0; }
.next-arrow { right: -10px; border-radius: 4px 0 0 4px; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
.episode-badge{
	font-size:14px;
}	
.ad-control-btn, .ad-link-btn, .ad-timer{
	font-size: 13px;
	padding: 7px 12px;
}
.skip-btn{
	font-size: 14px;
	padding: 7px 15px;
}
.ad-link-btn svg{
	vertical-align:middle;
}
.controls-center-group {
    gap: 5px;
}	
svg {
	width: 18px;
	height: 18px;
}
.eps-btn svg {
	width: 16px;
	height: 16px;
}
.controls-center-group .dropdown .control-btn, .controls-center-group .nav-btn{
	padding:6px 12px;
	gap: 5px;
}  
.episode-card {
    min-width: 300px; /* Width of the thumbnail */
}
}

@media only screen and (min-width: 575px) and (max-width: 767px) {
.episode-badge{
	font-size:14px;
}	
.ad-control-btn, .ad-link-btn, .ad-timer{
	font-size: 13px;
	padding: 7px 12px;
}
.skip-btn{
	font-size: 14px;
	padding: 7px 15px;
	letter-spacing: 0;
}
.ad-link-btn svg{
	vertical-align:middle;
}
.controls-center-group {
    gap: 0;
}	
svg {
	width: 18px;
	height: 18px;
}
.volume-control{
	width:34px;
	height:34px;
}
.eps-btn svg {
	width: 16px;
	height: 16px;
}
.time-display{
	font-size:13px;
}
.controls-center-group .dropdown .control-btn, .controls-center-group .nav-btn{
	padding:5px 10px;
	font-size: 13px;
	gap: 5px;
} 
.episode-card {
    min-width: 280px; /* Width of the thumbnail */
}
}

@media only screen and (max-width: 574px) {
.episode-badge{
	font-size:14px;
}	
.ad-control-btn, .ad-link-btn, .ad-timer{
	font-size: 13px;
	padding: 7px 12px;
}
.skip-btn{
	font-size: 14px;
	padding: 7px 15px;
	letter-spacing: 0;
}
.ad-link-btn svg{
	vertical-align:middle;
}
.controls-center-group {
    gap: 0;
}
svg {
	width: 18px;
	height: 18px;
}
.volume-control{
	width:34px;
	height:34px;
}
.eps-btn svg {
	width: 16px;
	height: 16px;
}
.time-display{
	font-size:13px;
}
.controls-center-group .dropdown .control-btn, .controls-center-group .nav-btn{
	padding:5px 10px;
	font-size: 13px;
	gap: 5px;
} 
.episode-card {
    min-width: 250px; /* Width of the thumbnail */
}	
}


/* Positions the banner container to the top right */
    .ad-banner-overlay {
        position: absolute;
        top: 20px;            /* Distance from top */
        right: 20px;          /* Distance from right */
        left: auto;           /* Resets any left alignment */
        bottom: auto;         /* Resets any bottom alignment */
        width: auto;
        height: auto;
        display: none;        /* Hidden by default until JS triggers it */
        z-index: 100;
        background: none;
    }

    /* Makes the image a perfect circle */
    #adBannerImg {
        width: 200px;         /* Adjust size as needed */
        height: 200px;        /* Must match width for a perfect circle */
        border-radius: 50%;   /* This creates the circle */
        object-fit: cover;    /* Prevents the image from stretching */
        /*border: 2px solid #fff; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);*/
    }