/* Fullscreen popup */
#tv-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 999999;
    overflow: hidden;
}

/* Video fullscreen */
.tv-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}
.tv-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* LIVE badge */
.tv-live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: red;
    color: white;
    padding: 8px 14px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 20;
    animation: pulse 1s infinite;
}
@keyframes pulse {
    0%{transform: scale(1);}
    50%{transform: scale(1.2);}
    100%{transform: scale(1);}
}

/* Corner overlay to hide YouTube logo */
.tv-brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #000;
    z-index: 10;
}

/* Top-right logo */
.tv-logo-wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 6px;
    z-index: 25;
    animation: flash 2s infinite;
}
.tv-logo {
    width: 140px;
}
@keyframes flash {
    0%,100%{opacity:0.9;}
    50%{opacity:0.5;}
}

/* Remote UI */
.tv-remote {
    position: absolute;
    right: 20px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 30;
}
.tv-remote button {
    font-size: 22px;
    margin: 6px;
    padding: 10px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

/* Breaking news */
.tv-breaking {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    background: red;
    color: #fff;
    padding: 6px;
    z-index: 20;
	font-size: 25px;
}
.tv-breaking span {
    font-weight: bold;
    margin-right: 10px;
}

/* Responsive */
@media(max-width:768px){
    .tv-logo { width: 100px; }
    .tv-remote button { font-size: 18px; padding: 8px; }
    .tv-live-badge { font-size: 14px; padding: 4px 8px; }
    .tv-breaking { font-size: 14px; }
}
