/* ============================================================
   ModernFirstPage — Ocean Night Theme
   Palette extracted from the reference image:
     RGB(24, 189, 226) = #18BDE2  cyan accent
     RGB( 2,  8, 63) = #02083F  deep navy
   ============================================================ */

:root {
    --mfp-bg-top:    #04183c;
    --mfp-bg-mid:    #07234c;
    --mfp-bg-bottom: #031232;
    --mfp-card:      rgba(5, 27, 65,.96);
    --mfp-accent-1:  #19b6dc;
    --mfp-accent-2:  #0b2a67;
    --mfp-accent-3:  #37d9ad;
    --mfp-text:      #ede8f5;
    --mfp-text-muted:#a899b8;
    --mfp-glass:     rgba(4, 24, 60,.72);
    --mfp-glass-border:rgba(255,255,255,.08);
    --mfp-glow-1:    rgba(25, 182, 220,.42);
    --mfp-glow-2:    rgba(26, 111, 144,.32);
}

.mfp-wrap {
    --mfp-bg-top:    #04183c;
    --mfp-bg-mid:    #07234c;
    --mfp-bg-bottom: #031232;
    --mfp-card:      rgba(5, 27, 65,.96);
    --mfp-accent-1:  #19b6dc;
    --mfp-accent-2:  #0b2a67;
    --mfp-accent-3:  #37d9ad;
    --mfp-text:      #ede8f5;
    --mfp-text-muted:#a899b8;
    --mfp-glass:     rgba(4, 24, 60,.72);
    --mfp-glass-border:rgba(255,255,255,.08);
    --mfp-glow-1:    rgba(25, 182, 220,.42);
    --mfp-glow-2:    rgba(26, 111, 144,.32);

    /* Transparent so the fixed html gradient shows through.
       Radial overlays add subtle warmth without blocking the base. */
    background:
        radial-gradient(ellipse 70% 44% at 15%  0%, rgba(26, 111, 144,.18) 0%, transparent 56%),
        radial-gradient(ellipse 50% 30% at 88%  0%, rgba(9, 95, 132,.12) 0%, transparent 52%),
        transparent;
    color: var(--mfp-text);
    padding: 0 !important;
    min-height: 100vh;
}

/* Override global lime/blue link color inside the wrapper */
.mfp-wrap a,
.mfp-wrap a:hover,
.mfp-wrap a:focus {
    color: inherit !important;
}

/* ============================================================
   HERO
   ============================================================ */
.mfp-hero {
    margin-bottom: 36px;
    position: relative;
    padding: 22px 28px 0; /* top air + sides */
}

.mfp-hero-main {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    /* Glass effect — the fixed gradient background bleeds through */
    background: rgba(15, 94, 161,.06);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
}

/* Right-side darkening so the title text (bottom-right) is readable */
.mfp-hero-main::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(260deg,
        rgba(4, 24, 60,.88) 0%,
        rgba(4, 24, 60,.58) 30%,
        rgba(4, 24, 60,.08) 55%,
        transparent 75%);
    z-index: 3;
    pointer-events: none;
}

/* Ambient blur bg hidden — the fixed html gradient is the background now */
.mfp-hero-bg { display: none; }

/* Image covers the LEFT portion, fading to transparent on the right */
.mfp-hero-img-wrap {
    position: absolute; inset: 0;
    display: flex; align-items: stretch;
    z-index: 2;
}
.mfp-hero-img-wrap a {
    display: block;
    width: 68%;
    margin-right: auto;       /* push image to the left */
    flex-shrink: 0;
}
.mfp-hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    /* Fade the right edge of the image into the gradient */
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 22%);
    mask-image:         linear-gradient(to left, transparent 0%, black 22%);
}

/* Top bar just slightly darkens the top edge */
.mfp-hero-overlay-top {
    position: absolute; top: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(4, 24, 60,.55) 0%, transparent 100%);
    z-index: 3; pointer-events: none;
}

/* Bottom fade blends into the page */
.mfp-hero-overlay-bottom {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top,
        rgba(4, 24, 60,.9) 0%,
        rgba(4, 24, 60,.55) 40%,
        transparent 100%);
    z-index: 3; pointer-events: none;
}

/* Channel / date pill — top right, above the title */
.mfp-hero-topbar {
    position: absolute; top: 16px; right: 18px;
    display: inline-flex; align-items: center;
    padding: 4px 14px;
    z-index: 5;
    color: rgba(255,255,255,.70);
    font-size: .72em;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(4, 24, 60,.55);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
}
.mfp-sep { margin: 0 8px; opacity: .35; }

/* Title — bottom right, opposite side from the image */
.mfp-hero-info {
    position: absolute;
    bottom: 92px; right: 36px;
    max-width: 42%;
    z-index: 4;
    pointer-events: none;
    text-align: right;
}
.mfp-hero-info h2 {
    margin: 0;
    font-size: 3.2em;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: #fff;
    text-shadow: 0 2px 32px rgba(0,0,0,.85), 0 0 80px rgba(25, 182, 220,.25);
}
.mfp-hero-info h2 a {
    color: #fff !important;
    text-decoration: none;
    pointer-events: auto;
    transition: opacity .2s;
}
.mfp-hero-info h2 a:hover { opacity: .85; color: #fff !important; text-decoration: none; }

/* Hover play button */
.mfp-hero-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    z-index: 4;
    opacity: 0; transition: opacity .25s;
}
.mfp-hero-main:hover .mfp-hero-play { opacity: 1; }

.mfp-play-btn {
    width: 72px; height: 72px; border-radius: 50%;
    background:
        radial-gradient(circle at 72% 30%, rgba(78, 229, 167, 0.25), transparent 34%),
        linear-gradient(145deg, rgba(5, 35, 65, 0.78), rgba(7, 17, 61, 0.74));
    border: 2px solid rgba(31, 191, 143, 0.7) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    color: #fff !important; font-size: 1.55em;
    padding-left: 5px;
    text-decoration: none;
    box-shadow:
        0 0 0 0 rgba(31, 191, 143, 0),
        inset 0 0 20px rgba(31, 191, 143, 0.15) !important;
    transition: background .3s, border-color .3s, box-shadow .3s, transform .2s;
}
.mfp-play-btn:hover {
    transform: scale(1.07);
    color: #fff !important;
    text-decoration: none;
    border-color: #4ee5a7 !important;
    box-shadow:
        0 0 24px rgba(31, 191, 143, 0.55),
        0 0 48px rgba(31, 191, 143, 0.25),
        inset 0 0 20px rgba(31, 191, 143, 0.2) !important;
}
.mfp-play-btn:active { transform: scale(0.97); }

.mfp-slide { display: none; position: absolute; inset: 0; }
.mfp-slide.active { display: block; }

.mfp-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 6;
    background: rgba(4, 24, 60,.68);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.8);
    width: 44px; height: 64px; font-size: 1em;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    opacity: 0; transition: opacity .2s, background .2s, border-color .2s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.mfp-hero-main:hover .mfp-arrow { opacity: 1; }
.mfp-arrow:hover {
    background: rgba(25, 182, 220,.28);
    border-color: rgba(25, 182, 220,.5);
    color: #fff;
}
.mfp-arrow-left  { left: 10px; }
.mfp-arrow-right { right: 10px; }

/* ============================================================
   HERO STRIP
   ============================================================ */
