body {
  overflow: hidden;
}

#karaoke {
  background: #000;
}

#screen {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#player {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  background: #000;
}
#player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#now-playing {
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 0.85rem;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  text-shadow: 0 1.5px 0 #000, 0 -1.5px 0 #000, 1.5px 0 0 #000, -1.5px 0 0 #000, -1.5px -1.5px 0 #000, 1.5px 1.5px 0 #000, 1.5px 1px 0 #000;
}

#screen[data-show-info] #now-playing {
  opacity: 1;
}

#guide {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.6);
}

#guide-header {
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem 0.25rem;
  opacity: 0.4;
  letter-spacing: 4px;
  text-align: center;
}

.program {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: background 0.15s;
  gap: 1rem;
}
.program:hover {
  background: rgba(255, 255, 255, 0.06);
}
.program[selected] {
  color: #ffff26;
  background: rgba(255, 255, 38, 0.06);
}
.program[selected] .ch {
  opacity: 1;
}
.program[selected] .tag {
  border-color: rgba(255, 255, 38, 0.4);
  opacity: 0.8;
}
.program .ch {
  font-size: 1.1rem;
  width: 3ch;
  text-align: right;
  flex-shrink: 0;
  opacity: 0.5;
}
.program .info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.program .title {
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.program .sub {
  font-size: 0.7rem;
  opacity: 0.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.program .tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  padding: 2px 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .program .tag {
    display: none;
  }
  .program .title {
    font-size: 0.85rem;
  }
}

/*# sourceMappingURL=watch.css.map */
