/* ==============================================
   NNTV — Frontend Stylesheet
   File: public/css/nntv.css
   ============================================== */

/* ---- CSS Variables ---- */
:root {
    --nntv-red: #DC3545;
    --nntv-blue: #0A1931;
    --nntv-gold: #FFC107;
    --nntv-dark: #050C1A;
    --nntv-light: #F8F9FA;
    --nntv-gray: #E9ECEF;
    --nntv-text-muted: #6C757D;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

/* ---- Base ---- */
body {
    font-family: var(--font-primary);
    background-color: var(--nntv-dark);
    color: #FFFFFF;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-display);
    font-weight: 700;
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--nntv-dark); }
::-webkit-scrollbar-thumb { background: var(--nntv-red); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #b21f2d; }

/* ---- Navbar ---- */
.navbar {
    background-color: rgba(5, 12, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(220, 53, 69, 0.2);
    transition: all 0.3s ease;
}
.navbar-brand { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.5px; }
.navbar-brand span { color: var(--nntv-red); }
.nav-link { font-weight: 600; color: rgba(255,255,255,0.8) !important; transition: color 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--nntv-red) !important; }
.live-btn {
    background-color: var(--nntv-red);
    border: none;
    color: white;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(220,53,69,0.5);
    transition: all 0.3s;
}
.live-btn:hover {
    background-color: #b21f2d;
    box-shadow: 0 0 25px rgba(220,53,69,0.8);
    transform: scale(1.05);
    color: white;
}

/* ---- Hero Section ---- */
.hero-section {
    padding: 120px 0 60px;
    background: radial-gradient(circle at top right, rgba(220,53,69,0.15), transparent 60%);
}
.page-heading { position: relative; overflow: hidden; padding: 116px 0 58px; text-align: left; background: var(--nntv-dark); }
.page-heading::after { display: none; }
.page-heading .container { position: relative; z-index: 1; }
.page-heading h1 { margin: 10px 0 0; color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.1; letter-spacing: -.04em; }
.page-heading h1 span { color: var(--nntv-red); }
.page-heading p { max-width: 650px; margin: 0; color: rgba(255,255,255,.65); line-height: 1.7; }
.home-section-heading { position: relative; max-width: 650px; margin: 0 0 42px; text-align: left; }
.home-section-heading h2 { margin: 10px 0 14px; color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -.04em; }
.home-section-heading h2 span { color: var(--nntv-red); }
.home-section-heading p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.7; }
.video-container {
    position: relative;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    aspect-ratio: 16/9;
}
.video-placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}
.hero-video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: auto;
}
.hero-video-shell { position: absolute; inset: 0; }
.hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.62);
}
.hero-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding: 0;
    color: #fff;
    font-weight: 800;
    background: var(--nntv-red);
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(0,0,0,.38);
    transform: translate(-50%, -50%);
    transition: transform .2s, background .2s, opacity .2s;
    pointer-events: auto;
}
.hero-video-play:hover { background: #b21f2d; transform: translate(-50%, -50%) scale(1.05); }
.hero-video-play i { margin-left: 3px; }
.hero-video-shell:not(.is-playing) .hero-video-frame { visibility: hidden; }
.hero-video-shell.is-playing .hero-poster,
.hero-video-shell.is-playing .hero-video-play { opacity: 0; pointer-events: none; }
.video-container.hero-video-playing .video-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 50%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}
.video-overlay a,
.video-overlay button {
    pointer-events: auto;
}
.hero-copy {
    width: min(100%, 760px);
    margin-inline: auto;
    padding-inline: 12px;
}
.hero-title {
    font-size: clamp(1.15rem, 2.6vw, 2rem);
    overflow-wrap: anywhere;
}
.hero-description {
    max-width: 680px;
    margin: 0 auto;
    font-size: clamp(.8rem, 1.5vw, 1rem);
    overflow-wrap: anywhere;
}
.badge-live {
    background-color: var(--nntv-red);
    color: white;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%   { opacity:1; box-shadow:0 0 0 0 rgba(220,53,69,0.7); }
    70%  { opacity:0.9; box-shadow:0 0 0 10px rgba(220,53,69,0); }
    100% { opacity:1; box-shadow:0 0 0 0 rgba(220,53,69,0); }
}
.video-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}
.control-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.2s;
}
.control-btn:hover { transform: scale(1.1); color: var(--nntv-red); }

