/* Arcanic donate UI fix — new file so browsers skip the immutable cached chunk */

#donate label[for="donation-email"],
label[for="donation-email"].donation-email-label,
label[for="donation-email"] {
  display: block !important;
  margin-top: 2rem !important;
}

#donate #donation-nickname + label[for="donation-email"] {
  margin-top: 2rem !important;
}

.donation-pay {
  transition: transform 0.12s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.12s ease,
    box-shadow 0.12s ease !important;
  transform-origin: center !important;
}

.donation-pay:active,
.donation-pay.is-pressed {
  transform: translateY(3px) scale(0.975) !important;
  filter: brightness(0.88) !important;
  box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.28) !important;
}

@keyframes donation-pay-press {
  0% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
  40% {
    transform: translateY(3px) scale(0.975);
    filter: brightness(0.88);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.donation-pay.is-waiting {
  animation: donation-pay-press 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Pack / voice helper copy — additive, does not restyle donate or hero-pack card */
.arcanic-hero-hints {
  margin: 0.7rem 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
@media (min-width: 640px) {
  .arcanic-hero-hints {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}
.arcanic-hero-hints p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #9a9b9e;
}
.arcanic-hero-hints a,
.arcanic-login-pack a {
  color: #f99204;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.arcanic-login-pack {
  margin: 0;
}
