.GodsPlayer2 {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 180px;
  padding: 10px;
  text-align: left;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  background-image: url('background.png');
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  color: white;
  box-sizing: border-box;
}
.GodsPlayer2 {
  position: relative;
  margin: 0 auto;
  display: block;
}

/* Cover image with glow */
.cover2 {
  background-position: right bottom;
  background-image: url('default.png');
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  width: 100px;
  position: absolute;
  right: 10px;
  top: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Title and subtitle */
.title2 {
  position: absolute;
  top: 16px;
  left: 12px;
  right: 120px;
  height: 14px;
  overflow: hidden;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
}

.subtitle2 {
  position: absolute;
  top: 40px;
  left: 12px;
  right: 120px;
  color: white;
  font-size: 12px;
}

/* Volume container */
.volume2 {
  position: absolute;
  left: 230px;
  top: 78px;
  width: 100px;
  height: 35px;
  overflow: hidden;
}

/* Slider with glow */
.slider2 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 60px;
  height: 35px;
  background-image: url('slider.png');
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Buttons with glow */
.mute-button2,
.power-button2 {
  position: absolute;
  top: 78px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.mute-button2 {
  left: 200px;
  background-image: url('mute_off.png');
}

.mute-button2.on {
  background-image: url('mute_on.png');
}

.power-button2 {
  left: 170px;
  background-image: url('power_off.png');
}

.power-button2.on {
  background-image: url('power_on.png');
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
  .GodsPlayer2 {
    font-size: 10px;
    padding: 8px;
  }

  .title2, .subtitle2 {
    font-size: 11px;
    right: 100px;
  }

  .cover2 {
    width: 80px;
    height: 80px;
    top: 8px;
    right: 8px;
  }

  .volume2 {
    left: auto;
    right: 10px;
    top: 100px;
    width: 80px;
  }

  .slider2 {
    width: 50px;
    height: 30px;
  }

  .mute-button2, .power-button2 {
    top: 100px;
    width: 30px;
    height: 30px;
  }

  .mute-button2 {
    left: auto;
    right: 50px;
  }

  .power-button2 {
    left: auto;
    right: 90px;
  }
}