@media (max-width: 767px) {
    .hero-section { padding-top: 96px; }
    .video-container { border-radius: 12px; }
    .video-overlay { padding: 12px; }
    .badge-live { padding: 5px 8px; font-size: .62rem; letter-spacing: .5px; }
    .video-overlay > .badge { font-size: .62rem; }
    .hero-title { margin-top: 8px !important; margin-bottom: 4px; font-size: 1rem; line-height: 1.2; }
    .hero-description { display: -webkit-box; margin-bottom: 0; overflow: hidden; font-size: .72rem; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
    .video-controls { font-size: .7rem; }
    .control-btn { font-size: .9rem; }
}

/* ---- Now Playing Ticker ---- */
.ticker-section {
    background-color: #0b1528;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ticker-badge {
    background-color: rgba(220,53,69,0.2);
    color: var(--nntv-red);
    font-weight: 800;
    border: 1px solid var(--nntv-red);
    border-radius: 4px;
    padding: 4px 10px;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: inline-block;
}

/* ---- Section Headings ---- */
.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}
.section-title h2 {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    position: relative;
    display: inline-block;
}
.section-title h2 span { color: var(--nntv-red); }
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--nntv-red);
    border-radius: 2px;
}

/* ---- News Cards ---- */
.card-custom {
    background-color: #0b1528;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    height: 100%;
}
.card-custom:hover {
    transform: translateY(-8px);
    border-color: rgba(220,53,69,0.4);
    box-shadow: 0 15px 30px rgba(220,53,69,0.1);
}
.news-badge {
    position: absolute;
    top: 15px; left: 15px;
    background-color: var(--nntv-red);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}
