/* Apply a full dark background and center the counter */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  height: 100vh;
  width: 100vw;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
}

/* Top-left branding text */
.brand {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  color: #888;
  font-family: Arial, sans-serif;
}

/* Big counter text in the center */
#counter {
  font-size: 80px;
  font-weight: bold;
}

/* Mute toggle icon in the top-right corner */
.mute-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  user-select: none;
}
