#etv-cable-app {
    background:#000;
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
    height:100vh;
    overflow:hidden;
}

.etv-screen {
    position:relative;
    height:100%;
}

#etv-cable-player {
    width:100%;
    height:100%;
    background:#000;
}

.etv-info {
    position:absolute;
    bottom:40px;
    left:40px;
    display:flex;
    align-items:center;
    gap:15px;
    background:rgba(0,0,0,0.6);
    padding:10px 15px;
    border-radius:8px;
    transition:opacity .3s;
}

.etv-info img { height:40px; }
.etv-info .live { color:red; font-weight:bold; }

.etv-channel-list {
    position:absolute;
    right:320px;
    top:0;
    width:260px;
    height:100%;
    background:#111;
    overflow:auto;
    display:none;
    padding:20px;
}

.etv-channel-list .ch {
    padding:10px;
    border-bottom:1px solid #222;
    cursor:pointer;
}

/* Chat */
.etv-chat {
    position:absolute;
    right:0;
    top:0;
    width:320px;
    height:100%;
    background:#0b0b0b;
    display:flex;
    flex-direction:column;
    border-left:1px solid #222;
    transition:width .3s;
}

.etv-chat.minimized {
    width:60px;
}

.etv-chat.minimized .etv-chat-messages,
.etv-chat.minimized .etv-chat-input {
    display:none;
}

.etv-chat-header {
    display:flex;
    justify-content:space-between;
    padding:10px;
    border-bottom:1px solid #222;
}

#etv-chat-toggle {
    background:none;
    color:white;
    border:none;
    cursor:pointer;
}

.etv-chat-messages {
    flex:1;
    overflow:auto;
    padding:15px;
    font-size:14px;
}

.etv-chat-messages .t {
    color:#888;
    font-size:11px;
    margin-left:5px;
}

.etv-chat-input {
    display:flex;
    border-top:1px solid #222;
}

.etv-chat-input input {
    flex:1;
    background:#111;
    color:#fff;
    border:none;
    padding:10px;
}

.etv-chat-input button {
    background:#e50914;
    color:#fff;
    border:none;
    padding:10px 15px;
    cursor:pointer;
}