.mfp-hero-strip {
    display: flex;
    gap: 6px;
    background: rgba(4, 24, 60,.82);
    border: 1px solid rgba(255,255,255,.07);
    padding: 10px 14px 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(25, 182, 220,.45) transparent;
    width: fit-content;
    max-width: calc(100% - 56px);
    margin: -54px auto 0;
    border-radius: 12px;
    position: relative;
    z-index: 8;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.mfp-hero-strip::-webkit-scrollbar       { height: 3px; }
.mfp-hero-strip::-webkit-scrollbar-track  { background: transparent; }
.mfp-hero-strip::-webkit-scrollbar-thumb  { background: rgba(25, 182, 220,.5); border-radius: 2px; }

.mfp-strip-item {
    flex: 0 0 auto;
    cursor: pointer;
    opacity: .34;
    transition: opacity .2s, transform .2s;
    position: relative;
}
.mfp-strip-item:hover { opacity: .65; }
.mfp-strip-item.active { opacity: 1; transform: scale(1.04); }
.mfp-strip-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg, #0b2a67, #19b6dc);
    border-radius: 2px;
}

.mfp-strip-thumb {
    width: 92px; height: 52px;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(5, 27, 65,.9);
    border: 1px solid rgba(255,255,255,.06);
}
.mfp-strip-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Progress bar — fills over carouselInterval ms when item is active */
@keyframes mfpProgress {
    from { width: 0%; }
    to   { width: 100%; }
}
.mfp-strip-progress {
    height: 2px;
    background: rgba(255,255,255,.12);
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
    position: relative;
}
.mfp-strip-progress-bar {
    position: absolute; inset: 0;
    width: 0%;
    border-radius: 2px;
    background: linear-gradient(90deg, #0b2a67, #19b6dc);
}
.mfp-strip-item.active .mfp-strip-progress-bar {
    animation: mfpProgress var(--mfp-ci) linear forwards;
}
.mfp-hero:hover .mfp-strip-item.active .mfp-strip-progress-bar {
    animation-play-state: paused;
}

.mfp-strip-dur {
    display: block;
    margin-top: 3px;
    font-size: .6em;
    color: var(--mfp-text-muted);
    text-align: center;
    font-variant-numeric: tabular-nums;
}

/* ============================================================
   CATEGORY SECTIONS
   ============================================================ */
.mfp-categories { padding: 0 16px 24px; }
.mfp-section    { margin-bottom: 40px; }

.mfp-section-carousel { max-width: calc(100% - 32px); margin: 0 auto 40px; }

.mfp-category-carousel {
    display: flex; justify-content: center;
    gap: 14px; padding: 12px 12px 8px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto 24px; width: 100%;
}
.mfp-category-carousel::-webkit-scrollbar       { height: 4px; }
.mfp-category-carousel::-webkit-scrollbar-track  { background: rgba(255,255,255,.03); }
.mfp-category-carousel::-webkit-scrollbar-thumb  { background: rgba(25, 182, 220,.35); border-radius: 999px; }

.mfp-carousel-card {
    flex: 0 0 calc((100% - 56px) / 5);
    position: relative; min-width: 200px; max-width: 280px;
    height: 180px; border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(5, 27, 65,.9);
    text-decoration: none; scroll-snap-align: start;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.mfp-carousel-card:hover {
    border-color: rgba(25, 182, 220,.42);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(25, 182, 220,.18);
}
@media (max-width:1400px) { .mfp-carousel-card { flex: 0 0 calc((100% - 42px)/4); } }
@media (max-width:1100px) { .mfp-carousel-card { flex: 0 0 calc((100% - 28px)/3); } }
@media (max-width:820px)  { .mfp-carousel-card { flex: 0 0 calc((100% - 14px)/2); } }
@media (max-width:560px)  { .mfp-carousel-card { flex: 0 0 100%; max-width: 100%; } }

.mfp-carousel-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(.78); transition: transform .35s ease;
}
.mfp-carousel-card:hover .mfp-carousel-card-bg { transform: scale(1.05); }
.mfp-carousel-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(3, 18, 47,.88) 100%);
}
.mfp-carousel-card-title {
    position: absolute; left: 12px; right: 12px; bottom: 12px;
    z-index: 2; color: #fff; font-size: .95em; font-weight: 700;
    line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

/* ============================================================
   PROGRAMS CAROUSEL
   ============================================================ */
.mfp-programs {
    padding: 0 10px 34px;
}
.mfp-programs-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}
.mfp-programs-title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.7rem, 2.2vw, 3.1rem);
    font-weight: 800;
    line-height: 1.05;
    white-space: nowrap;
}
.mfp-programs-line {
    flex: 1;
    height: 1px;
    background: rgba(237, 248, 247, 0.36);
}
.mfp-programs-carousel-wrap {
    position: relative;
}
.mfp-programs-carousel {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 10px;
}
.mfp-programs-carousel::-webkit-scrollbar {
    display: none;
}
.mfp-program-card {
    position: relative;
    flex: 0 0 clamp(240px, 18.8vw, 390px);
    aspect-ratio: 3 / 4.1;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(5, 23, 38, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.08);
    scroll-snap-align: start;
    text-decoration: none !important;
    color: #fff !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}
.mfp-program-card img,
.mfp-program-card-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .36s ease, filter .36s ease;
}
.mfp-program-card:hover img,
.mfp-program-card:hover .mfp-program-card-placeholder {
    transform: scale(1.055);
    filter: brightness(1.06);
}
.mfp-program-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(78, 229, 167, 0.72);
    background:
        linear-gradient(148deg, transparent 0 16%, rgba(31, 191, 143, 0.22) 19%, transparent 34%),
        linear-gradient(180deg, #063247, #07113d);
}
.mfp-program-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.42) 100%);
    pointer-events: none;
}
.mfp-program-card-title {
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 10px 16px;
    border-radius: 11px;
    background: rgba(19, 18, 18, 0.82);
    color: #fff;
    font-size: clamp(1rem, 1.08vw, 1.35rem);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,.58);
}
.mfp-programs-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    background: rgba(3, 14, 28, 0.82);
    color: #fff;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .18s, opacity .18s, transform .18s;
}
.mfp-programs-control:hover {
    background: rgba(31, 191, 143, 0.42);
}
.mfp-programs-control:disabled {
    opacity: 0;
    pointer-events: none;
}
.mfp-programs-control--prev { left: 8px; }
.mfp-programs-control--next { right: 8px; }

@media (max-width: 900px) {
    .mfp-programs-carousel { gap: 16px; }
    .mfp-program-card { flex-basis: clamp(210px, 42vw, 320px); border-radius: 16px; }
}
@media (max-width: 560px) {
    .mfp-programs { padding-left: 0; padding-right: 0; }
    .mfp-programs-header { gap: 10px; }
    .mfp-programs-title { font-size: 1.55rem; }
    .mfp-program-card { flex-basis: 78vw; }
    .mfp-programs-control { display: none; }
}

/* Section header */
.mfp-section-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.mfp-section-title {
    margin: 0; padding: 0 0 0 13px;
    font-size: 1.15em; font-weight: 700;
    color: var(--mfp-text); white-space: nowrap;
    position: relative;
}
.mfp-section-title::before {
    content: '';
    position: absolute; left: 0; top: 8%; bottom: 8%;
    width: 3px; border-radius: 3px;
    background: linear-gradient(to bottom, #1a6f90, #19b6dc);
}
.mfp-section-line {
    flex: 1; height: 1px;
    background: linear-gradient(to right, rgba(25, 182, 220,.28), rgba(26, 111, 144,.12), transparent);
}

/* Grid: 1 big + 6 small */
.mfp-cat-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}
.mfp-cat-big   { grid-column: 1; grid-row: 1 / 3; overflow: hidden; border-radius: 10px; }
.mfp-cat-small { overflow: hidden; border-radius: 8px; }
.mfp-cat-small:nth-child(2) { grid-column: 2; grid-row: 1; }
.mfp-cat-small:nth-child(3) { grid-column: 3; grid-row: 1; }
.mfp-cat-small:nth-child(4) { grid-column: 4; grid-row: 1; }
.mfp-cat-small:nth-child(5) { grid-column: 2; grid-row: 2; }
.mfp-cat-small:nth-child(6) { grid-column: 3; grid-row: 2; }
.mfp-cat-small:nth-child(7) { grid-column: 4; grid-row: 2; }

