html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: black;
}
* {
  user-select: none;
}
#player {
  width: 100vw;
  height: 100vh;
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(28px);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}

#play-btn {
  width: 200px;
  height: 200px;
  background-color: transparent;
  background-image: url('./assets/play.png');
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.overlay:hover #play-btn {
  transform: scale(1.1);
}

.player-ui {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 0px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  pointer-events: auto;
  display: none;
  transition: all 0.3s ease;
}

.live-slider {
  flex-grow: 1;
  margin-right: 20px;
  appearance: none;
  height: 4px;
  background: white;
  cursor: pointer;
}
.controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 10px 20px;

  background: rgba(65, 63, 63, 0.6); /* semi-transparent black */
  backdrop-filter: blur(28px); /* smooth frosted glass effect */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
}
.controls button {
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.live-badge {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  letter-spacing: 1px;
  font-family: 'Roboto', Courier, monospace;
  color: #ffffff;
  filter: drop-shadow(0 0 1px #fff);
  background: none;
  margin-bottom: 4px;
}
.fullscreen-btn {
  background: none;
}
.volume-btn {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background: center;
  margin-right: 20px;
}
