/**
 * News TV Showcase & Coverage Cuts - Scoped Frontend Styles
 * Styled to respect the brand identity of Brooklyn Emerge:
 * - Brand Red: #dd183b
 * - Brand Teal: #02c79e
 * - Typography: DM Sans / Playfair Display
 */

.news-tv-showcase-container {
    --news-tv-bg-dark: #0f172a;
    --news-tv-brand-red: #dd183b;
    --news-tv-brand-red-hover: #cc1939;
    --news-tv-brand-teal: #02c79e;
    --news-tv-brand-teal-glow: rgba(2, 199, 158, 0.4);
    --news-tv-brand-red-glow: rgba(221, 24, 59, 0.35);
    --news-tv-card-bg: rgba(30, 41, 59, 0.7);
    --news-tv-border-color: rgba(221, 24, 59, 0.25);
    --news-tv-text-primary: #f8fafc;
    --news-tv-text-secondary: #94a3b8;
    --news-tv-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    font-family: 'DM Sans', sans-serif;
    color: var(--news-tv-text-primary);
    background-color: var(--news-tv-bg-dark);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.news-tv-showcase-container * {
    box-sizing: border-box;
}

/* Ambient Ambient Glows within the container wrapper */
.news-tv-ambient-left {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(221, 24, 59, 0.05) 0%, rgba(0,0,0,0) 70%);
    top: -50px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

.news-tv-ambient-right {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 199, 158, 0.04) 0%, rgba(0,0,0,0) 70%);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

/* TV Screen Frame */
.news-tv-screen-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8),
                0 0 60px var(--news-tv-brand-red-glow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #080b11;
    aspect-ratio: 1 / 1;
    z-index: 10;
}

.news-tv-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Container inside TV bezel coordinates */
.news-tv-screen-overlay {
    position: absolute;
    left: 10.45%;
    top: 21.97%;
    width: 68.36%;
    height: 36.23%;
    background-color: #000;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.95);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-tv-screen-overlay iframe,
.news-tv-screen-overlay video {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* TV CRT Effects */
.news-tv-screen-crt-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.12) 50%
    );
    background-size: 100% 4px;
    opacity: 0.7;
}

/* Tuning overlay text */
.news-tv-tuning-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #090d16;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--news-tv-brand-teal);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-transform: uppercase;
}

.news-tv-tuning-overlay.active {
    opacity: 1;
}

/* Newspaper Clickable hotspots */
.news-tv-newspaper-hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 8;
    transition: var(--news-tv-transition);
}

.news-tv-newspaper-hotspot.news-tv-left-hotspot {
    left: 17%;
    top: 70%;
    width: 35%;
    height: 20%;
    transform: rotate(-4deg);
}

.news-tv-newspaper-hotspot.news-tv-right-hotspot {
    left: 63%;
    top: 64%;
    width: 33%;
    height: 15%;
    transform: rotate(3deg);
}

.news-tv-pulse-dot {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--news-tv-brand-teal);
    box-shadow: 0 0 0 var(--news-tv-brand-teal-glow);
    animation: news-tv-pulse-key 2s infinite;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.news-tv-newspaper-hotspot:hover .news-tv-pulse-dot {
    opacity: 0.1;
}

.news-tv-hotspot-label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--news-tv-border-color);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--news-tv-brand-teal);
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: var(--news-tv-transition);
}

.news-tv-newspaper-hotspot:hover .news-tv-hotspot-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.news-tv-newspaper-hotspot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 2px dashed rgba(2, 199, 158, 0);
    background: rgba(2, 199, 158, 0);
    transition: var(--news-tv-transition);
}

.news-tv-newspaper-hotspot:hover::after {
    border-color: rgba(2, 199, 158, 0.5);
    background: rgba(2, 199, 158, 0.08);
    box-shadow: 0 0 20px rgba(2, 199, 158, 0.1);
}

@keyframes news-tv-pulse-key {
    0% {
        box-shadow: 0 0 0 0 rgba(2, 199, 158, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(2, 199, 158, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(2, 199, 158, 0);
    }
}

/* Horizontal Channel Carousel */
.news-tv-carousel-section {
    width: 100%;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.news-tv-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}

.news-tv-carousel-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--news-tv-text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-tv-carousel-header h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--news-tv-brand-red);
    animation: news-tv-live-flash 1.5s infinite;
}

@keyframes news-tv-live-flash {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.news-tv-carousel-nav {
    display: flex;
    gap: 8px;
}

.news-tv-nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--news-tv-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    transition: var(--news-tv-transition);
}

.news-tv-nav-arrow:hover {
    background: var(--news-tv-brand-red);
    color: white;
    border-color: var(--news-tv-brand-red);
}