.mfp-thumb {
    display: block; width: 100%;
    position: relative; overflow: hidden;
    background: rgba(5, 27, 65,.9);
    border: 1px solid rgba(255,255,255,.06);
    transition: border-color .25s;
}
.mfp-cat-small .mfp-thumb { aspect-ratio: 16 / 9; }
.mfp-cat-big   .mfp-thumb { aspect-ratio: 16 / 9; }
.mfp-thumb:hover { border-color: rgba(25, 182, 220,.4); }

.mfp-thumb::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 62%;
    background: linear-gradient(to top, rgba(3, 18, 47,.94) 0%, transparent 100%);
    z-index: 1; pointer-events: none;
}
.mfp-thumb::after { display: none; }

.mfp-thumb-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .38s ease;
}
.mfp-thumb:hover .mfp-thumb-img { transform: scale(1.05); }

.mfp-thumb-play {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .25s; pointer-events: none;
}
.mfp-thumb:hover .mfp-thumb-play { opacity: 1; }
.mfp-thumb-play i {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 72% 30%, rgba(78, 229, 167, 0.25), transparent 34%),
        linear-gradient(145deg, rgba(5, 35, 65, 0.78), rgba(7, 17, 61, 0.74)) !important;
    border: 2px solid rgba(31, 191, 143, 0.7) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff !important;
    font-size: 1em; padding-left: 3px;
    box-shadow: 0 0 0 0 rgba(31, 191, 143, 0), inset 0 0 12px rgba(31, 191, 143, 0.15) !important;
    transition: background .3s, border-color .3s, box-shadow .3s, transform .2s;
}
.mfp-thumb:hover .mfp-thumb-play i {
    transform: scale(1.07);
    border-color: #4ee5a7 !important;
    box-shadow:
        0 0 24px rgba(31, 191, 143, 0.55),
        0 0 48px rgba(31, 191, 143, 0.25),
        inset 0 0 12px rgba(31, 191, 143, 0.2) !important;
}

/* Title — bottom of card */
.mfp-vid-title {
    position: absolute;
    bottom: 6px; left: 8px; right: 52px;
    color: #fff; font-size: .72em; font-weight: 700; line-height: 1.25;
    text-shadow: 0 1px 6px rgba(0,0,0,.9);
    z-index: 2; pointer-events: none;
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.mfp-cat-big .mfp-vid-title {
    font-size: .96em; bottom: 10px; left: 12px; right: 74px;
    -webkit-line-clamp: 3;
}

/* Duration badge — top-right */
.mfp-vid-dur {
    position: absolute; top: 6px; right: 6px;
    background: rgba(3, 18, 47,.82);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.9);
    font-size: .64em; font-weight: 600; padding: 2px 6px;
    border-radius: 4px; z-index: 2; pointer-events: none;
    font-variant-numeric: tabular-nums;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.mfp-cat-big .mfp-vid-dur { font-size: .8em; padding: 3px 8px; top: 10px; right: 10px; }

.mfp-vid-stats { display: none; }
.mfp-cat-big .mfp-vid-stats {
    display: flex;
    position: absolute; bottom: 10px; right: 10px;
    color: rgba(255,255,255,.52); font-size: .76em;
    z-index: 2; pointer-events: none;
    align-items: center; gap: 6px;
    text-shadow: 0 1px 4px rgba(0,0,0,.8);
}

/* "See all" button */
.mfp-section-footer { display: flex; justify-content: flex-end; margin-top: 10px; }
.mfp-see-all {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 24px; border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(25, 182, 220,.38);
    color: var(--mfp-text); font-size: .82em; font-weight: 600;
    text-decoration: none; letter-spacing: .01em;
    transition: background .22s, border-color .22s, color .22s, box-shadow .22s;
}
.mfp-see-all:hover {
    background: rgba(25, 182, 220,.16);
    border-color: rgba(25, 182, 220,.7);
    color: #fff !important; text-decoration: none;
    box-shadow: 0 0 22px rgba(25, 182, 220,.28);
}

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.mfp-category-page { padding: 20px 16px 24px; }

.mfp-category-top {
    display: block; margin-bottom: 18px; padding: 18px;
    border-radius: 14px;
    background:
        radial-gradient(600px 200px at 0% 0%, rgba(26, 111, 144,.14), transparent 70%),
        radial-gradient(500px 160px at 100% 0%, rgba(25, 182, 220,.10), transparent 70%),
        rgba(5, 27, 65,.8);
    border: 1px solid rgba(255,255,255,.07);
}
.mfp-category-top-content {
    display: flex; align-items: stretch;
    justify-content: space-between; gap: 18px;
}

.mfp-category-hero-card {
    position: relative; flex: 0 0 min(52%, 720px);
    display: block; border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.1); text-decoration: none;
    background: rgba(5, 27, 65,.9); min-height: 240px;
    transition: border-color .25s;
}
.mfp-category-hero-card:hover { border-color: rgba(25, 182, 220,.42); }
.mfp-category-hero-card img {
    width: 100%; height: 100%; min-height: 240px;
    object-fit: cover; display: block; transition: transform .3s ease;
}
.mfp-category-hero-card:hover img { transform: scale(1.04); }
.mfp-category-hero-card-shade {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(3, 18, 47,.95) 0%, rgba(3, 18, 47,.3) 55%, transparent 82%);
}
.mfp-category-hero-card-title {
    position: absolute; left: 14px; right: 62px; bottom: 14px;
    color: #fff; font-size: 1.2em; font-weight: 800; line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,.8);
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.mfp-category-hero-card-dur {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    padding: 3px 8px; border-radius: 6px; font-size: .76em; font-weight: 600;
    color: rgba(255,255,255,.9); background: rgba(3, 18, 47,.78);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.mfp-category-hero-card-play {
    position: absolute; right: 14px; bottom: 12px;
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff !important; padding-left: 3px;
    background:
        radial-gradient(circle at 72% 30%, rgba(78, 229, 167, 0.25), transparent 34%),
        linear-gradient(145deg, rgba(5, 35, 65, 0.78), rgba(7, 17, 61, 0.74)) !important;
    border: 2px solid rgba(31, 191, 143, 0.7) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 0 0 rgba(31, 191, 143, 0), inset 0 0 10px rgba(31, 191, 143, 0.15) !important;
    transition: border-color .3s, box-shadow .3s;
}

.mfp-category-heading-wrap {
    flex: 1 1 auto; min-width: 0;
    display: flex; flex-direction: column; gap: 14px;
}
.mfp-category-back {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 18px; border-radius: 999px;
    color: var(--mfp-text) !important; text-decoration: none;
    border: 1px solid rgba(25, 182, 220,.38); background: transparent;
    font-weight: 600; font-size: .88em; width: fit-content;
    transition: background .2s, border-color .2s, box-shadow .2s;
}
.mfp-category-back:hover {
    background: rgba(25, 182, 220,.16);
    border-color: rgba(25, 182, 220,.68);
    color: #fff !important; text-decoration: none;
    box-shadow: 0 0 18px rgba(25, 182, 220,.22);
}
.mfp-category-heading h1 {
    margin: 0; font-size: 1.9em; line-height: 1.1;
    color: #fff; font-weight: 800;
    text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.mfp-category-heading p { margin: 6px 0 0; font-size: .9em; color: var(--mfp-text-muted); }

.mfp-category-hero-video { margin-top: 8px !important; color: #fff !important; font-weight: 700; max-width: 980px; }
.mfp-category-hero-title-link { color: #fff !important; text-decoration: none; }
.mfp-category-hero-title-link:hover { color: rgba(255,255,255,.78) !important; text-decoration: none; }
.mfp-category-hero-video span {
    display: inline-block; margin-left: 10px; padding: 1px 8px;
    border-radius: 999px; font-size: .82em;
    border: 1px solid rgba(255,255,255,.22); background: rgba(5, 27, 65,.5);
}

.mfp-category-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px; align-items: start;
}
.mfp-category-card { display: block; }
.mfp-category-card.featured { grid-column: span 2; }

.mfp-category-thumb {
    display: block; position: relative; aspect-ratio: 16 / 9;
    overflow: hidden; border-radius: 10px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(5, 27, 65,.9); text-decoration: none;
    transition: border-color .25s;
}
.mfp-category-thumb:hover { border-color: rgba(25, 182, 220,.4); }
.mfp-category-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transform: scale(1.001); transition: transform .3s ease;
}
.mfp-category-thumb:hover img { transform: scale(1.05); }
.mfp-category-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(3, 18, 47,.9) 0%, rgba(3, 18, 47,.22) 52%, transparent 78%);
    pointer-events: none;
}
.mfp-category-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    z-index: 2; opacity: 0; transition: opacity .25s; pointer-events: none;
}
.mfp-category-thumb:hover .mfp-category-play { opacity: 1; }
.mfp-category-play i {
    width: 46px; height: 46px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 72% 30%, rgba(78, 229, 167, 0.25), transparent 34%),
        linear-gradient(145deg, rgba(5, 35, 65, 0.78), rgba(7, 17, 61, 0.74)) !important;
    border: 2px solid rgba(31, 191, 143, 0.7) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff !important;
    font-size: 1.1em; padding-left: 3px;
    box-shadow: 0 0 0 0 rgba(31, 191, 143, 0), inset 0 0 12px rgba(31, 191, 143, 0.15) !important;
    transition: background .3s, border-color .3s, box-shadow .3s, transform .2s;
}
.mfp-category-thumb:hover .mfp-category-play i {
    transform: scale(1.07);
    border-color: #4ee5a7 !important;
    box-shadow:
        0 0 24px rgba(31, 191, 143, 0.55),
        0 0 48px rgba(31, 191, 143, 0.25),
        inset 0 0 12px rgba(31, 191, 143, 0.2) !important;
}

