/* ── Corner orb animations ── */
@keyframes rotacionar-horario {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes rotacionar-antihorario {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* ── Corner orbs ── */
.corner-orb {
  position: absolute;
  bottom: -160px;
  width: 460px;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../images/rounded.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  animation: rotacionar-horario 24s linear infinite;
  pointer-events: none;
}

.corner-orb--left  { left: -160px; }
.corner-orb--right { right: -160px; animation-direction: reverse; }

.orb-mid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  background-image: url('../images/rounded.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: rotacionar-antihorario 12s linear infinite;
}

.orb-inner {
  width: 130px;
  height: 130px;
  background-image: url('../images/rounded.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: rotacionar-horario 6s linear infinite;
}

.orb-god-icon {
  position: absolute;
  bottom: 40px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  line-height: 1;
  font-family: serif;
  color: var(--color-accent);
  text-shadow: 0 0 24px rgba(241, 196, 15, 0.6);
  pointer-events: none;
  z-index: 2;
  user-select: none;
}

#orb-icon-left  { left:  40px; }
#orb-icon-right { right: 40px; }

/* ── Decorative menu gems ── */
.mg {
  width: 18px;
  height: 18px;
  background-image: url('../images/square.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Mute button ── */
.mute-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-accent);
  opacity: 1;
  transition: opacity 0.15s;
  display: flex;
  align-items: center;
}

.mute-btn.muted {
  opacity: 0.3;
}
