html, body {
  margin: 0;
  padding: 0;
  background: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#viewers-count {
  display: inline-flex;
  align-items: center;

  border-radius: 999px;

  background: rgba(34, 34, 34, 1.20);
  color: #fff;

  font-size: 26px;
  font-weight: 700;

  white-space: nowrap;

  text-shadow: 0 0 0px rgba(0, 0, 0, 1);
  backdrop-filter: blur(4px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2px 6px;
}

#viewers-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

#viewer-popup {
  position: absolute;
  left: 0;
  top: 110%;

  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;

  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(34, 34, 34, 1.20);
  color: #fff;

  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;

  text-shadow: 0 0 0px rgba(0, 0, 0, 1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: opacity 0.4s ease, transform 0.4s ease;
}

#viewer-popup.show {
  opacity: 1;
  transform: translateY(0);
}