body{
background:#111;
font-family:Segoe UI,Tahoma,sans-serif;
}

#bb-layout{
display:grid;
grid-template-columns:160px 1fr 160px;
gap:20px;
max-width:1400px;
margin:auto;
padding:20px;
}

.bb-ad{
background:#222;
color:#888;
display:flex;
align-items:center;
justify-content:center;
height:600px;
font-size:14px;
}

#bb-center{
background:#000;
border:3px solid #444;
border-radius:10px;
overflow:hidden;
}

#bb-header{
background:#111;
color:#fff;
padding:15px;
font-size:24px;
text-align:center;
border-bottom:1px solid #333;
}

#bb-schedule{
height:500px;
overflow:hidden;
position:relative;
}

#bb-scroll{
position:absolute;
width:100%;
}

.bb-day{
background:#222;
color:#fff;
padding:10px;
font-weight:bold;
border-top:1px solid #444;
}

.bb-show{
display:grid;
grid-template-columns:80px 1fr;
padding:12px;
border-bottom:1px solid #333;
color:#ddd;
}

.bb-time{
color:#ff4444;
font-weight:bold;
}

.bb-show:hover{
background:#111;
}

#bb-bottom-ad{
max-width:1400px;
margin:10px auto;
background:#222;
color:#777;
text-align:center;
padding:15px;
}

.bb-live{
background:#220000;
border-left:4px solid red;
font-weight:bold;
}

/* ============================================================
   BumboBoom TV Frame
   Add to tv.css or your live page stylesheet
   ============================================================ */

.bb-tv-wrap {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

/* Video layer - sits behind everything, fills the wrap */
.bb-tv-screen {
    position: relative;
    width: 100%;
    z-index: 1;
}

.bb-tv-screen #bb-video,
.bb-tv-screen #bb-video iframe,
#bb-yt-iframe,
#bb-yt-iframe iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
    aspect-ratio: 16/9;
}

/* TV PNG floats on top of video */
.bb-tv-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    display: block;
}

.bb-past {
  opacity: 0.4;
}
@media (max-width: 768px) {
    #bb-layout {
        grid-template-columns: 1fr;
    }
    .bb-ad {
        display: none;
    }
    #bb-bottom-ad {
        display: none;
    }
}
@keyframes pulse {
    0%   { opacity: 1; }
    50%  { opacity: 0.6; }
    100% { opacity: 1; }
}