.mfp-category-duration {
    position: absolute; top: 8px; right: 8px; z-index: 2;
    background: rgba(3, 18, 47,.78); border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.9); padding: 2px 7px; border-radius: 5px;
    font-size: .72em; font-weight: 600; font-variant-numeric: tabular-nums;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.mfp-category-title {
    position: absolute; z-index: 2;
    left: 10px; right: 10px; bottom: 10px;
    color: #fff; font-size: .95em; font-weight: 800; line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,.9);
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.mfp-category-card.featured .mfp-category-title { font-size: 1.18em; -webkit-line-clamp: 3; }

.mfp-category-meta {
    margin-top: 8px; display: flex; align-items: center;
    gap: 12px; flex-wrap: wrap; color: var(--mfp-text-muted); font-size: .82em;
}
.mfp-category-meta span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }

.mfp-category-pagination {
    margin-top: 20px; display: flex; align-items: center;
    justify-content: center; gap: 8px; flex-wrap: wrap;
}
.mfp-page-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(5, 27, 65,.8); color: var(--mfp-text);
    text-decoration: none; font-size: .88em; font-weight: 600;
    transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.mfp-page-btn:hover {
    color: #fff !important; text-decoration: none;
    border-color: rgba(25, 182, 220,.58);
    background: rgba(25, 182, 220,.16);
    box-shadow: 0 0 18px rgba(25, 182, 220,.22);
}
.mfp-page-btn.active {
    border-color: rgba(25, 182, 220,.82);
    box-shadow: 0 0 0 1px rgba(25, 182, 220,.4), 0 0 18px rgba(25, 182, 220,.26);
    color: #fff;
}
.mfp-page-btn.disabled { opacity: .4; cursor: not-allowed; }

.mfp-category-empty {
    margin-top: 12px; padding: 28px; border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(5, 27, 65,.72); color: var(--mfp-text); text-align: center;
}

.mfp-infinite-status {
    margin-top: 16px; text-align: center;
    color: var(--mfp-text-muted); font-size: .88em; padding: 10px 12px;
}
#mfpInfiniteSentinel { width: 100%; height: 2px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .mfp-hero-main     { height: 440px; }
    .mfp-hero-info h2  { font-size: 2.2em; }
    .mfp-hero-info     { bottom: 80px; right: 24px; max-width: 52%; }
    .mfp-strip-thumb   { width: 78px; height: 44px; }

    .mfp-cat-grid {
        grid-template-columns: 1.6fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }
    .mfp-cat-big { grid-column: 1; grid-row: 1 / 4; }
    .mfp-cat-small:nth-child(2) { grid-column: 2; grid-row: 1; }
    .mfp-cat-small:nth-child(3) { grid-column: 3; grid-row: 1; }
    .mfp-cat-small:nth-child(4) { grid-column: 2; grid-row: 2; }
    .mfp-cat-small:nth-child(5) { grid-column: 3; grid-row: 2; }
    .mfp-cat-small:nth-child(6) { grid-column: 2; grid-row: 3; }
    .mfp-cat-small:nth-child(7) { grid-column: 3; grid-row: 3; }
    .mfp-cat-big .mfp-thumb     { aspect-ratio: 32 / 27; }
}