.news-tv-carousel-scrollable {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    display: flex;
    gap: 15px;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.news-tv-carousel-scrollable::-webkit-scrollbar {
    display: none;
}

.news-tv-channel-card {
    flex: 0 0 170px;
    height: 105px;
    background: var(--news-tv-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--news-tv-transition);
    padding: 10px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(8px);
}

.news-tv-channel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(221, 24, 59, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: var(--news-tv-transition);
}

.news-tv-channel-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(221, 24, 59, 0.4);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4),
                0 0 15px rgba(221, 24, 59, 0.05);
}

.news-tv-channel-card:hover::before {
    background: linear-gradient(135deg, var(--news-tv-brand-red), rgba(221, 24, 59, 0.1));
}

.news-tv-channel-card.active {
    background: rgba(221, 24, 59, 0.08);
    border-color: var(--news-tv-brand-red);
    box-shadow: 0 10px 25px rgba(221, 24, 59, 0.15);
}

.news-tv-channel-card.active::before {
    background: linear-gradient(135deg, var(--news-tv-brand-red), var(--news-tv-brand-red));
}

.news-tv-logo-container {
    max-width: 90%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-tv-logo-container svg,
.news-tv-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--news-tv-transition);
    fill: currentColor;
}

.news-tv-logo-container .channel-text-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--news-tv-text-secondary);
    transition: var(--news-tv-transition);
}

.news-tv-channel-card:hover .news-tv-logo-container svg,
.news-tv-channel-card:hover .news-tv-logo-container img,
.news-tv-channel-card.active .news-tv-logo-container svg,
.news-tv-channel-card.active .news-tv-logo-container img {
    opacity: 1;
}

.news-tv-channel-card:hover .news-tv-logo-container .channel-text-logo,
.news-tv-channel-card.active .news-tv-logo-container .channel-text-logo {
    color: white;
}

.news-tv-channel-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--news-tv-text-secondary);
    line-height: 1.3;
    letter-spacing: 0.5px;
    transition: var(--news-tv-transition);
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}

.news-tv-channel-card:hover .news-tv-channel-title,
.news-tv-channel-card.active .news-tv-channel-title {
    color: white;
}

/* Modal Overlay */
.news-tv-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-tv-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.news-tv-modal-container {
    width: 90%;
    max-width: 1100px;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 35px 85px rgba(0, 0, 0, 0.8),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 85vh;
}

.news-tv-modal-overlay.active .news-tv-modal-container {
    transform: scale(1) translateY(0);
}

.news-tv-modal-header {
    padding: 24px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0f172a;
}

.news-tv-modal-titles h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--news-tv-brand-red);
    font-weight: 700;
    margin: 0;
}

.news-tv-modal-titles p {
    font-size: 0.8rem;
    color: var(--news-tv-brand-teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 4px 0 0;
    font-weight: 700;
}

.news-tv-modal-close {
    background: none;
    border: none;
    color: var(--news-tv-text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--news-tv-transition);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1;
    padding: 0;
}

.news-tv-modal-close:hover {
    color: white;
    background: var(--news-tv-brand-red);
    border-color: var(--news-tv-brand-red);
    transform: rotate(90deg);
}

.news-tv-modal-content {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
    background-color: #1e293b;
}

/* Clippings Grid */
.news-tv-clippings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-tv-clipping-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--news-tv-transition);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.news-tv-clipping-card:hover {
    transform: translateY(-8px);
    border-color: var(--news-tv-brand-teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 15px rgba(2, 199, 158, 0.1);
}

.news-tv-clipping-img-wrapper {
    width: 100%;
    height: 210px;
    overflow: hidden;
    position: relative;
    background: #090d16;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.news-tv-clipping-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.05);
    transition: var(--news-tv-transition);
}

.news-tv-clipping-card:hover .news-tv-clipping-img {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1.1);
}

.news-tv-clipping-info {
    padding: 24px;
}

