.bpneo-donate-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(20, 24, 33, 0.55);
  font-family: Inter, sans-serif;
}

.bpneo-donate-overlay.is-open { display: flex; }

.bpneo-donate-dialog {
  width: max-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: 460px 300px;
  gap: 16px;
  align-items: stretch;
}

.bpneo-donate-copy,
.bpneo-donate-panel {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.bpneo-donate-qrbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 20px 4px;
}

.bpneo-donate-qr {
  width: 180px;
  height: 180px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #e6eaf0;
  border-radius: 8px;
}

.bpneo-donate-qr canvas,
.bpneo-donate-qr img { width: 160px; height: 160px; }

.bpneo-donate-hint {
  margin: 0 0 8px;
  font-size: 14px;
  color: #5e6570;
  text-align: center;
}

.bpneo-donate-copy-body { padding: 8px 20px 22px; }

.bpneo-donate-copy h2 {
  margin: 8px 0;
  border: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #1c1c1c;
}

.bpneo-donate-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #5e6570;
}

.bpneo-donate-panel {
  position: relative;
  padding: 22px 18px 18px;
  background: #f4f6f8;
}

.bpneo-donate-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #667;
  font-size: 22px;
  cursor: pointer;
}

.bpneo-donate-secure {
  margin: 0 0 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1f9d55;
}

.bpneo-donate-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.bpneo-donate-chip {
  height: 42px;
  border: 1px solid #d5dbe3;
  border-radius: 4px;
  background: #fff;
  color: #4a5160;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}

.bpneo-donate-chip.is-active {
  border-color: #2f6fed;
  color: #2f6fed;
  box-shadow: inset 0 0 0 1px #2f6fed;
}

.bpneo-donate-amount {
  display: flex;
  align-items: center;
  height: 48px;
  margin-bottom: 14px;
  padding: 0 12px;
  border: 1px solid #2f6fed;
  border-radius: 4px;
  background: #fff;
}

.bpneo-donate-amount input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 22px;
  font-weight: 700;
  color: #2f6fed;
}

.bpneo-donate-currency,
.bpneo-donate-amount span { color: #9aa1ab; }

.bpneo-donate-links { text-align: center; margin: 4px 0 14px; }

.bpneo-donate-links button {
  border: 0;
  background: none;
  color: #5e6570;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.bpneo-donate-name {
  display: none;
  width: 100%;
  height: 40px;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid #d5dbe3;
  border-radius: 4px;
  box-sizing: border-box;
}

.bpneo-donate-name.is-shown { display: block; }

.bpneo-donate-upi {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 6px;
  background: #3d7eea;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.bpneo-donate-paid {
  margin-top: 8px;
  border: 0;
  background: none;
  color: #2f6fed;
  text-decoration: underline;
  cursor: pointer;
}

.bpneo-donate-status {
  min-height: 18px;
  margin: 8px 0 0;
  font-size: 13px;
  color: #1f7a4d;
  text-align: center;
}

.bpneo-donate-status.is-err { color: #9b2c2c; }

.bpneo-donate-form.is-hidden,
.bpneo-donate-thanks { display: none; }

.bpneo-donate-thanks.is-shown {
  display: block;
  text-align: center;
  padding: 28px 8px;
}

.bpneo-donate-thanks h3 { margin: 8px 0; font-size: 24px; color: #1c1c1c; }
.bpneo-donate-thanks strong { display: block; margin: 8px 0; font-size: 28px; }
.bpneo-donate-thanks p { margin: 0 0 16px; font-size: 14px; line-height: 1.5; color: #5e6570; }

.bpneo-donate-again {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 6px;
  background: #3d7eea;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 760px) {
  .bpneo-donate-dialog {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow: auto;
  }
}