.news-img { height: 220px; object-fit: cover; width: 100%; }
.news-story-card { overflow: hidden; color: #fff; background: linear-gradient(145deg, #132541 0%, #071225 100%); border: 1px solid rgba(255,255,255,.12); border-radius: 5px; box-shadow: 0 18px 40px rgba(0,0,0,.25), inset 0 1px rgba(255,255,255,.08); transition: transform .25s, border-color .25s, box-shadow .25s; }
.news-story-card:hover { border-color: rgba(255,100,125,.7); transform: translateY(-7px); box-shadow: 0 25px 48px rgba(0,0,0,.38), 0 0 0 1px rgba(255,100,125,.1); }
.news-story-media { position: relative; display: block; height: 220px; overflow: hidden; background: #101d38; }
.news-story-media::after { position: absolute; inset: 0; content: ''; background: linear-gradient(180deg, transparent 48%, rgba(5,12,26,.8) 100%); }
.news-story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-story-card:hover .news-story-media img { transform: scale(1.06); }
.news-story-overlay { position: absolute; right: 17px; bottom: 16px; z-index: 1; display: grid; width: 39px; height: 39px; place-items: center; color: #fff; background: var(--nntv-red); border-radius: 50%; box-shadow: 0 7px 18px rgba(220,20,60,.35); }
.news-story-badge { position: absolute; top: 16px; left: 16px; z-index: 1; padding: 6px 9px; color: #fff; background: var(--nntv-red); border-radius: 3px; font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.news-story-badge--gold { color: #17110a; background: #f4c15d; }
.news-story-badge--dark { background: rgba(5,12,26,.8); }
.news-story-body { padding: 21px; }
.news-story-meta { display: flex; justify-content: space-between; gap: 10px; color: rgba(255,255,255,.5); font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.news-story-body h3 { margin: 12px 0 10px; font-size: 1.12rem; line-height: 1.35; }
.news-story-body h3 a { color: #fff; text-decoration: none; }
.news-story-body h3 a:hover { color: #ff647d; }
.news-story-body p { min-height: 45px; margin-bottom: 16px; color: rgba(255,255,255,.62); font-size: .85rem; line-height: 1.6; }
.news-story-link { color: #ff647d; font-size: .76rem; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .05em; }
.news-story-link:hover { color: #fff; }
.article-detail-page { min-height: 700px; padding: 135px 0 100px; color: #fff; background: #050c1a; }
.article-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 70px; margin-top: 38px; }
.article-detail-meta { display: flex; flex-wrap: wrap; gap: 16px; color: #ff647d; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-detail-page h1 { max-width: 900px; margin: 18px 0; color: #fff; font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -.05em; line-height: 1.02; }
.article-detail-lead { max-width: 800px; color: rgba(255,255,255,.68); font-size: 1.12rem; line-height: 1.7; }
.article-detail-image { width: 100%; max-height: 520px; margin: 30px 0; object-fit: cover; border-radius: 6px; }
.article-detail-content { color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.9; }
.article-detail-content h2, .article-detail-content h3 { margin-top: 30px; color: #fff; }
.article-detail-content img { max-width: 100%; height: auto; }
.article-detail-layout aside { align-self: start; padding: 23px; background: #101d38; border: 1px solid rgba(255,255,255,.1); border-radius: 5px; }
.article-detail-layout aside h2 { margin: 8px 0 20px; color: #fff; }
.article-detail-layout aside h2 span { color: var(--nntv-red); }
.article-related-list { display: flex; flex-direction: column; }
.article-related-list a { display: flex; flex-direction: column; gap: 7px; padding: 14px 0; color: #fff; border-top: 1px solid rgba(255,255,255,.1); text-decoration: none; }
.article-related-list a:hover { color: #ff647d; }
.article-related-list small { color: rgba(255,255,255,.45); }

/* ---- Programme Schedule ---- */
.schedule-section { padding: 116px 0 100px; background: var(--nntv-dark); }
.schedule-heading { max-width: 650px; margin: 0 0 38px; text-align: left; }
.schedule-heading h2 { margin: 10px 0 14px; color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -.04em; }
.schedule-heading h2 span { color: var(--nntv-red); }
.schedule-heading p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.7; }
.schedule-tabs { justify-content: center; gap: 8px; margin-bottom: 28px; }
.schedule-tabs .nav-link {
    min-width: 120px;
    padding: 11px 22px;
    color: rgba(255,255,255,.72) !important;
    background: #0b1528;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    transition: all .25s;
}
.schedule-tabs .nav-link:hover { color: #fff !important; border-color: rgba(220,53,69,.6) !important; }
.schedule-tabs .nav-link.active { color: #fff !important; background: var(--nntv-red) !important; border-color: var(--nntv-red) !important; box-shadow: 0 8px 20px rgba(220,53,69,.25); }
.schedule-content { max-width: 920px; margin: 0 auto; }
.schedule-day-heading { margin: 28px 0 14px; color: #ff637d; font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.schedule-row {
    position: relative;
    margin-bottom: 12px;
    padding: 20px 22px 20px 26px;
    background: linear-gradient(135deg, #0b1528 0%, #060e1d 100%);
    border: 1px solid rgba(255,255,255,.07);
    border-left: 3px solid var(--nntv-red);
    border-radius: 12px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.schedule-row:hover { transform: translateY(-3px); border-color: rgba(220,53,69,.45); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
.schedule-time {
    min-width: 132px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--nntv-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}
.schedule-program { color: #fff; font-size: 1.05rem; }
.schedule-content-type { display: inline-block; margin-left: 6px; padding: 3px 6px; color: #ff8291; background: rgba(220,53,69,.12); border-radius: 4px; font-size: .58rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; vertical-align: middle; }
.schedule-description { color: rgba(255,255,255,.56); font-size: .82rem; }
.schedule-duration { display: inline-block; padding: 4px 8px; color: rgba(255,255,255,.55); background: rgba(255,255,255,.07); border-radius: 4px; font-size: .68rem; }
.schedule-duration--date { color: #ffd76a; background: rgba(255,193,7,.12); }
.schedule-status { display: inline-block; min-width: 72px; padding: 7px 10px; color: #fff; border-radius: 5px; font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-align: center; }
.schedule-status--live { background: rgba(220,53,69,.2); color: #ff8291; }
.schedule-status--prime { background: rgba(255,193,7,.15); color: #ffd76a; }
.schedule-status--repeat, .schedule-status--monthly, .schedule-status--default { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.schedule-empty { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 54px 20px; color: rgba(255,255,255,.5); background: #0b1528; border: 1px dashed rgba(255,255,255,.14); border-radius: 12px; text-align: center; }
.schedule-empty i { color: var(--nntv-red); font-size: 2rem; opacity: .8; }

/* ---- Pricing Cards ---- */
#pricingTypes .nav-link {
    color: rgba(255,255,255,0.8) !important;
    background-color: transparent;
    border: 2px solid rgba(220,53,69,0.5) !important;
    transition: all 0.3s;
}
#pricingTypes .nav-link:hover {
    color: white !important;
    border-color: var(--nntv-red) !important;
    background-color: rgba(220,53,69,0.1);
}
#pricingTypes .nav-link.active {
    background-color: var(--nntv-red) !important;
    color: white !important;
    border-color: var(--nntv-red) !important;
    box-shadow: 0 8px 20px rgba(220,53,69,0.4);
}
.price-card {
    background-color: #0b1528;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.price-card.featured {
    border: 2px solid var(--nntv-red);
    box-shadow: 0 15px 35px rgba(220,53,69,0.15);
}
.price-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 15px; right: -30px;
    background-color: var(--nntv-red);
    color: white;
    font-weight: 800;
    font-size: 0.65rem;
    padding: 6px 30px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}
.price-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.price-amount { font-size: 3rem; font-weight: 800; color: white; margin: 20px 0; }
.price-amount span { font-size: 1rem; color: var(--nntv-text-muted); font-weight: 500; }
.price-btn {
    background-color: transparent;
    border: 2px solid var(--nntv-red);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 30px;
    width: 100%;
    transition: all 0.3s;
}
.price-btn:hover,
.price-card.featured .price-btn {
    background-color: var(--nntv-red);
    color: white;
    box-shadow: 0 5px 15px rgba(220,53,69,0.4);
}

/* ---- Contact / Calculator Panels ---- */
.calculator-panel {
    background: linear-gradient(135deg, #0b1528 0%, #050c1a 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
}
.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    height: 100%;
    min-height: 350px;
}
.form-control-dark {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 8px;
    padding: 12px 16px;
}
.form-control-dark:focus {
    background-color: rgba(255,255,255,0.08);
    border-color: var(--nntv-red);
    box-shadow: 0 0 10px rgba(220,53,69,0.25);
    color: white;
}
.form-label-custom { font-weight: 600; margin-bottom: 8px; color: rgba(255,255,255,0.8); }

/* ---- Footer ---- */
footer {
    background-color: #030811;
    border-top: 2px solid rgba(220,53,69,0.2);
    padding: 80px 0 30px;
    color: #C1C6CD;
}
footer a { color: #C1C6CD; text-decoration: none; transition: color 0.3s; }
footer a:hover { color: var(--nntv-red); }
.footer-logo { font-size: 1.8rem; font-weight: 800; color: white; }
.footer-logo span { color: var(--nntv-red); }

/* =====================
   PROGRAMMES & EPISODES
===================== */
.programme-hero { position: relative; overflow: hidden; padding: 150px 0 92px; background: radial-gradient(circle at 80% 20%, rgba(220,20,60,.18), transparent 30%), linear-gradient(120deg, #050c1a 0%, #101d38 100%); }
.programme-simple-heading { padding: 150px 0 72px; }
.programme-simple-heading h1 { position: relative; z-index: 1; margin: 0; color: #fff; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -.06em; }
.programme-hero::after { content: ''; position: absolute; width: 520px; height: 520px; right: -180px; bottom: -300px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.programme-kicker, .eyebrow { display: inline-block; color: #ff637d; font-size: .73rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.programme-hero h1 { position: relative; z-index: 1; color: #fff; font-size: clamp(2.7rem, 6vw, 5.6rem); font-weight: 800; line-height: .98; letter-spacing: -.06em; margin: 22px 0; }
.programme-hero h1 span, .section-heading-row h2 span { color: var(--nntv-red); }
.programme-hero p { max-width: 520px; color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.7; }
.programme-primary { background: var(--nntv-red); color: #fff; border-radius: 7px; padding: 13px 20px; font-weight: 700; }
.programme-primary:hover { color: #fff; background: #bd1034; }
.programme-ghost { color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 7px; padding: 13px 20px; font-weight: 700; }
.programme-ghost:hover { color: #fff; border-color: #fff; }
.programme-signal-card { position: relative; z-index: 1; min-height: 210px; padding: 28px; overflow: hidden; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; color: #fff; backdrop-filter: blur(8px); }
.programme-signal-card span { color: #ff637d; font-size: .7rem; font-weight: 800; letter-spacing: .15em; }
.programme-signal-card strong { display: block; margin-top: 35px; font-size: 1.45rem; line-height: 1.15; }
.signal-dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; background: #ff4261; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,66,97,.14); }
.signal-icon { position: absolute; right: 25px; bottom: 22px; color: rgba(255,255,255,.12); font-size: 4.5rem; }
.featured-episode-wrap { padding: 70px 0 20px; background: #f6f7fa; }
.featured-episode { display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; min-height: 355px; background: #fff; border-radius: 16px; box-shadow: 0 20px 55px rgba(5,12,26,.12); }
.featured-media { position: relative; min-height: 355px; background-position: center; background-size: cover; }
.featured-label { position: absolute; top: 24px; left: 24px; padding: 7px 10px; color: #fff; background: var(--nntv-red); border-radius: 4px; font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.play-button, .thumb-play { display: grid; place-items: center; color: #fff; background: var(--nntv-red); border-radius: 50%; box-shadow: 0 8px 22px rgba(220,20,60,.35); }
.play-button { position: absolute; inset: 0; width: 68px; height: 68px; margin: auto; font-size: 1.2rem; }
.play-button:hover, .thumb-play:hover { color: #fff; transform: scale(1.06); }
.featured-copy { padding: 48px; align-self: center; }
.featured-copy h2 { color: var(--nntv-dark); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.1; margin: 15px 0; }
.featured-copy p { color: #6a7180; line-height: 1.7; }
.episode-meta { display: flex; gap: 20px; color: #858b98; font-size: .76rem; font-weight: 700; margin: 20px 0; text-transform: uppercase; }
.text-link { color: var(--nntv-red); font-weight: 800; text-decoration: none; }
.episodes-section { padding: 75px 0 90px; background: #f6f7fa; }
.programmes-list-section { position: relative; overflow: hidden; background: var(--nntv-dark); }
.programmes-list-section::before { position: absolute; top: 0; left: 8%; width: 84%; height: 1px; content: ''; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); }
.programmes-list-section .section-heading-row h2 { color: #fff; }
.programmes-list-section .programme-card { background: #0b0b0d; border-color: rgba(255,255,255,.12); box-shadow: 0 16px 35px rgba(0,0,0,.35); }
.programmes-list-section .programme-card h3 a { color: #fff; }
.programmes-list-section .programme-card h3 a:hover { color: #ff647d; }
.programmes-list-section .programme-card-description { color: rgba(255,255,255,.62); }
.programmes-list-section .episode-date { color: rgba(255,255,255,.5); }
.section-heading-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; margin-bottom: 30px; }
.section-heading-row h2 { color: var(--nntv-dark); font-size: 2.5rem; letter-spacing: -.04em; margin: 8px 0 0; }
.category-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: end; }
.category-chip { padding: 8px 14px; color: #697080; background: transparent; border: 1px solid #dfe3e9; border-radius: 100px; font-size: .75rem; font-weight: 700; }
.category-chip:hover, .category-chip.active { color: #fff; background: var(--nntv-red); border-color: var(--nntv-red); }
.episode-card { overflow: hidden; height: 100%; background: #fff; border: 1px solid #e8ebf0; border-radius: 12px; transition: transform .25s, box-shadow .25s; }
.episode-card:hover { transform: translateY(-5px); box-shadow: 0 16px 35px rgba(5,12,26,.12); }
.episode-thumb { position: relative; display: block; height: 205px; overflow: hidden; background: #15213a; }
.episode-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.episode-card:hover .episode-thumb img { transform: scale(1.05); }
.thumb-play { position: absolute; right: 16px; bottom: 16px; width: 40px; height: 40px; font-size: .8rem; }
.episode-tag { position: absolute; top: 14px; left: 14px; padding: 5px 8px; color: #fff; background: rgba(5,12,26,.78); border-radius: 4px; font-size: .65rem; font-weight: 800; }
.episode-card-body { padding: 20px; }
.episode-category { color: var(--nntv-red); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.episode-card h3 { margin: 8px 0 18px; font-size: 1.1rem; line-height: 1.35; }
.episode-card h3 a { color: var(--nntv-dark); text-decoration: none; }
.episode-card h3 a:hover { color: var(--nntv-red); }
.episode-date { color: #8a919e; }
.programme-card-description { min-height: 44px; color: #6a7180; font-size: .86rem; line-height: 1.55; }
.programme-category-card { position: relative; display: block; min-height: 245px; padding: 27px 27px 24px; overflow: hidden; color: #fff; background: var(--nntv-dark); border: 1px solid rgba(255,255,255,.15); border-radius: 5px; box-shadow: 0 18px 40px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.08); transition: transform .25s, box-shadow .25s, border-color .25s; text-decoration: none; }
.programme-category-card::before { position: absolute; top: 0; right: 0; width: 45%; height: 4px; content: ''; background: var(--nntv-red); }
.programme-category-card::after { position: absolute; right: -35px; bottom: -65px; width: 170px; height: 170px; content: ''; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 18px rgba(255,255,255,.025), 0 0 0 38px rgba(255,255,255,.018); }
.programme-category-card:hover { color: #fff; border-color: rgba(255,100,125,.7); transform: translateY(-7px); box-shadow: 0 24px 48px rgba(0,0,0,.38), 0 0 0 1px rgba(255,100,125,.12); }
.programme-category-number { position: absolute; top: 21px; right: 24px; color: rgba(255,255,255,.35); font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700; }
.programme-category-icon { display: grid; width: 48px; height: 48px; margin-bottom: 33px; place-items: center; color: #fff; background: var(--nntv-red); border-radius: 4px; box-shadow: 0 8px 18px rgba(220,20,60,.28); }
.programme-category-card-body { min-width: 0; }
.programme-category-kicker { color: #ff647d; font-size: .62rem; font-weight: 800; letter-spacing: .16em; }
.programme-category-card h3 { margin: 8px 0 6px; color: #fff; font-size: 1.4rem; }
.programme-category-card p { margin-bottom: 13px; color: rgba(255,255,255,.62); font-size: .86rem; }
.programme-category-list { display: flex; flex-direction: column; gap: 7px; color: rgba(255,255,255,.78); font-size: .82rem; }
.programme-category-list span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.programme-category-list i { width: 17px; color: #ff647d; font-size: .65rem; }
.programme-category-card .text-link { color: #fff; font-size: .78rem; }
.programme-category-arrow { position: absolute; right: 24px; bottom: 23px; z-index: 1; color: #ff647d; font-size: .85rem; }
.programme-category-hero { padding: 145px 0 75px; color: #fff; background: linear-gradient(120deg, #050c1a 0%, #101d38 100%); }
.programme-category-hero h1 { margin: 20px 0 14px; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; letter-spacing: -.06em; line-height: .98; }
.programme-category-hero h1 span { color: #ff647d; }
.programme-category-hero p { color: rgba(255,255,255,.68); line-height: 1.7; }
.programme-detail-hero { padding: 125px 0 28px; color: #fff; background: var(--nntv-dark); }
.programme-detail-hero h1 { margin: 10px 0 12px; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.04em; }
.programme-detail-hero p { max-width: 680px; margin: 0; color: rgba(255,255,255,.68); line-height: 1.7; }
.programme-back-link { color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 700; text-decoration: none; }
.programme-back-link:hover { color: #fff; }
.programme-detail-meta { display: inline-block; padding: 10px 14px; color: #ffd76a; background: rgba(255,193,7,.12); border: 1px solid rgba(255,193,7,.2); border-radius: 6px; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.programme-detail-section { min-height: 520px; padding: 28px 0 100px; background: var(--nntv-dark); }
.programme-watch-page { min-height: 780px; padding: 135px 0 100px; color: #fff; background: #050c1a; }
.programme-watch-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin: 38px 0 30px; }
.programme-watch-heading h1 { margin: 15px 0 10px; color: #fff; font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 800; letter-spacing: -.05em; }
.programme-watch-heading p { max-width: 650px; margin: 0; color: rgba(255,255,255,.65); line-height: 1.7; }
.programme-watch-live { flex: 0 0 auto; padding: 10px 14px; color: #ff647d; border: 1px solid rgba(255,100,125,.35); border-radius: 4px; font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.programme-watch-layout { display: grid; grid-template-columns: minmax(0, 1fr) 285px; gap: 28px; align-items: start; }
.programme-watch-player { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: #000; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; box-shadow: 0 24px 55px rgba(0,0,0,.4); }
.programme-watch-player iframe, .programme-watch-player video { width: 100%; height: 100%; border: 0; }
.programme-watch-player video { object-fit: contain; }
.programme-watch-empty { display: grid; height: 100%; padding: 30px; place-content: center; text-align: center; }
.programme-watch-empty i { margin-bottom: 16px; color: #ff647d; font-size: 2.5rem; }
.programme-watch-empty h3 { color: #fff; }
.programme-watch-empty p { color: rgba(255,255,255,.58); }
.programme-watch-info { padding: 24px; background: #101d38; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; box-shadow: 0 18px 40px rgba(0,0,0,.25); }
.programme-watch-info h2 { margin: 10px 0; color: #fff; font-size: 1.35rem; }
.programme-watch-info p { color: rgba(255,255,255,.62); font-size: .88rem; line-height: 1.65; }
.programme-watch-info > div { margin-top: 12px; color: rgba(255,255,255,.72); font-size: .82rem; }
.programme-watch-category { display: inline-block; color: #ff647d; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.programme-player-wrap { overflow: hidden; aspect-ratio: 16 / 9; background: #050c1a; border-radius: 14px; box-shadow: 0 18px 45px rgba(5,12,26,.18); }
.programme-player-wrap iframe { width: 100%; height: 100%; border: 0; }
.programme-player-copy { padding: 26px 4px 0; }
.programme-player-copy h2 { margin: 8px 0 10px; color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.programme-player-copy p { max-width: 700px; color: rgba(255,255,255,.62); line-height: 1.7; }
.episode-options-card { overflow: hidden; background: #0b0b0d; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; box-shadow: 0 14px 35px rgba(0,0,0,.3); }
.episode-options-heading { padding: 22px 22px 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.episode-options-heading h3 { margin: 7px 0 0; color: #fff; }
.episode-options-list { max-height: 560px; overflow-y: auto; padding: 8px; }
.episode-option { display: flex; width: 100%; gap: 12px; padding: 10px; color: #fff; text-align: left; background: transparent; border: 0; border-radius: 9px; transition: background .2s; }
.episode-option:hover, .episode-option.active { color: #fff; background: #1a1a1d; }
.episode-option.active { box-shadow: inset 3px 0 var(--nntv-red); }
.episode-option-thumb { position: relative; flex: 0 0 92px; height: 56px; overflow: hidden; background: #15213a; border-radius: 6px; }
.episode-option-thumb img { width: 100%; height: 100%; object-fit: cover; }
.episode-option-thumb i { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(5,12,26,.3); font-size: .8rem; }
.episode-option-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; gap: 5px; }
.episode-option-copy strong { overflow: hidden; font-size: .84rem; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.episode-option-copy small { color: #8a919e; font-size: .72rem; }
.programme-detail-section .empty-episodes { color: rgba(255,255,255,.65); background: #0b0b0d; border-color: rgba(255,255,255,.14); }
.programme-detail-section .empty-episodes h3 { color: #fff; }
.programme-detail-empty { max-width: 700px; margin: 0 auto; }
.empty-episodes { padding: 60px 20px; color: #7c8492; text-align: center; background: #fff; border: 1px dashed #dfe3e9; border-radius: 12px; }
.empty-episodes i { color: var(--nntv-red); font-size: 2.3rem; margin-bottom: 15px; }
@media (max-width: 767px) { .featured-episode { display: block; } .featured-media { min-height: 235px; } .featured-copy { padding: 30px 24px; } .section-heading-row { display: block; } .category-chips { justify-content: start; margin-top: 20px; } .schedule-section { padding: 70px 0 78px; } .schedule-tabs .nav-link { min-width: 0; padding: 10px 14px; } .schedule-time { min-width: 0; font-size: .98rem; } .schedule-row { padding: 18px; } .article-detail-layout { display: block; } .article-detail-layout aside { margin-top: 45px; } .article-detail-page { padding-top: 110px; } .programme-watch-heading { display: block; } .programme-watch-live { display: inline-block; margin-top: 20px; } .programme-watch-layout { display: block; } .programme-watch-info { margin-top: 22px; } .programme-watch-page { padding-top: 110px; } }
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
    color: white;
}
.social-icon:hover {
    background-color: var(--nntv-red);
    color: white;
    transform: translateY(-3px);
}

/* ---- Misc / Utilities ---- */
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
