/* base page */
body {
  margin: 0;
  background: black;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* fullscreen video */
iframe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

/* LIVE badge */
#liveBadge {
  position: fixed;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.55);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;

  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

#liveBadge.visible {
  opacity: 1;
}

/* viewer count */
#viewerCount {
  position: fixed;
  top: 48px;
  left: 14px;
  background: rgba(0,0,0,0.55);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;

  opacity: 0;
  transition: opacity 0.6s ease;
}

#viewerCount.visible {
  opacity: 1;
}

/* sound toggle button */
#soundToggle {
  position: fixed;
  bottom: 20px;
  right: 20px;

  background: rgba(0,0,0,0.75);
  color: white;

  padding: 10px 14px;
  border-radius: 10px;

  font-size: 15px;
  font-weight: 600;

  box-shadow: 0 4px 12px rgba(0,0,0,0.45);

  opacity: 0;
  transition: opacity 0.4s ease;
}

#soundToggle.visible {
  opacity: 1;
}

/* clickable elements show hand cursor */
#soundToggle,
button,
a {
  cursor: pointer;
}

/* prevent text-selection cursor */
#soundToggle {
  user-select: none;
}