body {
  margin: 0;
  overflow: hidden;
  background: white;
  font-family: Arial, sans-serif;
}

/* CENTER TEXT */
#centerText {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(0, 0, 0);
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  pointer-events: none; /* allows logos to pass over */
}

/* LOGOS */
.logo {
  position: absolute;
   width: clamp(40px, 10vw, 120px);
  pointer-events: none;
}

#subText {
  font-size: 18px;
  font-weight: normal;
  margin-top: 10px;
  opacity: 0.7;
}

/* PLAYER */
#player {
  position: fixed;
  bottom: 15px;
  right: 15px;
  padding: 8px;
  background: rgba(0,0,0,0.6);
  border-radius: 10px;
  color: white;
}

#player button {
  background: none;
  border: 1px solid white;
  color: white;
  padding: 5px 10px;
  cursor: pointer;
}

#volume {
  width: 80px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  #player {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: 10px;
  }

  #player button {
    font-size: 16px;
    padding: 8px 12px;
  }

  #volume {
    width: 80px;
  }
}
