body{
background:#111;
color:white;
font-family:Arial;
}

.tv-container{
padding:20px;
}

#search{
width:100%;
padding:10px;
margin-bottom:15px;
}

.groups button{

background:#333;
color:white;
border:none;
padding:8px 12px;
margin:4px;
cursor:pointer;

}

.tv-grid{

display:grid;
grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
gap:15px;

}

.channel{

background:#1c1c1c;
padding:10px;
border-radius:8px;
text-align:center;
cursor:pointer;
position:relative;

}

.channel img{

max-width:80px;
height:50px;
object-fit:contain;

}

.title{

margin-top:6px;

}

.fav{

position:absolute;
top:5px;
right:5px;
background:none;
border:none;
color:gold;
font-size:18px;
cursor:pointer;

}

#overlay{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.95);
display:none;
align-items:center;
justify-content:center;
z-index:9999;

}

.player{

width:80%;
max-width:1000px;

}

video{

width:100%;
background:black;

}

#close{

position:absolute;
top:20px;
right:30px;
font-size:30px;
cursor:pointer;

}