.banner-section {
    margin-bottom: 0 !important;
    overflow-x: hidden;
}
.home__swiper__container {
    width: 100%;
    min-height: 100vh;
    margin-bottom: 0;
    position: relative;
}
.home__swiper__container .mySwiper {
    height: 100%;
}
.home__swiper__container .mySwiper .swiper-slide {
    height: 100%;
}
.home__swiper__container .content__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Video Overlay for better text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 5;
    pointer-events: none;
}
.home__swiper__container .mySwiper .swiper-slide video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.home__swiper__container .mySwiper .swiper-slide .text__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Hero Content Container */
.hero-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero Badge */
.hero-badge {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.badge-text {
    display: inline-block;
    background: rgba(151, 71, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(151, 71, 255, 0.3);
    color: #9747FF;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line-1 {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 30%, #ffffff 70%, #9747FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    /* text-shadow:
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.9); */
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8)); */
}

.title-line-1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9747FF, #0B92D6);
    border-radius: 2px;
    animation: expand-line 1s ease-out 1s both;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-align: center !important;
    text-shadow:
        0 0 8px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.9);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
}

/* Hero Tagline */
.hero-tagline {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.tagline-text {
    display: inline-block;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(151, 71, 255, 0.3), rgba(255, 255, 255, 0.15));
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    text-shadow:
        0 0 6px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.9);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
}

.tagline-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #9747FF 0%, #0B92D6 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(151, 71, 255, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(151, 71, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #9747FF;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}

/* Floating Visual Elements */
.hero-visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.element-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(151, 71, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(151, 71, 255, 0.6);
    }
}

