.nltv-wrapper-flex { display: flex; flex-direction: column; width: 100%; background: #000; font-family: 'Roboto Condensed', sans-serif; color: #fff; }
.nltv-video-section { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }

/* Ad Responsive Resizing */
.nltv-ad-overlay { position: absolute; bottom: 30px; z-index: 1000; opacity: 0; transform: translateY(30px); transition: all 0.8s ease; width: var(--w-desktop); }
@media (max-width: 768px) { .nltv-ad-overlay { width: var(--w-mobile); } }
.nltv-ad-overlay.nltv-visible { opacity: 1; transform: translateY(0); }
.nltv-ad-overlay img { width: 100%; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,0.8); }
.nltv-ad-label { position: absolute; top: 0; right: 0; background: rgba(0,0,0,0.7); color: #fff; font-size: 8px; padding: 2px 5px; font-weight: bold; border-bottom-left-radius: 4px; }
.nltv-ad-pos-left { left: 30px; }
.nltv-ad-pos-center { left: 50%; transform: translateX(-50%) translateY(30px); }
.nltv-ad-pos-center.nltv-visible { transform: translateX(-50%) translateY(0); }
.nltv-ad-pos-right { right: 30px; }

/* Logo Fixed Visibility */
.nltv-logo-overlay { position: absolute; top: 15px; z-index: 99; pointer-events: none; width: var(--w-desktop); height: var(--h-desktop); }
.nltv-logo-overlay img { width: 100%; height: 100%; object-fit: contain; }
.nltv-pos-left-desktop { left: 30px; }
.nltv-pos-right-desktop { right: 30px; }

/* Clock Overlay (Bottom Left Inside Video Area) */
.nltv-clock-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 8px 15px;
    border-radius: 6px;
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 3000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.nltv-clock-icon-box { background: #000; padding: 6px; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.nltv-clock-text-box { display: flex; flex-direction: column; align-items: flex-start; }
.nltv-time-display { font-size: 18px; font-weight: 900; color: #000; line-height: 1; margin-bottom: 2px; }
.nltv-date-display { font-size: 10px; font-weight: bold; color: rgba(0,0,0,0.6); line-height: 1; text-transform: uppercase; letter-spacing: 0.5px; }

/* Unmute UI */
.nltv-unmute-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3500; background: #b40000; border: 2px solid #fff; color: #fff; padding: 18px 36px; border-radius: 50px; cursor: pointer; display: flex; align-items: center; gap: 15px; font-weight: 900; box-shadow: 0 0 50px rgba(180,0,0,0.6); animation: nltv-pulse 2s infinite; font-size: 16px; }

/* Ticker Styles */
.nltv-ticker-container { position: relative; width: 100%; }
.nltv-ticker { position: relative; width: 100%; height: 48px; display: flex; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); overflow: hidden; }
.nltv-ticker-1 { background: #ca0000 ; }
.nltv-ticker-2 { background: #1a1a1a; }
.nltv-ticker-label { background: #000; padding: 0 25px; height: 100%; display: flex; align-items: center; font-weight: 900; font-size: 15px; z-index: 10; white-space: nowrap; border-right: 2px solid rgba(255,255,255,0.1);    width: 100px; }
.nltv-label-alt { background: #ffcc00; color: #000; }
.nltv-ticker-scroll { flex: 1; overflow: hidden; white-space: nowrap; }
.nltv-ticker-content { display: inline-block; animation: nltv-marquee 35s linear infinite; }
.nltv-anim-slow { animation-duration: 55s; }
.nltv-ticker-item { display: inline-flex; align-items: center; margin-right: 80px; font-size: 18px; font-weight: 700; }
.nltv-icon { width: 24px; height: 24px; margin-right: 15px; object-fit: contain; }

@keyframes nltv-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes nltv-pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); } 70% { box-shadow: 0 0 0 25px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

@media (max-width: 768px) {
    .nltv-ticker { height: 40px; }
    .nltv-ticker-item { font-size: 14px; margin-right: 40px; }
    .nltv-ticker-label { padding: 0 15px; font-size: 12px; }
    .nltv-clock-overlay { bottom: 10px; left: 10px; padding: 5px 10px; gap: 8px; }
    .nltv-time-display { font-size: 14px; }
    .nltv-date-display { font-size: 9px; }
    /* NEW: Use mobile variables for logo dimensions */
    .nltv-logo-overlay { 
        top: 10px; 
        width: var(--w-mobile, 100px); 
        height: var(--h-mobile, 40px); 
    }
}
