/* DJ Player Wrapper - Only styles DJ player specific elements */
.dj_player_wrapper {
  background: #1a1a1a;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.dj_player_container {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 100%;
}

.dj_player_title {
  color: #00d4ff;
  margin-bottom: 30px;
  text-align: center;
  font-size: 28px;
  margin-top: 0;
}

/* Controls Section */
.dj_player_controls {
  display: grid;
  gap: 20px;
}

.dj_player_control_group {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #333;
  padding: 15px;
  border-radius: 8px;
}

.dj_player_control_label {
  flex: 0 0 150px;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
}

.dj_player_frequency_slider {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: #444;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.dj_player_frequency_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00d4ff;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 212, 255, 0.3);
  transition: all 0.2s ease;
}

.dj_player_frequency_slider::-webkit-slider-thumb:hover {
  width: 24px;
  height: 24px;
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.5);
}

.dj_player_frequency_slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00d4ff;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 212, 255, 0.3);
  transition: all 0.2s ease;
}

.dj_player_frequency_slider::-moz-range-thumb:hover {
  width: 24px;
  height: 24px;
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.5);
}

.dj_player_frequency_slider::-moz-range-track {
  background: transparent;
  border: none;
}

.dj_player_value_display {
  flex: 0 0 80px;
  text-align: right;
  font-weight: bold;
  color: #00d4ff;
  font-size: 14px;
}

.dj_player_frequency_text {
  color: #00d4ff;
}

/* Button Groups */
.dj_player_button_group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Base button styles for DJ player */
.dj_player_note_button,
.dj_player_filter_button,
.dj_player_transport_button {
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 140px;
  font-family: Arial, sans-serif;
}

/* Note Button Styles */
.dj_player_note_button {
  background: #00d4ff;
  color: #000;
  box-shadow: 0 2px 4px rgba(0, 212, 255, 0.2);
}

.dj_player_note_button:hover {
  background: #00e5ff;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 212, 255, 0.4);
}

.dj_player_note_button:active {
  transform: scale(0.98);
}

.dj_player_note_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Filter Button Styles */
.dj_player_filter_button {
  background: #ff6b9d;
  color: #fff;
  box-shadow: 0 2px 4px rgba(255, 107, 157, 0.2);
}

.dj_player_filter_button:hover {
  background: #ff7fb0;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(255, 107, 157, 0.4);
}

.dj_player_filter_button:active {
  transform: scale(0.98);
}

.dj_player_filter_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Transport Button Styles */
.dj_player_transport_button {
  color: #000;
  box-shadow: 0 2px 4px rgba(78, 205, 196, 0.2);
}

.dj_player_transport_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.dj_player_transport_play {
  background: #4ecdc4;
}

.dj_player_transport_play:hover {
  background: #5ed9d0;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(78, 205, 196, 0.4);
}

.dj_player_transport_play:active {
  transform: scale(0.98);
}

.dj_player_transport_pause {
  background: #f9ca24;
  color: #000;
  box-shadow: 0 2px 4px rgba(249, 202, 36, 0.2);
}

.dj_player_transport_pause:hover {
  background: #fab005;
  box-shadow: 0 4px 8px rgba(249, 202, 36, 0.4);
}

.dj_player_transport_pause:active {
  transform: scale(0.98);
}

.dj_player_transport_stop {
  background: #ff6348;
  color: #fff;
  box-shadow: 0 2px 4px rgba(255, 99, 72, 0.2);
}

.dj_player_transport_stop:hover {
  background: #ff7362;
  box-shadow: 0 4px 8px rgba(255, 99, 72, 0.4);
}

.dj_player_transport_stop:active {
  transform: scale(0.98);
}

/* Info Section */
.dj_player_info {
  background: #333;
  padding: 20px;
  border-radius: 5px;
  margin-top: 25px;
  border-left: 4px solid #00d4ff;
}

.dj_player_info_text {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
}

.dj_player_info_title {
  color: #00d4ff;
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

.dj_player_info_list {
  margin: 0;
  padding-left: 20px;
  list-style-type: none;
}

.dj_player_info_item {
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.dj_player_info_item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 600px) {
  .dj_player_wrapper {
    padding: 10px;
  }

  .dj_player_container {
    padding: 20px;
  }

  .dj_player_title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .dj_player_control_group {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .dj_player_control_label {
    flex: none;
    width: 100%;
  }

  .dj_player_frequency_slider {
    width: 100%;
  }

  .dj_player_value_display {
    flex: none;
    width: 100%;
    text-align: left;
  }

  .dj_player_note_button,
  .dj_player_filter_button,
  .dj_player_transport_button {
    min-width: 100px;
    font-size: 12px;
    padding: 10px 15px;
  }

  .dj_player_info {
    margin-top: 20px;
  }

  .dj_player_info_text {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .dj_player_container {
    padding: 15px;
  }

  .dj_player_title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .dj_player_control_group {
    padding: 10px;
  }

  .dj_player_button_group {
    gap: 5px;
  }

  .dj_player_note_button,
  .dj_player_filter_button,
  .dj_player_transport_button {
    min-width: 80px;
    font-size: 11px;
    padding: 8px 12px;
  }
}

.music-theme-wrapper {
    position: relative;
    overflow: hidden;
    width: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* 2. Styles ONLY the lion image itself */
.music-theme-wrapper .bg-transparent-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    z-index: 1;
    /* The Blur and Darken effects */
    filter: blur(5px) brightness(0.2);
    transform: scale(1.1); /* Hides white edges from the blur */
    
    pointer-events: none; /* Ensures you can still click your buttons */
}

.player-wrapper {
    z-index: 2;
}