.news-tv-clipping-date {
    font-size: 0.75rem;
    color: var(--news-tv-brand-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.news-tv-clipping-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: white;
    line-height: 1.4;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.news-tv-clipping-desc {
    font-size: 0.85rem;
    color: var(--news-tv-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Lightbox zoom wrapper */
.news-tv-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.news-tv-lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.news-tv-lightbox-content {
    position: relative;
    width: 90%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-tv-lightbox-viewport {
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    padding: 10px;
    box-sizing: border-box;
}

.news-tv-lightbox-viewport::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.news-tv-lightbox-viewport::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.news-tv-lightbox-viewport::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.news-tv-lightbox-viewport::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

#newsTvLightboxImage {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: width 0.2s ease, max-width 0.2s ease, max-height 0.2s ease;
    user-select: none;
    -webkit-user-drag: none;
}

#newsTvLightboxImage.zoom-active {
    cursor: grab;
}

#newsTvLightboxImage.zoom-active:active {
    cursor: grabbing;
}

.news-tv-lightbox-caption {
    color: white;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    width: 100%;
}

.news-tv-lightbox-close {
    position: absolute;
    top: -55px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--news-tv-transition);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.news-tv-lightbox-close:hover {
    color: white;
    background: var(--news-tv-brand-red);
    transform: scale(1.05);
}

/* Responsiveness across all devices */
@media (max-width: 768px) {
    .news-tv-showcase-container {
        padding: 15px 10px;
        margin: 20px auto;
        border-radius: 12px;
    }
    
    .news-tv-carousel-header h4 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .news-tv-nav-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .news-tv-channel-card {
        flex: 0 0 140px;
        height: 90px;
        padding: 8px;
        border-radius: 10px;
        gap: 6px;
    }
    
    .news-tv-logo-container {
        height: 36px;
    }
    
    .news-tv-channel-title {
        font-size: 0.65rem;
        line-height: 1.2;
        max-height: 2.4em;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    /* Modal Spacing adjustments for mobile */
    .news-tv-modal-container {
        width: 95%;
        max-height: 90vh;
        border-radius: 14px;
    }
    
    .news-tv-modal-header {
        padding: 15px 20px;
    }
    
    .news-tv-modal-titles h4 {
        font-size: 1.25rem;
    }
    
    .news-tv-modal-titles p {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .news-tv-modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
    
    .news-tv-modal-content {
        padding: 15px;
    }
    
    .news-tv-clippings-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-tv-clipping-img-wrapper {
        height: 160px;
    }
    
    .news-tv-clipping-info {
        padding: 15px;
    }
    
    .news-tv-clipping-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .news-tv-clipping-desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    /* Touch target and hotspot adjustments */
    .news-tv-hotspot-label {
        font-size: 0.65rem;
        padding: 5px 10px;
        top: -35px;
    }

    .news-tv-pulse-dot {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .news-tv-channel-card {
        flex: 0 0 110px;
        height: 70px;
    }
    .news-tv-channel-title {
        display: none; /* Hide text on extremely narrow screens to show logo exclusively */
    }
    .news-tv-logo-container {
        height: 32px;
        max-width: 90%;
    }
}

/* Multi-Stream Switcher sub-navigation */
.news-tv-streams-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 20px auto 10px;
    width: 100%;
    max-width: 800px;
    flex-wrap: wrap;
    position: relative;
    z-index: 15;
}

.news-tv-stream-pill {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--news-tv-text-secondary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--news-tv-transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    outline: none;
}

.news-tv-stream-pill:hover {
    color: var(--news-tv-text-primary);
    border-color: var(--news-tv-brand-teal);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 4px 12px rgba(2, 199, 158, 0.15);
}

.news-tv-stream-pill.active {
    color: #fff;
    background: var(--news-tv-brand-teal);
    border-color: var(--news-tv-brand-teal);
    box-shadow: 0 4px 15px var(--news-tv-brand-teal-glow);
}

/* --- LIGHTBOX ZOOM & DRAG CONTROLS --- */
.news-tv-lightbox-controls {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000002;
    display: flex;
    gap: 12px;
    background: rgba(15, 23, 42, 0.85);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.news-tv-zoom-btn {
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 18px;
    padding: 4px 10px;
    font-weight: bold;
    transition: color 0.15s ease, transform 0.15s ease;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.news-tv-zoom-btn:hover {
    color: white;
    transform: scale(1.1);
}

#newsTvZoomPercent {
    color: var(--news-tv-brand-teal);
    font-size: 13px;
    font-weight: 700;
    min-width: 45px;
    text-align: center;
    font-family: monospace;
}

.news-tv-zoom-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.15);
    margin: 0 4px;
}

/* --- NO VIDEO RETRO STATIC DESK FEED --- */
.news-tv-no-video-screen {
    overflow: hidden;
}

.news-tv-static-noise {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image: repeating-radial-gradient(circle, #fff, #000 1px, #fff 2px);
    background-size: 8px 8px;
    animation: news-tv-static-shift 0.15s infinite linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes news-tv-static-shift {
    0% { background-position: 0 0; }
    100% { background-position: 8px 8px; }
}

/* --- RED HOTSPOT HIGHLIGHT WHEN NO VIDEO --- */
.news-tv-newspaper-hotspot.highlight-active .news-tv-pulse-dot {
    background: var(--news-tv-brand-red);
    box-shadow: 0 0 0 10px rgba(221, 24, 59, 0.4);
    animation: news-tv-pulse-red-highlight 1.5s infinite;
}

@keyframes news-tv-pulse-red-highlight {
    0% { box-shadow: 0 0 0 0 rgba(221, 24, 59, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(221, 24, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(221, 24, 59, 0); }
}