@media (max-width: 768px) {
    .mfp-hero          { padding: 14px 14px 0; }
    .mfp-hero-main     { height: 320px; }
    .mfp-hero-info h2  { font-size: 1.55em; }
    .mfp-hero-info     { bottom: 68px; right: 16px; max-width: 65%; }
    .mfp-hero-topbar   { max-width: calc(100% - 18px); overflow: hidden; text-overflow: ellipsis; }
    .mfp-strip-thumb   { width: 70px; height: 40px; }
    .mfp-strip-dur     { font-size: .56em; }

    .mfp-cat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .mfp-cat-big  { grid-column: 1 / 3; grid-row: 1; }
    .mfp-cat-big .mfp-thumb { aspect-ratio: 16 / 9; }
    .mfp-cat-small:nth-child(n) { grid-column: auto; grid-row: auto; }

    .mfp-section-footer { margin-top: 12px; }
    .mfp-category-top-content { flex-direction: column; }
    .mfp-category-hero-card { width: 100%; flex: none; min-height: 200px; }
    .mfp-category-hero-card img { min-height: 200px; }
    .mfp-category-heading h1 { font-size: 1.5em; }
    .mfp-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .mfp-category-card.featured { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
    .mfp-hero          { padding: 10px 10px 0; }
    .mfp-hero-main     { height: 260px; }
    .mfp-hero-info h2  { font-size: 1.25em; }
    .mfp-hero-info     { bottom: 60px; right: 12px; max-width: 80%; }
    .mfp-strip-thumb   { width: 64px; height: 36px; }
    .mfp-strip-dur     { font-size: .52em; }

    .mfp-cat-grid { grid-template-columns: 1fr 1fr; }
    .mfp-cat-big  { grid-column: 1 / 3; }
    .mfp-categories    { padding: 0 10px 16px; }
    .mfp-category-page { padding: 12px 10px 18px; }
    .mfp-category-grid { grid-template-columns: 1fr; }
    .mfp-category-card.featured { grid-column: auto; }
    .mfp-page-btn { font-size: .8em; padding: 7px 10px; }
}

/* ============================================================
   LIVE STREAM
   ============================================================ */
.mfp-live-wrap {
    width: 100%; background: rgba(4, 24, 60,.96);
    margin-bottom: 32px; border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(25, 182, 220,.16);
    box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(25, 182, 220,.08);
}
.mfp-live-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 20px; background: rgba(3, 18, 47,.92);
    border-bottom: 1px solid rgba(25, 182, 220,.12);
}
.mfp-live-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, rgba(26, 111, 144,.22), rgba(25, 182, 220,.15));
    color: rgba(255,255,255,.92); font-size: .76em; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 999px;
    border: 1px solid rgba(25, 182, 220,.42);
    box-shadow: 0 0 18px rgba(25, 182, 220,.2);
}
.mfp-live-badge i {
    font-size: .55em; color: #19b6dc;
    animation: mfpLivePulse 1.2s ease-in-out infinite;
}
@keyframes mfpLivePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}
.mfp-live-name { color: var(--mfp-text); font-weight: 600; font-size: 1em; }

