.dm-donate {
  max-width: 320px;
  margin: 0 auto;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
}
.dm-title {
  font-weight: 800;
  font-size: clamp(16px, 2vw, 21px);
  margin-bottom: 16px;
  text-align: center;
}
.dm-card {
  background: #201640;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.dm-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.dm-toggle button {
  flex: 1;
  background: #3a276b;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 12px;
  border-radius: 28px;
  font-weight: 700;
  cursor: pointer;
}
.dm-toggle button.is-active {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  background: #553b9d;
}

.dm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 16px;
  justify-content: center;
}
.dm-chip {
  background: #3a276b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
}
.dm-chip.is-active {
  outline: 2px solid #a6f3c6;
}

.dm-input label {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 6px;
}
.dm-amount-wrap {
  display: flex;
  align-items: center;
  background: #241244;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 8px 12px;
}
.dm-amount-wrap input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  width: 100%;
  outline: none;
  text-align: center;
}
.dm-currency,
.dm-curr {
  opacity: 0.9;
  font-weight: 700;
}
.dm-currency {
  margin-right: 8px;
}
.dm-curr {
  margin-left: 8px;
  font-size: 12px;
}

.dm-cta {
  width: 100%;
  margin-top: 18px;
  padding: 14px 18px;
  border: none;
  border-radius: 16px;
  background: #79d9a7;
  color: #1a1330;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
}
.dm-cta:focus {
  outline: 3px solid #a6f3c6;
  outline-offset: 2px;
}
.dm-note {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 10px;
  text-align: center;
}
:root {
  color-scheme: dark;
}
