.donations {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 75svh;
  padding: 96px 40px;
  background: #000;
  color: #f8f8f6;
  font-family: 'Helvetica Neue', 'Segoe UI', system-ui, sans-serif;
  cursor: inherit;
}
.donations-inner { width: min(100%, 880px); }
.donations h2 { margin: 0 0 24px; font-size: 36px; line-height: 1.2; font-weight: 300; }
.donations p { margin: 0; font-size: 16px; line-height: 1.6; color: #b8b8b8; }
.donations .donation-network { margin-top: 40px; font-size: 14px; }
.donation-address { display: block; margin: 12px 0 16px; font-size: clamp(14px, 2vw, 20px); line-height: 1.8; overflow-wrap: anywhere; user-select: all; }
.donation-copy { border: 0; border-radius: 0; padding: 12px 0; min-height: 44px; background: transparent; color: #f8f8f6; font: inherit; font-size: 15px; cursor: pointer; transition: color 160ms ease-out; }
.donation-copy:hover { color: #b8b8b8; }
.donation-copy:active { color: #919191; }
.donation-copy:focus-visible { outline: 2px solid #f8f8f6; outline-offset: 6px; }
.donation-copy:disabled { cursor: wait; color: #919191; }
.donations .donation-status { min-height: 24px; margin-top: 8px; font-size: 13px; }
@media (max-width: 720px) {
  .donations { padding: 80px 32px; min-height: 65svh; font-family: Arial, Helvetica, sans-serif; }
  .donations-inner { max-width: 440px; }
  .donations h2 { font-size: 30px; }
}
@media (prefers-reduced-motion: reduce) { .donation-copy { transition: none; } }

/* Hide the native cursor only while the existing custom cursor is active. */
@media (pointer: fine) and (min-width: 721px) {
  body.cursor-ready .donations,
  body.cursor-ready .donations * { cursor: none; }
}
