body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  background: #2E3A87 url('../bg.png');
/*  background:url('../bg.png');*/
  color: white;
  margin: 0;
}

.titles{
  display: none;
}
.bg-scroll{
  z-index: 99999;
  display: none;
  height: 100%;
  width: 100%;
  position: fixed;
  background: url('../BACKGROUND.png');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;

}
.background {
  height: 200vh; /* Panjang halaman untuk scrolling */
  background: linear-gradient(to bottom, #ff7b54, #ffd1a3, #54c0ff);
}
.container {
  display: flex;
  gap: 100px;
  align-items: center;
}

.knob-container, .slider-container, .button-container {
  text-align: center;
  margin: auto;
}

.knob {
  width: 120px;
  height: 120px;
  background: url('../knob.png') center;
  border-radius: 50%;
  border: 5px solid silver;
  position: relative;
  transform-origin: center;
  cursor: grab;
}

/* Slider Container */
.slider-container {
  bottom: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.power-indicator {
  width: 50px;
  height: 300px;
  background: #2E3A87;
  border: 3px solid #BEBEBE;
  border-radius: 15px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-evenly;
  padding: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.bar {
  width: 80%;
  height: 12px;
  margin: 3px auto;
  background: #FF9900;
  border-radius: 5px;
  opacity: 0.2; /* Default as inactive */
  transition: opacity 0.3s ease;
}

.bar.active {
  opacity: 1; /* Activated bar */
}


button {
  width: 150px;
  height: 150px;
  background: url('../hold.png') center;
  border: 5px solid silver;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin: auto;
}

button:active {
  background: #4682B4;
}
