body, html {
  margin: 0;
  padding: 0;
  background: black;
  overflow: hidden;
}

.tv-wrapper {
  width: 100vw;
  height: 100vh;
  position: relative;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.logo {
  position: absolute;
  top: 15px;
  left: 20px;
  background: red;
  color: white;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 5px;
  font-family: sans-serif;
}

.live {
  position: absolute;
  top: 15px;
  right: 20px;
  background: #e00;
  color: white;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 5px;
  font-family: sans-serif;
}

.clock {
  position: absolute;
  bottom: 10px;
  right: 20px;
  color: white;
  font-size: 22px;
  font-family: monospace;
}