@keyframes expand-line {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    .home__swiper__container .mySwiper .swiper-slide .text__wrapper {
        padding: 0 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .stat-divider {
        width: 30px;
        height: 1px;
    }

    .floating-element {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .tagline-text {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center !important;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        display: none;
    }

    .hero-actions {
        gap: 1.5rem;
    }

    .floating-element {
        display: none;
    }

    /* Responsive podcast play buttons */
    .podcast-play-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .play-icon {
        font-size: 0.8rem;
    }

    .play-text {
        font-size: 0.8rem;
    }
}
.home__swiper__container .mySwiper .swiper-slide .text__wrapper h1 {
    opacity: 0.8;
}
.home__swiper__container .mySwiper .swiper-slide .text__wrapper p {
    color: white;
}
/* Podcast Play Button Styles */
.podcast-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #9747FF 0%, #0B92D6 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(151, 71, 255, 0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.podcast-play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.podcast-play-btn:hover::before {
    left: 100%;
}

.podcast-play-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(151, 71, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.play-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.play-text {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.podcast-play-btn:hover .play-icon {
    transform: translateX(3px);
}

/* Episode Overlay Styles for YouTube Cards */
.episode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(86, 51, 150, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.episode-card:hover .episode-overlay {
    opacity: 1;
}

.episode-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Podcast Overlay Styles for RSS Feed Cards */
.podcast-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.podcast-card:hover .podcast-overlay {
    opacity: 1;
}

.podcast-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure podcast thumbnail is positioned relative for overlay */
.podcast-thumbnail {
    position: relative;
    overflow: hidden;
}

/* Legacy button styles removed - now using .cta-button class */
.home__swiper__container .company-section {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 0;
    width: 100%;
}
.home__swiper__container .company-section .company-container {
    background-color: rgba(25, 37, 84, 0.3) !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.home__swiper__container .company-section .company-container .logos {
    padding: 0 !important;
}
img.heart-icon {
    position: absolute;
    top: 8px;
}
.swiper__slide__wrapper {
    position: relative;
    overflow: hidden;
}
.podcast-slider-round {
    border-radius: 50% !important;
    overflow: hidden;
    aspect-ratio: 1/1;
    border: 6px green solid;
    position: relative;
    animation: border-pulse 1.5s infinite;
    width: 100% !important;
    cursor: pointer;
}
.podcast-slider-round .podcast-content {
    bottom: 20px !important;
}
.podcast-slider::before {
    background-color: transparent !important;
}
.podcast-slider img {
    object-fit: contain;
}
.podcast-slider-round .live-stream {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}
.podcast-slider-round .dot {
    position: relative;
    width: 12px;
    height: 12px;
    background-color: #c54731;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.podcast-slider-round .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #9747ff7e;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ping 1.5s infinite;
}
.podcast__name__heading {
    color: white;
    padding-top: 20px;
    background-color: rgba(0, 0, 0, 0.267);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 22px;
    padding: 0 20px;
    transform: translateY(500%) scale(.4);
    transition: all 1s;
    width: 100%;
}
.podcast-slider-round:hover .podcast__name__heading {
    transform: translateY(0%) scale(1);
}
.podcast-creator{
    color: #ffffff;
}
.podcast-creator i{
    color: #1db954;
}
@keyframes border-pulse {
    0% {
        border-color: rgba(0, 128, 0, 1);
        box-shadow: 0 0 10px rgba(0, 128, 0, 0.5);
    }
    50% {
        border-color: rgba(0, 128, 0, 0.5);
        box-shadow: 0 0 20px rgba(0, 128, 0, 0.3);
    }
    100% {
        border-color: rgba(0, 128, 0, 1);
        box-shadow: 0 0 10px rgba(0, 128, 0, 0.5);
    }
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
@keyframes ping {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}
/* FAQS */
.faq__content__wrapper {
    width: 100%;
    position: relative;
    min-height: 500px;
}
.faq__content__wrapper video {
    width: 60%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: contain;
}
.faq__content__wrapper .faq-list {
    text-align: left;
    position: absolute;
    width: 50%;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: #011044;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 50px;
    border-radius: 20px;
}
@media (max-width: 1000px) {
    .faq__content__wrapper .faq-list {
        padding: 40px;
    }
}
@media (max-width: 800px) {
    .faq__content__wrapper {
        min-height: auto;
    }
    .faq__content__wrapper .faq-list {
        padding: 40px;
        width: 100%;
        left: 0;
        position: relative;
        top: 0;
        transform: translateY(0%);
    }
    .faq__content__wrapper video {
        display: none;
    }
}
.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: white;
}
.faq-question {
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question h4 {
    font-size: 16px;
    color: white;
    margin: 0;
}
.faq-toggle {
    font-size: 18px;
    color: #e6e6e6 !important;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 15px;
    font-size: 16px;
}
.faq-answer p {
    color: #e6e6e6 !important;
}
.faq-item.active .faq-answer {
    max-height: 100%;
    padding: 15px;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
.faq-item.active {
    background-color: #2B2A66;
}
/* Podcast Analytics css */
.podcast__analytics {
    background-size: cover;
    background: linear-gradient(rgba(40, 17, 43, 0.7), rgba(40, 17, 43, 0.7)) url('assets/images/bg-2.webp') no-repeat fixed center;
}
.podcast__analytics__container {
    width: 100%;
    max-width: 1800px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.text__content {
    flex: 1;
    text-align: left;
    padding-left: 30px;
}
.images__wrapper__heading {
    color: transparent !important;
    position: absolute !important;
    font-size: clamp(2rem, 8vw, 85px);
    font-weight: 800;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #9747FF;
    transition: all 0.5s;
}
.images__wrapper__heading:hover {
    color: #9747FF !important;
    cursor: pointer;
    -webkit-text-stroke-color: #9747FF;
    transform: rotate(10deg);
}
.images__wrapper__heading__1 {
    left: 0 !important;
    top: 0 !important;
    animation: heading__scroll_top 6s -2s linear infinite;
}
.images__wrapper__heading__2 {
    left: 0 !important;
    bottom: 0 !important;
    animation: heading__scroll_top 6s linear infinite;
}
.images__wrapper__heading__3 {
    top: 50% !important;
    transform: translate(-50%, -50%);
    left: 50% !important;
    animation: heading__scroll_top 6s -4s linear infinite;
}
.images__wrapper__heading__3:hover {
    top: 50% !important;
    transform: translate(-50%, -50%) rotate(10deg);
    left: 50% !important;
}
.images__wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    white-space: nowrap;
}
.text__content h3 {
    color: white !important;
    font-size: 45px;
}
.images__wrapper .left img {
    width: 300px;
    height: 430px;
    object-fit: cover;
}
.images__wrapper .right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 300px;
}
.images__wrapper .right img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
@keyframes heading__scroll_top {
    0%,
    to {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}
.episodes__wrapper {
    display: flex;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 90px;
    justify-content: center;
}
.episode__card {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 230px !important;
    padding: 20px;
    width: 100%;
    max-width: 270px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.episode__card:hover {
    outline: 3px solid #9747ff;
}
.episode__card h4 {
    color: white;
}
.episode__card p {
    color: white;
}
@media (max-width: 768px) {
    .podcast__analytics__container {
        padding: 0 20px 40px; 
    }
}
@media (max-width: 1200px) {
    .podcast__analytics__container {
        flex-direction: column;
    }
}
@media (max-width: 600px) {
    .images__wrapper {
        flex-direction: column;
    }
}
.lead__btns {
    border: none;
    border-radius: 100px;
    padding: 10px 40px;
    background: linear-gradient(to right, #0B92D6, #9747FF);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    min-width: 300px;
}
p {
    color: white !important;
}
.episodes-section {
    background-color: #0d1b3e;
    padding: 2rem 0;
}
.episode-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.episode-header h2 {
    color: white;
    font-size: 1.5rem;
}
.episode-header a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.episode-header a img {
    margin-left: 0.5rem;
}
.episodes__wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 1rem;
}
.episode__card {
    display: inline-block;
    width: 300px;
    height: 270px;
    border-radius: 19px;
    margin-right: 1rem;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, rgba(13, 19, 38, 0), rgba(34, 28, 62, 0.7));
}
.episode__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.episode__card h4 {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    font-size: 1.2rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.8);
    padding: 2px 5px;
    border-radius: 5px;
    transition: bottom 0.3s ease, background 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
}
.episode__card:hover {
    transform: scale(1.05) translateY(-5px);
    animation: bounce 0.2s ease;
}
.episode__card:hover img {
    transform: scale(1.1);
}
.episode__card:hover h4 {
    bottom: 10px;
    background: rgba(35, 61, 148, 0.8);
    text-align: center;
}
@keyframes bounce {
    0%,
    100% {
        transform: scale(1.05) translateY(-5px);
    }
    50% {
        transform: scale(1.05) translateY(0);
    }
}
.mt-3.ms-3 p {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .episode__card {
        width: 250px;
        height: 225px;
    }
}
.title-truncate {
    display: inline-block;
    max-width: 250px;
    /* Adjust this width as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}
.description-truncate {
    display: inline-block;
    max-width: 200px;
    /* Adjust this width as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}
/* Dim and disable the locked episodes */
.podcast-style6.locked {
    opacity: 0.5;
    /* Dim the locked episode */
    pointer-events: none;
    /* Disable interaction with locked episodes */
    position: relative;
    /* Make sure the lock icon is positioned relative to this container */
}
/* Lock Icon Styling - Center the icon in the middle of the card */
.locked-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Offset by 50% of the icon's width and height */
    font-size: 50px;
    /* Adjust size of the icon */
    color: white;
    /* Icon color */
    z-index: 2;
    /* Make sure the icon is above other content */
}
/* Optional: Apply styling for the card when it's locked */
.podcast-img.locked {
    filter: grayscale(100%) blur(2px);
    /* Make the image grayscale and blur it */
}
/* Optional: Dim the content of locked episodes as well */
.podcast-style6.locked .podcast-content {
    opacity: 0.5;
    /* Dim the content */
}
.button-set {
    justify-content: space-between;
    align-items: center;
}
.button-set h3 {
    margin-bottom: 0 !important;
}
button.btn.btn-danger.subscribe-btn {
    font-size: 12px;
    padding: 7px 10px;
    width: 111px;
    border-radius: 40px;
    font-weight: 700;
}
.glide__slide {
    padding: 0 10px;
    /* Add spacing between slides */
}
.podcast-style5 {
    margin-bottom: 20px;
    height: 100%;
    /* Ensure consistent height */
    display: flex;
    flex-direction: column;
}
.podcast-content {
    flex-grow: 1;
}
.podcast-img img {
    width: 100%;
    height: auto;
}
.glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.glide__arrow--left {
    left: 10px;
}
.glide__arrow--right {
    right: 10px;
}
.glide__arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}
.glide {
    position: relative;
}
.glide__track {
    overflow: hidden;
}
.img-fluid {
    width: 285px !important;
    height: 200px !important;
}
/* .glide__slide {
    height: 406px !important;
} */
 .podcast-description{
    margin-bottom: 0;
 }
.btn:hover,
.btn:focus {
    border-radius: 20px !important;
}
.podcasters-list-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239747FF' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}
.podcasters-list-section .container-fluid {
    position: relative;
    z-index: 1;
}
.podcasters-list-section {
    padding: 4rem 0;
    /* background: linear-gradient(to bottom, #0d1b3e, #1a2b4e); */
    background: linear-gradient(135deg,
    rgba(13, 27, 62, 0.95) 0%,
    rgba(34, 28, 62, 0.95) 25%,
    rgba(151, 71, 255, 0.15) 50%,
    rgba(11, 146, 214, 0.15) 75%,
    rgba(13, 27, 62, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
}
/* .podcasters-list-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #0d1b3e, #1a2b4e);
} */
.episode-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
}
.header-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.header-content .subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
}
.view-all-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9747FF;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(151, 71, 255, 0.1);
    transition: all 0.3s ease;
}
.view-all-btn:hover {
    background: rgba(151, 71, 255, 0.2);
    transform: translateY(-2px);
}
.episodes__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}
.podcaster-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.podcaster-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.card-link {
    text-decoration: none;
    color: inherit;
}
.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
}
.podcaster-info h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.stats {
    display: flex;
    gap: 1rem;
    /* color: #94a3b8; */
    color: #ffffff;
    font-size: 0.9rem;
}
.stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.card-content {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
}
.latest-episode {
    margin-bottom: 1rem;
}
.label {
    color: #9747FF;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.episode-title {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 0.3rem;
    font-weight: 500;
}
.follow-btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #9747FF, #0B92D6);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(151, 71, 255, 0.3);
}
@media (max-width: 768px) {
    .episodes__wrapper {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .episode-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    .header-content h2 {
        font-size: 2rem;
    }
}
div.podcaster-card a.card-link {
    width: 100%;
}
.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg,
    rgba(13, 27, 62, 0.95) 0%,
    rgba(34, 28, 62, 0.95) 25%,
    rgba(151, 71, 255, 0.15) 50%,
    rgba(11, 146, 214, 0.15) 75%,
    rgba(13, 27, 62, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
}
section.newsletter-section div.container-fluid.episodes-container {
    margin-top: 10rem !important;
}
/* .newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239747FF' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
} */
.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}
.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.text-content {
    flex: 1;
    max-width: 600px;
}
.text-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.text-content .subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #9747FF, #0B92D6);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(151, 71, 255, 0.3);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(151, 71, 255, 0.4);
}
.cta-button i {
    transition: transform 0.3s ease;
}
.cta-button:hover i {
    transform: translateX(5px);
}
.newsletter-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}
.main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.floating-elements img {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}
.wave1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}
.wave2 {
    bottom: 10%;
    right: -10%;
    animation-delay: -2s;
}
.heart-icon {
    top: 20%;
    right: -5%;
    animation-delay: -1s;
}
.volume-icon {
    bottom: 30%;
    left: -5%;
    animation-delay: -3s;
}
.thumbs-up {
    top: 50%;
    right: 10%;
    animation-delay: -4s;
}
.hands {
    bottom: 20%;
    left: 10%;
    animation-delay: -5s;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
@media (max-width: 1024px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .text-content {
        max-width: 100%;
    }
    .newsletter-image {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .newsletter-section {
        padding: 4rem 0;
    }
    .text-content h2 {
        font-size: 2.5rem;
    }
    .text-content .subtitle {
        font-size: 1.1rem;
    }
    .floating-elements img {
        display: none;
    }
}
.latest-episodes-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}
.episode-carousel-row {
    position: relative;
    padding: 20px 0;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}
.episode-carousel {
    display: flex;
    gap: 20px;
    animation: slideLeft 80s linear infinite;
    padding: 0 40px;
}
#carouselRight .episode-carousel {
    animation: slideRight 30s linear infinite;
}
div.episode-thumbnail img {
    width: 100% !important;
}
.episode-card {
    flex: 0 0 320px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0 15px;
}
.episode-card:hover {
    transform: translateY(-5px);
}
.episode-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.episode-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.episode-card:hover .episode-thumbnail img {
    transform: scale(1.1);
}
.episode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(86, 51, 150, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.episode-card:hover .episode-overlay {
    opacity: 1;
}
/* Legacy .play-btn styles replaced with .podcast-play-btn */
.episode-info {
    padding: 15px;
}
.episode-title {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.4;
}
.episode-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.episode-title a:hover {
    color: #6a47b5;
}
.podcast-name {
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}
.episode-meta {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}
.btn.btn-view-episodes:hover {
    background: linear-gradient(to right, #9747FF, #0B92D6);
}
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 20px));
    }
}
@keyframes slideRight {
    0% {
        transform: translateX(calc(-100% - 20px));
    }
    100% {
        transform: translateX(0);
    }
}
/* Pause animation on hover */
.episode-carousel:hover {
    animation-play-state: paused;
}
.podcast-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.podcast-card-modern {
    background: #5B4592;
}
h3.podcast-title {
    color: white;
    margin: 0;
}
h3.podcast-title a {
    color: white;
    font-size: 1.2rem;
}
.podcast-stats {
    padding: .2rem 0 !important;
}
.podcast-stats .stat-item span {
    color: white;
}
h2.section-title {
    background: linear-gradient(to right, #9747FF, #0B92D6);
}
/* Broadcast Episodes Section Styles */
.latest-episodes-section .episode-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.latest-episodes-section .episode-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.latest-episodes-section .episode-title a {
    color: white;
    text-decoration: none;
}
.latest-episodes-section .episode-title a:hover {
    color: #1db954;
}
.latest-episodes-section .podcast-name {
    color: rgba(255, 255, 255, 0.8);
}
.latest-episodes-section .episode-meta {
    color: rgba(255, 255, 255, 0.7);
}
.latest-episodes-section .episode-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    /* font-size: 0.8rem; */
    font-size: 0.7rem;
}
/* Broadcast Playlist Section Styles */
.latest-podcasts-playlists .podcast-card-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.latest-podcasts-playlists .podcast-card-modern:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}
.latest-podcasts-playlists .podcast-title a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}
.latest-podcasts-playlists .podcast-title a:hover {
    color: #1db954;
}
.latest-podcasts-playlists .podcast-stats .stat-item {
    color: rgba(255, 255, 255, 0.9);
}
.latest-podcasts-playlists .podcast-stats .stat-item i {
    color: #1db954;
}
.latest-podcasts-playlists .btn-subscribe {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    justify-content: center;
}
.latest-podcasts-playlists .btn-subscribe:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}
.latest-podcasts-playlists .glide__arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.latest-podcasts-playlists .glide__arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}
/* Broadcast Carousel Specific Styles */
.glide-broadcasts .glide__slides {
    display: flex;
    align-items: stretch;
}
.glide-broadcasts .glide__slide {
    height: auto;
    display: flex;
}
.glide-broadcasts .podcast-card-modern {
    width: 100%;
    height: 100%;
}
/* Ensure proper spacing when fewer items */
.glide-broadcasts .glide__track {
    overflow: visible;
}
/* Show all items when there are fewer than perView */
.glide-broadcasts.glide--no-arrows .glide__slides {
    justify-content: center;
}
/* Debug styles - ensure slides are visible */
.glide-broadcasts .glide__slide {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}
.glide-broadcasts .glide__slides {
    display: flex !important;
    flex-wrap: nowrap !important;
}
/* Force display when only 2 slides */
.glide-broadcasts[data-slides="2"] .glide__slides {
    justify-content: center !important;
    gap: 20px !important;
}
.glide-broadcasts[data-slides="2"] .glide__slide {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
}
.broadcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    justify-items: center;
    margin-bottom: 2rem;
}
.broadcast-item {
    width: 100%;
    max-width: 350px;
    display: flex;
}
@media (max-width: 400px) {
    .broadcast-item {
        max-width: 100%;
    }
}
h5.episode-title a {
    color: white;
    font-size: 1.2rem;
}
/* Broadcast Slider Specific Styles */
.glide-broadcasts {
    position: relative;
    width: 100%;
}
.glide-broadcasts .glide__track {
    overflow: visible;
}
.glide-broadcasts .glide__slides {
    display: flex !important;
    align-items: stretch;
    gap: 20px;
}
.glide-broadcasts .glide__slide {
    flex: 0 0 auto;
    width: 300px;
    max-width: 350px;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.glide-broadcasts .podcast-card-modern {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
/* Force display when only 2 slides */
.glide-broadcasts[data-slides="2"] .glide__slides {
    justify-content: center !important;
    gap: 20px !important;
}
.glide-broadcasts[data-slides="2"] .glide__slide {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
}
/* Debug styles - ensure slides are visible */
.glide-broadcasts .glide__slide {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}
.glide-broadcasts .glide__slides {
    display: flex !important;
    flex-wrap: nowrap !important;
}
.bg-glass {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.episode-card {
    border-radius: 1.5rem !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}
.episode-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 32px rgba(151, 71, 255, 0.18);
}
.episode-thumbnail {
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}
.episode-thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}
.episode-card:hover .episode-thumbnail img {
    transform: scale(1.08);
}
.episode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(86, 51, 150, 0.45);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}
.episode-card:hover .episode-overlay {
    opacity: 1;
}
/* Legacy .play-btn styles replaced with .podcast-play-btn */
.episode-info {
    background: rgba(255, 255, 255, 0.03);
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}
.title-truncate {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.description-truncate {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 768px) {
    .episode-card {
        min-height: 340px;
    }
    .episode-thumbnail {
        height: 160px;
    }
}
@media (max-width: 576px) {
    .episode-card {
        min-height: 260px;
    }
    .episode-thumbnail {
        height: 120px;
    }
}
/* YouTube Modal Styles */
.modal-content {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-header {
    background: #1a1a1a !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-body {
    background: #000 !important;
}
#player0, #player1, #player2, #player3, #player4, #player5 {
    min-height: 400px;
    background: #000;
}
.plyr {
    width: 100% !important;
    height: 100% !important;
}
.plyr__video-wrapper {
    width: 100% !important;
    height: 100% !important;
}
.plyr__video-embed {
    width: 100% !important;
    height: 100% !important;
}
.plyr__video-embed iframe {
    width: 100% !important;
    height: 100% !important;
}
/* Additional YouTube Player Styles */
.youtube-player-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    min-height: 400px !important;
    background: #000 !important;
}
/* Debug styles - force player visibility */
.plyr {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.plyr__video-wrapper {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.plyr__video-embed {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.plyr__video-embed iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: 2px solid red !important; /* Debug border */
}
.modal.show {
    display: block !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
}
.modal-dialog {
    max-width: 800px !important;
}
.ratio-16x9 {
    aspect-ratio: 16 / 9 !important;
}
.ratio-16x9 > div {
    width: 100% !important;
    height: 100% !important;
}
.modal-backdrop {
    z-index: 9999 !important;
}
.modal {
    z-index: 10000 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
}
.modal-dialog {
    z-index: 10001 !important;
    margin: 1.75rem auto !important;
    position: relative !important;
}
.modal.show {
    display: block !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
}
.modal.fade.show {
    opacity: 1 !important;
}
.modal-content {
    position: relative !important;
    z-index: 10002 !important;
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
/* Extra Small Devices (< 576px) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .podcast__analytics__container {
        padding: 0 15px 30px;
    }
    
    .text__content h3 {
        font-size: 1.8rem;
    }
    
    .episode__card {
        width: 200px;
        height: 200px;
    }
}

/* Tablets Landscape (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .podcast__analytics__container {
        padding: 0 40px 50px;
    }
    
    .text__content h3 {
        font-size: 2.5rem;
    }
}