/* Premium Dungeon Branding */

.hr-dungeon-sound-btn {
  appearance: none;
  border: 1px solid rgba(255, 188, 82, 0.45);
  background:
    linear-gradient(180deg, rgba(32,18,10,0.96), rgba(12,8,6,0.96));
  color: #ffd58a;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  font-size: 18px;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.45) inset,
    0 6px 18px rgba(0,0,0,0.35);
}
.hr-dungeon-sound-btn:hover {
  filter: brightness(1.08);
}
.hr-dungeon-sound-btn.is-muted {
  opacity: 0.7;
}

.hr-dungeon-sound-floating {
  position: fixed;
  right: 14px;
  top: 14px;
  z-index: 9999;
}

.hr-dungeon-audio-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 10000;
  background: rgba(10, 8, 8, 0.9);
  color: #ffd58a;
  border: 1px solid rgba(255, 188, 82, 0.45);
  border-radius: 12px;
  padding: 10px 14px;
  font: 600 14px/1.2 system-ui, sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.hr-dungeon-audio-toast.show {
  opacity: 1;
}

@media (max-width: 700px) {
  .hr-dungeon-sound-floating {
    top: 10px;
    right: 10px;
  }
}