.mfp-live-player-wrap {
    position: relative; width: 100%;
    aspect-ratio: 16 / 9; max-height: calc(100vh - 130px);
    background: #03122f; overflow: hidden;
}
.mfp-live-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    display: block; background: #03122f;
}
.mfp-live-hint {
    text-align: center; font-size: .74em;
    color: var(--mfp-text-muted); padding: 6px 0; margin: 0;
    background: rgba(3, 18, 47,.55);
}
.mfp-live-video, #mfpLiveYT, #mfpLiveYT iframe {
    position: absolute; inset: 0; width: 100%; height: 100%;
    display: block; background: #03122f; border: 0;
}
.mfp-connecting-overlay {
    position: absolute; inset: 0; z-index: 11;
    background: rgba(3,18,47,.88);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 14px;
}
.mfp-connecting-overlay p { margin: 0; font-size: .88em; color: rgba(255,255,255,.72); letter-spacing: .02em; }
.mfp-connecting-spinner {
    width: 46px; height: 46px; border-radius: 50%;
    border: 4px solid rgba(76,249,255,.18);
    border-top-color: #4cf9ff;
    animation: mfpSpin .85s linear infinite;
}
@keyframes mfpSpin { to { transform: rotate(360deg); } }
.mfp-yt-blocker {
    position: absolute; bottom: 0; right: 0;
    width: 80px; height: 40px; z-index: 10;
    pointer-events: none; background: rgba(16,13,26,.88);
}
.mfp-yt-pause-overlay {
    position: absolute; inset: 0; z-index: 9;
    background: rgba(0,0,0,.82);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.mfp-yt-play-btn {
    width: 72px; height: 72px; border-radius: 50%; border: none;
    background: linear-gradient(135deg, #0b2a67, #19b6dc) !important;
    color: #fff !important; font-size: 1.55em; padding-left: 5px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 0 0 8px rgba(25, 182, 220,.18), 0 0 40px rgba(25, 182, 220,.42) !important;
    transition: transform .15s;
}
.mfp-yt-play-btn:hover { transform: scale(1.08); }
.mfp-live-yt-bar {
    display: flex; align-items: center;
    padding: 8px 18px; background: rgba(3, 18, 47,.6); gap: 12px;
}
.mfp-yt-mute-btn {
    border: 1px solid rgba(25, 182, 220,.52); background: transparent;
    color: var(--mfp-text); padding: 5px 16px; border-radius: 999px;
    cursor: pointer; font-size: .84em;
    display: flex; align-items: center; gap: 6px;
    transition: background .15s, color .15s;
}
.mfp-yt-mute-btn:hover { background: rgba(25, 182, 220,.22); color: #fff; }

.mfp-chat-toggle-btn {
    margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 999px;
    border: 1px solid rgba(25, 182, 220,.42); background: transparent;
    color: var(--mfp-text); font-size: .82em; font-weight: 600;
    cursor: pointer; transition: background .15s, color .15s; white-space: nowrap;
}
.mfp-chat-toggle-btn:hover { background: rgba(25, 182, 220,.22); color: #fff; }

.mfp-live-main-row { display: flex; flex-direction: row; align-items: stretch; width: 100%; }
.mfp-live-video-col { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.mfp-live-chat-col {
    flex: 0 0 340px; width: 340px; overflow: hidden;
    background: rgba(3, 18, 47,.96);
    border-left: 1px solid rgba(25, 182, 220,.1);
    display: flex; flex-direction: column;
    transition: width .25s ease, flex-basis .25s ease;
}
.mfp-live-chat-col.mfp-chat-closed { flex-basis: 0; width: 0; border-left: none; }
.mfp-live-chat-iframe {
    flex: 1 1 auto; width: 100%; height: 100%;
    min-height: 400px; display: block; border: 0; margin: 0; padding: 0;
}
@media (max-width: 900px) { .mfp-live-chat-col { flex: 0 0 280px; width: 280px; } }
@media (max-width: 768px) {
    .mfp-live-main-row { flex-direction: column; }
    .mfp-live-chat-col {
        flex: 0 0 360px; width: 100%; height: 360px;
        border-left: none; border-top: 1px solid rgba(25, 182, 220,.12);
        transition: height .25s ease, flex-basis .25s ease;
    }
    .mfp-live-chat-col.mfp-chat-closed { flex-basis: 0; height: 0; border-top: none; }
    .mfp-live-chat-iframe { min-height: 0; height: 100%; }
}

/* ============================================================
   PODCAST PAGES
   ============================================================ */
.mfp-pod-page { padding: 20px 16px 120px; }

/* Back + section header */
.mfp-pod-back {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 18px; border-radius: 999px;
    border: 1px solid rgba(25, 182, 220,.38); background: transparent;
    color: var(--mfp-text) !important; text-decoration: none;
    font-weight: 600; font-size: .88em;
    transition: background .2s, border-color .2s, box-shadow .2s;
    margin-bottom: 20px; display: inline-flex;
}
.mfp-pod-back:hover {
    background: rgba(25, 182, 220,.16); border-color: rgba(25, 182, 220,.68);
    color: #fff !important; text-decoration: none;
    box-shadow: 0 0 18px rgba(25, 182, 220,.22);
}

/* ---- Podcast list ---- */
.mfp-pod-list-header {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 28px; flex-wrap: wrap;
}
.mfp-pod-list-header h1 {
    margin: 0; font-size: 1.8em; font-weight: 800; color: #fff;
    display: flex; align-items: center; gap: 12px;
}
.mfp-pod-list-header h1 .fas { color: var(--mfp-accent-1); font-size: .9em; }

.mfp-pod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.mfp-pod-card {
    display: flex; flex-direction: column;
    border-radius: 12px; overflow: hidden;
    background: rgba(5, 27, 65,.9);
    border: 1px solid rgba(255,255,255,.07);
    text-decoration: none;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.mfp-pod-card:hover {
    border-color: rgba(25, 182, 220,.42);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(25, 182, 220,.18);
    text-decoration: none;
}
.mfp-pod-card-img-wrap {
    position: relative; aspect-ratio: 1;
    background: rgba(3, 18, 47,.9); overflow: hidden;
}
.mfp-pod-card-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .35s ease;
}
.mfp-pod-card:hover .mfp-pod-card-img-wrap img { transform: scale(1.05); }
.mfp-pod-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3em; color: rgba(25, 182, 220,.4);
}
.mfp-pod-card-overlay {
    position: absolute; inset: 0;
    background: rgba(3, 18, 47,.45);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .25s;
}
.mfp-pod-card:hover .mfp-pod-card-overlay { opacity: 1; }
.mfp-pod-card-play {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, #0b2a67, #19b6dc);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1em; padding-left: 3px;
    box-shadow: 0 0 28px rgba(25, 182, 220,.5);
}
.mfp-pod-card-body {
    padding: 12px 14px 14px;
    display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.mfp-pod-card-title {
    font-size: .95em; font-weight: 700; color: #fff; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.mfp-pod-card-author { font-size: .78em; color: var(--mfp-accent-3); }
.mfp-pod-card-count  { font-size: .74em; color: var(--mfp-text-muted); margin-top: 2px; }

/* ---- Episodes page header ---- */
.mfp-pod-ep-header { margin-bottom: 28px; }
.mfp-pod-ep-meta {
    display: flex; gap: 24px; align-items: flex-start;
    background: rgba(5, 27, 65,.82);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px; padding: 20px;
    margin-top: 16px;
}
.mfp-pod-ep-cover {
    width: 140px; height: 140px; object-fit: cover;
    border-radius: 10px; flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.1);
}
.mfp-pod-ep-info { min-width: 0; }
.mfp-pod-ep-info h1 { margin: 0 0 6px; font-size: 1.6em; font-weight: 800; color: #fff; }
.mfp-pod-ep-author { color: var(--mfp-accent-3); font-size: .9em; margin: 0 0 6px; }
.mfp-pod-ep-author .fas { margin-right: 5px; }
.mfp-pod-ep-desc { color: var(--mfp-text-muted); font-size: .85em; margin: 0 0 6px; line-height: 1.5; }
.mfp-pod-ep-count { color: var(--mfp-text-muted); font-size: .8em; margin: 0; }

/* ---- Episodes list ---- */
.mfp-pod-episodes { display: flex; flex-direction: column; gap: 2px; }

.mfp-pod-episode {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background .18s, border-color .18s;
}
.mfp-pod-episode:hover {
    background: rgba(25, 182, 220,.08);
    border-color: rgba(25, 182, 220,.2);
}
.mfp-pod-episode--playing {
    background: rgba(25, 182, 220,.14) !important;
    border-color: rgba(25, 182, 220,.4) !important;
}
.mfp-pod-ep-num {
    flex-shrink: 0; width: 28px; text-align: center;
    font-size: .8em; color: var(--mfp-text-muted); font-variant-numeric: tabular-nums;
}
.mfp-pod-ep-thumb {
    flex-shrink: 0; width: 52px; height: 52px;
    object-fit: cover; border-radius: 6px;
    border: 1px solid rgba(255,255,255,.08);
}
.mfp-pod-ep-body { flex: 1; min-width: 0; }
.mfp-pod-ep-title {
    display: block; font-size: 1.02em; font-weight: 600; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-bottom: 4px;
}
.mfp-pod-ep-meta { font-size: .82em; color: var(--mfp-text-muted); }
.mfp-pod-ep-meta .fas, .mfp-pod-ep-meta .far { margin-right: 3px; }
.mfp-pod-wave-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
}
.mfp-pod-waveform {
    flex: 1 1 auto;
    min-width: 0;
    height: 70px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 2px;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(12, 18, 40, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    touch-action: none;
    user-select: none;
}
.mfp-pod-waveform span {
    flex: 1 1 0;
    min-width: 1px;
    max-width: 3px;
    border-radius: 2px;
    background: rgba(237, 248, 247, 0.82);
    box-shadow: 0 0 5px rgba(237, 248, 247, 0.08);
    transition: background .12s, box-shadow .12s, opacity .12s, transform .12s;
}
.mfp-pod-waveform span.mfp-pod-wave-bar--played {
    background: linear-gradient(180deg, #4ee5a7 0%, #1fbf8f 100%);
    box-shadow: 0 0 8px rgba(31, 191, 143, 0.38);
}
.mfp-pod-waveform:hover span {
    opacity: .94;
}
.mfp-pod-waveform:hover span.mfp-pod-wave-bar--played {
    transform: scaleY(1.04);
}
.mfp-pod-episode:hover .mfp-pod-waveform,
.mfp-pod-episode--playing .mfp-pod-waveform {
    border-color: rgba(31, 191, 143, 0.26);
    background: rgba(8, 23, 44, 0.86);
}
.mfp-pod-wave-time {
    flex: 0 0 88px;
    min-width: 88px;
    text-align: right;
    font-size: .80em;
    color: var(--mfp-text-muted);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    overflow: visible;
}
.mfp-pod-episode--playing .mfp-pod-wave-time {
    color: #8df1cf;
}
.mfp-pod-ep-play-btn {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, #0b2a67, #19b6dc);
    border: none; color: #fff; font-size: .85em; padding-left: 2px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 0 18px rgba(25, 182, 220,.3);
}
.mfp-pod-episode:hover .mfp-pod-ep-play-btn,
.mfp-pod-episode--playing .mfp-pod-ep-play-btn { opacity: 1; }
.mfp-pod-ep-play-btn:hover { transform: scale(1.1); box-shadow: 0 0 28px rgba(25, 182, 220,.5); }

/* ---- Fixed audio player ---- */
.mfp-pod-player {
    position: fixed; bottom: 0; left: 0; right: 0;
    display: none; align-items: center; gap: 14px;
    padding: 10px 20px;
    background: rgba(2, 14, 38,.97);
    border-top: 1px solid rgba(25, 182, 220,.3);
    box-shadow: 0 -8px 32px rgba(0,0,0,.6);
    z-index: 1100;
    transform: translateY(100%);
    transition: transform .28s ease;
}
.mfp-pod-player--visible { display: flex; transform: translateY(0); }
.mfp-pod-player-art {
    width: 48px; height: 48px; border-radius: 6px;
    object-fit: cover; flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.1);
}
.mfp-pod-player-info { flex: 0 0 220px; min-width: 0; }
.mfp-pod-player-title {
    display: block; font-size: .85em; font-weight: 600; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mfp-pod-player-dur { font-size: .72em; color: var(--mfp-text-muted); }
.mfp-pod-player-audio { display: none; }
.mfp-pod-player-close {
    flex-shrink: 0; background: transparent; border: none;
    color: var(--mfp-text-muted); font-size: 1em; cursor: pointer;
    padding: 6px; transition: color .15s;
}
.mfp-pod-player-close:hover { color: #fff; }

.mfp-pod-empty {
    text-align: center; color: var(--mfp-text-muted);
    padding: 40px; font-size: .95em;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .mfp-pod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .mfp-pod-ep-meta { flex-direction: column; }
    .mfp-pod-ep-cover { width: 100px; height: 100px; }
    .mfp-pod-ep-info h1 { font-size: 1.3em; }
    .mfp-pod-player-info { display: none; }
}
@media (max-width: 480px) {
    .mfp-pod-grid { grid-template-columns: 1fr 1fr; }
    .mfp-pod-ep-meta { padding: 14px; }
    .mfp-pod-ep-cover { width: 80px; height: 80px; }
    .mfp-pod-episode { padding: 10px; }
    .mfp-pod-ep-thumb { width: 44px; height: 44px; }
}

/* ============================================================
   2026 Ocean Night Theme Override
   ============================================================ */
:root,
.mfp-wrap {
    --mfp-bg-top: #013747;
    --mfp-bg-mid: #022963;
    --mfp-bg-bottom: #02083f;
    --mfp-card: rgba(5, 27, 65, 0.92);
    --mfp-accent-1: #18bde2;
    --mfp-accent-2: #0f5ea1;
    --mfp-accent-3: #42e6b8;
    --mfp-text: #e7f4ff;
    --mfp-text-muted: #9ec2df;
    --mfp-glass: rgba(22, 143, 186, 0.12);
    --mfp-glass-border: rgba(164, 224, 255, 0.17);
    --mfp-glow-1: rgba(24, 189, 226, 0.48);
    --mfp-glow-2: rgba(66, 230, 184, 0.34);
}

.mfp-wrap {
    background:
        linear-gradient(148deg, transparent 0%, transparent 14%, rgba(50, 221, 171, 0.18) 24%, transparent 34%, transparent 100%),
        linear-gradient(33deg, transparent 0%, transparent 66%, rgba(80, 228, 255, 0.18) 74%, transparent 84%, transparent 100%),
        transparent;
}

.mfp-play-btn,
.mfp-yt-play-btn,
.mfp-thumb-play i,
.mfp-category-play i,
.mfp-category-hero-card-play,
.mfp-pod-card-play,
.mfp-pod-ep-play-btn {
    background:
        radial-gradient(circle at 72% 30%, rgba(78, 229, 167, 0.25), transparent 34%),
        linear-gradient(145deg, rgba(5, 35, 65, 0.78), rgba(7, 17, 61, 0.74)) !important;
    border: 2px solid rgba(31, 191, 143, 0.7) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: 0 0 0 0 rgba(31, 191, 143, 0), inset 0 0 20px rgba(31, 191, 143, 0.15) !important;
    color: #fff !important;
}

.mfp-hero-main,
.mfp-thumb,
.mfp-carousel-card,
.mfp-category-thumb,
.mfp-category-card,
.mfp-category-hero-card,
.mfp-pod-card,
.mfp-pod-ep-meta,
.mfp-live-wrap {
    border-color: rgba(164, 224, 255, 0.20) !important;
}

/* ============================================================
   2026 Neon Wallet Theme Override
   Inspired by the supplied dark card UI reference.
   ============================================================ */
:root,
.mfp-wrap {
    --mfp-bg-top: #2b303b;
    --mfp-bg-mid: #242832;
    --mfp-bg-bottom: #20242d;
    --mfp-card: rgba(43, 48, 59, 0.9);
    --mfp-accent-1: #f33574;
    --mfp-accent-2: #8357f3;
    --mfp-accent-3: #f6a5cb;
    --mfp-text: #f8f5ff;
    --mfp-text-muted: #bbb7c9;
    --mfp-glass: rgba(255, 255, 255, 0.075);
    --mfp-glass-border: rgba(255, 255, 255, 0.12);
    --mfp-glow-1: rgba(243, 53, 116, 0.42);
    --mfp-glow-2: rgba(131, 87, 243, 0.36);
}

.mfp-wrap {
    background:
        radial-gradient(circle at 16% 0%, rgba(131, 87, 243, 0.18) 0, transparent 32%),
        radial-gradient(circle at 96% 7%, rgba(243, 53, 116, 0.18) 0, transparent 30%),
        transparent;
    color: var(--mfp-text);
}

.mfp-hero {
    padding: 24px 30px 0;
}

.mfp-hero-main {
    height: 560px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(43, 48, 59, 0.72) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 28px;
    box-shadow:
        0 28px 70px rgba(9, 10, 16, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mfp-hero-main::before {
    background:
        linear-gradient(90deg, rgba(36, 40, 50, 0.18) 0%, rgba(36, 40, 50, 0.52) 62%, rgba(36, 40, 50, 0.9) 100%),
        radial-gradient(circle at 72% 20%, rgba(243, 53, 116, 0.28) 0, transparent 35%),
        radial-gradient(circle at 44% 18%, rgba(131, 87, 243, 0.28) 0, transparent 38%);
}

.mfp-hero-overlay-top {
    background: linear-gradient(to bottom, rgba(32, 36, 45, 0.55) 0%, transparent 100%);
}

.mfp-hero-overlay-bottom {
    background: linear-gradient(to top, rgba(32, 36, 45, 0.92) 0%, rgba(32, 36, 45, 0.36) 48%, transparent 100%);
}

.mfp-hero-img-wrap a {
    width: 66%;
}

.mfp-hero-img-wrap img {
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 24%);
    mask-image: linear-gradient(to left, transparent 0%, black 24%);
    filter: saturate(1.06) contrast(1.04);
}

.mfp-hero-topbar,
.mfp-live-badge,
.mfp-category-duration,
.mfp-vid-dur,
.mfp-category-hero-card-dur,
.mfp-page-btn,
.mfp-see-all,
.mfp-category-back,
.mfp-pod-back,
.mfp-chat-toggle-btn,
.mfp-yt-mute-btn {
    background: rgba(48, 53, 65, 0.74) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    border-radius: 999px !important;
    color: rgba(248, 245, 255, 0.92) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mfp-hero-info h2 {
    color: #fff;
    font-size: clamp(2rem, 4.2vw, 5.2rem);
    letter-spacing: 0;
    text-shadow: 0 12px 42px rgba(0, 0, 0, 0.72), 0 0 40px rgba(243, 53, 116, 0.22);
}

.mfp-play-btn,
.mfp-yt-play-btn,
.mfp-thumb-play i,
.mfp-category-play i,
.mfp-category-hero-card-play,
.mfp-pod-card-play,
.mfp-pod-ep-play-btn {
    background:
        radial-gradient(circle at 72% 30%, rgba(78, 229, 167, 0.25), transparent 34%),
        linear-gradient(145deg, rgba(5, 35, 65, 0.78), rgba(7, 17, 61, 0.74)) !important;
    border: 2px solid rgba(31, 191, 143, 0.7) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: 0 0 0 0 rgba(31, 191, 143, 0), inset 0 0 20px rgba(31, 191, 143, 0.15) !important;
    color: #fff !important;
}

.mfp-play-btn:hover,
.mfp-yt-play-btn:hover,
.mfp-thumb:hover .mfp-thumb-play i,
.mfp-category-thumb:hover .mfp-category-play i {
    border-color: #4ee5a7 !important;
    box-shadow:
        0 0 24px rgba(31, 191, 143, 0.55),
        0 0 48px rgba(31, 191, 143, 0.25),
        inset 0 0 16px rgba(31, 191, 143, 0.2) !important;
}

.mfp-arrow,
.mfp-hero-strip,
.mfp-live-wrap,
.mfp-category-top,
.mfp-pod-ep-meta,
.mfp-pod-player {
    background: rgba(43, 48, 59, 0.82) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 18px 54px rgba(9, 10, 16, 0.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mfp-strip-item.active::after,
.mfp-strip-progress-bar,
.mfp-section-title::before,
.mfp-pod-waveform span.mfp-pod-wave-bar--played {
    background: linear-gradient(90deg, #8357f3 0%, #f33574 100%) !important;
}

.mfp-carousel-card,
.mfp-program-card,
.mfp-thumb,
.mfp-category-thumb,
.mfp-category-hero-card,
.mfp-pod-card {
    background: rgba(43, 48, 59, 0.86) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(9, 10, 16, 0.28);
}

.mfp-carousel-card:hover,
.mfp-program-card:hover,
.mfp-thumb:hover,
.mfp-category-thumb:hover,
.mfp-category-hero-card:hover,
.mfp-pod-card:hover {
    border-color: rgba(243, 53, 116, 0.36) !important;
    box-shadow: 0 22px 58px rgba(9, 10, 16, 0.38), 0 0 32px rgba(131, 87, 243, 0.16);
}

.mfp-thumb::before,
.mfp-category-overlay,
.mfp-category-hero-card-shade,
.mfp-carousel-card-overlay,
.mfp-program-card::after {
    background: linear-gradient(to top, rgba(32, 36, 45, 0.96) 0%, rgba(32, 36, 45, 0.28) 56%, transparent 100%) !important;
}

.mfp-section-title,
.mfp-programs-title,
.mfp-category-heading h1,
.mfp-pod-list-header h1,
.mfp-pod-ep-info h1 {
    color: #fff;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.mfp-section-line,
.mfp-programs-line {
    background: linear-gradient(to right, rgba(243, 53, 116, 0.48), rgba(131, 87, 243, 0.18), transparent) !important;
}

.mfp-program-card-title {
    background: rgba(44, 49, 60, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

.mfp-pod-card-author,
.mfp-pod-ep-author,
.mfp-pod-episode--playing .mfp-pod-wave-time,
.mfp-pod-list-header h1 .fas {
    color: #f6a5cb !important;
}

.mfp-pod-waveform,
.mfp-live-header,
.mfp-live-chat-col,
.mfp-live-player-wrap,
.mfp-live-video,
#mfpLiveYT,
#mfpLiveYT iframe {
    background: rgba(32, 36, 45, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.mfp-live-badge i {
    color: #f33574;
}

.mfp-see-all:hover,
.mfp-category-back:hover,
.mfp-pod-back:hover,
.mfp-page-btn:hover,
.mfp-page-btn.active,
.mfp-chat-toggle-btn:hover,
.mfp-yt-mute-btn:hover {
    background: linear-gradient(135deg, rgba(131, 87, 243, 0.32), rgba(243, 53, 116, 0.28)) !important;
    border-color: rgba(243, 53, 116, 0.46) !important;
    box-shadow: 0 0 28px rgba(243, 53, 116, 0.18);
}

@media (max-width: 768px) {
    .mfp-hero {
        padding: 14px 14px 0;
    }

    .mfp-hero-main {
        border-radius: 22px;
    }
}

/* ============================================================
   2026 Gray Glass + Lime Override
   ============================================================ */
:root,
.mfp-wrap {
    --mfp-bg-top: #31343a;
    --mfp-bg-mid: #292c31;
    --mfp-bg-bottom: #22252a;
    --mfp-card: rgba(48, 51, 58, 0.88);
    --mfp-accent-1: #99f85b;
    --mfp-accent-2: #6fd73c;
    --mfp-accent-3: #caff9d;
    --mfp-text: #f7f7f4;
    --mfp-text-muted: #bfc1c4;
    --mfp-glass: rgba(255, 255, 255, 0.07);
    --mfp-glass-border: rgba(255, 255, 255, 0.12);
    --mfp-glow-1: rgba(153, 248, 91, 0.32);
    --mfp-glow-2: rgba(153, 248, 91, 0.22);
}

.mfp-wrap {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 32%),
        transparent !important;
}

.mfp-hero-main,
.mfp-category-top,
.mfp-hero-strip,
.mfp-live-wrap,
.mfp-pod-ep-meta,
.mfp-pod-player {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(48, 51, 58, 0.78) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.mfp-hero-main::before {
    background:
        linear-gradient(90deg, rgba(37, 40, 45, 0.14) 0%, rgba(37, 40, 45, 0.50) 62%, rgba(37, 40, 45, 0.92) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 55%) !important;
}

.mfp-play-btn,
.mfp-yt-play-btn,
.mfp-thumb-play i,
.mfp-category-play i,
.mfp-category-hero-card-play,
.mfp-pod-card-play,
.mfp-pod-ep-play-btn {
    background:
        radial-gradient(circle at 72% 30%, rgba(78, 229, 167, 0.25), transparent 34%),
        linear-gradient(145deg, rgba(5, 35, 65, 0.78), rgba(7, 17, 61, 0.74)) !important;
    border: 2px solid rgba(31, 191, 143, 0.7) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: 0 0 0 0 rgba(31, 191, 143, 0), inset 0 0 20px rgba(31, 191, 143, 0.15) !important;
    color: #fff !important;
}

.mfp-play-btn i,
.mfp-yt-play-btn i,
.mfp-thumb-play i i,
.mfp-category-play i,
.mfp-category-hero-card-play i,
.mfp-pod-card-play i,
.mfp-pod-ep-play-btn i {
    color: #fff !important;
}

.mfp-play-btn:hover,
.mfp-yt-play-btn:hover,
.mfp-pod-ep-play-btn:hover,
.mfp-thumb:hover .mfp-thumb-play i,
.mfp-category-thumb:hover .mfp-category-play i {
    border-color: #4ee5a7 !important;
    box-shadow:
        0 0 24px rgba(31, 191, 143, 0.55),
        0 0 48px rgba(31, 191, 143, 0.25),
        inset 0 0 20px rgba(31, 191, 143, 0.2) !important;
}

.mfp-strip-item.active::after,
.mfp-strip-progress-bar,
.mfp-section-title::before,
.mfp-pod-waveform span.mfp-pod-wave-bar--played {
    background: linear-gradient(90deg, #6fd73c 0%, #99f85b 100%) !important;
}

.mfp-programs-control:hover,
.mfp-see-all:hover,
.mfp-category-back:hover,
.mfp-pod-back:hover,
.mfp-page-btn:hover,
.mfp-page-btn.active,
.mfp-chat-toggle-btn:hover,
.mfp-yt-mute-btn:hover {
    background: rgba(153, 248, 91, 0.18) !important;
    border-color: rgba(153, 248, 91, 0.52) !important;
    color: #f7f7f4 !important;
    box-shadow: 0 0 24px rgba(153, 248, 91, 0.18);
}

.mfp-carousel-card:hover,
.mfp-program-card:hover,
.mfp-thumb:hover,
.mfp-category-thumb:hover,
.mfp-category-hero-card:hover,
.mfp-pod-card:hover {
    border-color: rgba(153, 248, 91, 0.38) !important;
    box-shadow: 0 22px 58px rgba(9, 10, 16, 0.38), 0 0 28px rgba(153, 248, 91, 0.14);
}

.mfp-section-line,
.mfp-programs-line {
    background: linear-gradient(to right, rgba(153, 248, 91, 0.44), rgba(255, 255, 255, 0.10), transparent) !important;
}

.mfp-pod-card-author,
.mfp-pod-ep-author,
.mfp-pod-episode--playing .mfp-pod-wave-time,
.mfp-pod-list-header h1 .fas,
.mfp-live-badge i {
    color: #99f85b !important;
}

.mfp-pod-waveform span.mfp-pod-wave-bar--played {
    box-shadow: 0 0 8px rgba(153, 248, 91, 0.36) !important;
}

.mfp-pod-episode:hover .mfp-pod-waveform,
.mfp-pod-episode--playing .mfp-pod-waveform {
    border-color: rgba(153, 248, 91, 0.28) !important;
}

