body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #121212;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
  overflow: hidden;
}

#twitch-embed {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bezel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 60px 80px;
  box-shadow: inset 0 0 0 75px rgba(0, 0, 0);
  z-index: 3;
}

audio {
  display: none;
}

.password-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 4000;
}

.password-input, .password-submit {
  padding: 10px 15px;
  margin: 5px 0;
  background-color: #222;
  border: 1px solid #555;
  color: #ccc;
  font-size: 16px;
}

.password-input {
  width: 250px;
  text-align: center;
}

.password-submit {
  cursor: pointer;
  background-color: #444;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.password-submit:hover {
  background-color: #666;
}

.controls-container {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 5;
  gap: 20px;
}

.custom-select, .volume-control, .intensity-control {
  background-color: #333;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
}

.volume-control, .intensity-control {
  display: flex;
  align-items: center;
}

.volume-control label, .intensity-control label {
  margin-right: 10px;
}

input[type="range"] {
  cursor: pointer;
  background-color: #555;
  -webkit-appearance: none;
  width: 100px;
  height: 8px;
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #ddd;
  cursor: pointer;
  border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #ddd;
  cursor: pointer;
  border-radius: 50%;
}

.intensity-control select {
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #333;
  color: #ddd;
}
