      /* ═══════════════════════════════════════════════════════════════════
       DONATION MODAL
       ═══════════════════════════════════════════════════════════════════ */

    /* ── Overlay ── */
    dialog:modal { max-width: 100vw; max-height: 100vh; }
    .dn-overlay[open] { display: flex; }
    .dn-overlay:not([open]) { display: none; }
    .dn-overlay {
      inset: 0;
      z-index: 9000;
      width: 100vw; height: 100vh;
      position: fixed;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(13, 8, 2, 0.85);
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
      transition: opacity 0.3s ease;
    }

    /* ── Modal container ── */
    .dn-modal {
      position: relative;
      width: 100%;
      max-width: 520px;
      max-height: 90vh;
      overflow-y: auto;
      overflow-x: hidden;
      background: var(--brown-dark);
      border: 1px solid rgba(201,149,42,0.5);
      border-radius: 12px;
      box-shadow:
        0 0 0 1px rgba(201,149,42,0.08),
        0 40px 100px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(201,149,42,0.18);
      padding: 48px 40px 36px;
      transform: scale(0.96) translateY(14px);
      transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
      -webkit-scrollbar: thin;
      -webkit-scrollbar-color: rgba(201,149,42,0.3);
      scrollbar-width: thin;
      scrollbar-color: rgba(201,149,42,0.3) transparent;
    }
    .dn-overlay .dn-modal { transform: scale(1) translateY(0); }
    .dn-modal::-webkit-scrollbar { width: 4px; }
    .dn-modal::-webkit-scrollbar-thumb { background: rgba(201,149,42,0.3); border-radius: 2px; }

    /* ── Seal ── */
    .dn-seal {
      width: 56px; height: 56px;
      border-radius: 50%;
      border: 1.5px solid rgba(201,149,42,0.65);
      box-shadow: 0 0 0 5px rgba(201,149,42,0.06);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 1px;
      margin: 0 auto 20px;
    }
    .dn-seal-crown  { font-size: 8px;  color: var(--gold); line-height: 1; }
    .dn-seal-letters {
      font-family: var(--font-display);
      font-size: 12px; font-style: italic; font-weight: 400;
      color: var(--gold); letter-spacing: 0.1em;
    }

    /* ── Header ── */
    .dn-header { text-align: center; margin-bottom: 28px; }
    .dn-title {
      font-family: var(--font-display);
      font-size: clamp(26px, 5vw, 34px);
      font-weight: 300; color: var(--gold-pale);
      line-height: 1.15; margin-bottom: 10px; letter-spacing: -0.01em;
    }
    .dn-subtitle {
      font-family: var(--font-display);
      font-style: italic; font-weight: 300; font-size: 15px;
      color: rgba(245,230,192,0.5); line-height: 1.6;
    }

    /* ── Section / label ── */
    .dn-section { margin-bottom: 24px; }
    .dn-label {
      font-family: var(--font-utility);
      font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px; display: block;
    }

    /* ── Amount grid ── */
    .dn-amount-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
    .dn-amt {
      padding: 11px 6px;
      background: transparent;
      border: 1px solid rgba(201,149,42,0.35);
      color: rgba(245,230,192,0.7);
      font-family: var(--font-display);
      font-size: 18px; font-weight: 400;
      cursor: pointer; border-radius: 4px;
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
      line-height: 1;
    }
    .dn-amt:hover {
      border-color: rgba(201,149,42,0.7);
      color: var(--gold-light);
      background: rgba(201,149,42,0.06);
    }
    .dn-amt--active {
      background: var(--gold) !important;
      border-color: var(--gold) !important;
      color: var(--brown-dark) !important;
      font-weight: 600;
      transform: scale(1.04);
    }
    .dn-amt--custom {
      font-family: var(--font-body);
      font-size: 13px; font-weight: 400; letter-spacing: 0.05em;
    }

    /* ── Custom input ── */
    .dn-custom-wrap {
      display: flex; align-items: center;
      margin-top: 10px;
      border: 1px solid rgba(201,149,42,0.4);
      background: rgba(255,255,255,0.04);
      border-radius: 4px; overflow: hidden;
      transition: border-color 0.2s;
    }
    .dn-custom-wrap:focus-within { border-color: var(--gold); }
    .dn-custom-prefix {
      padding: 0 12px;
      font-family: var(--font-display); font-size: 20px; color: var(--gold);
      border-right: 1px solid rgba(201,149,42,0.25);
      -webkit-user-select: none;
      line-height: 46px; user-select: none;
    }
    .dn-custom-input {
      flex: 1; background: transparent; border: none; outline: none;
      color: var(--gold-pale);
      font-family: var(--font-display); font-size: 18px;
      padding: 10px 14px; width: 100%;
    }
    .dn-custom-input::placeholder { color: rgba(245,230,192,0.25); }
    .dn-custom-input::-webkit-outer-spin-button,
    .dn-custom-input::-webkit-inner-spin-button { -webkit-appearance: none; }

    /* ── Tabs ── */
    .dn-tabs {
      display: flex;
      border-bottom: 1px solid rgba(201,149,42,0.2);
      margin-bottom: 24px;
    }
    .dn-tab {
      flex: 1; padding: 12px 6px;
      background: transparent; border: none;
      border-bottom: 2px solid transparent;
      color: rgba(245,230,192,0.4);
      font-family: var(--font-body); font-size: 12px; font-weight: 400;
      letter-spacing: 0.1em; text-transform: uppercase;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 7px;
      transition: color 0.2s, border-color 0.2s;
      margin-bottom: -1px;
    }
    .dn-tab:hover { color: rgba(245,230,192,0.75); }
    .dn-tab--active { color: var(--gold-light); border-bottom-color: var(--gold); }

    .dn-tab-icon {
      width: 22px; height: 22px; border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700; font-family: Arial, sans-serif;
      flex-shrink: 0;
    }
    .dn-tab-icon--paypal  { background: #003087; color: #fff; }
    .dn-tab-icon--zelle   { background: #6d1ed4; color: #fff; }
    .dn-tab-icon--cashapp { background: #00d64f; color: #fff; }

    /* ── Panels ── */
    .dn-panel         { display: none; }
    .dn-panel--active { display: block;}

    /* ── Method badge ── */
    .dn-method-badge {
      display: inline-flex; align-items: center;
      padding: 5px 14px; border-radius: 20px;
      margin-bottom: 14px;
      font-family: var(--font-body); font-size: 12px; font-weight: 500;
      letter-spacing: 0.08em;
    }
    .dn-method-badge--paypal  { background: rgba(0,48,135,0.2);  color: #6699ff; border: 1px solid rgba(0,48,135,0.4); }
    .dn-method-badge--zelle   { background: rgba(109,30,212,0.2); color: #b380ff; border: 1px solid rgba(109,30,212,0.4); }
    .dn-method-badge--cashapp { background: rgba(0,214,79,0.12);  color: #40e080; border: 1px solid rgba(0,214,79,0.3); }

    .dn-method-desc {
      font-size: 14px; line-height: 1.65;
      color: rgba(245,230,192,0.6); margin-bottom: 16px;
    }

    /* ── Link row ── */
    .dn-link-row {
      display: flex; align-items: center;
      margin-bottom: 20px;
      border: 1px solid rgba(201,149,42,0.35);
      border-radius: 6px; overflow: hidden;
    }
    .dn-link-display {
      flex: 1; padding: 11px 14px;
      font-family: var(--font-body); font-size: 14px; font-weight: 400;
      color: var(--gold-light); letter-spacing: 0.02em;
      background: rgba(201,149,42,0.06);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      -webkit-user-select: none;
      user-select: all;
    }
    .dn-copy {
      width: 44px; height: 44px; flex-shrink: 0;
      background: rgba(201,149,42,0.1);
      border: none; border-left: 1px solid rgba(201,149,42,0.2);
      color: rgba(245,230,192,0.45);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background 0.2s, color 0.2s; padding: 0;
    }
    .dn-copy:hover { background: rgba(201,149,42,0.2); color: var(--gold-light); }
    .dn-copy { background: rgba(50,160,80,0.2); color: #6ddb90; }

    /* ── CTA buttons ── */
    .dn-cta {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 14px 24px; border-radius: 6px;
      font-family: var(--font-body); font-size: 13px; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      text-decoration: none; border: none; cursor: pointer;
      transition: filter 0.2s, transform 0.2s;
    }
    .dn-cta:hover  { filter: brightness(1.1); transform: translateY(-2px); }
    .dn-cta:active { transform: translateY(0); }
    .dn-cta--paypal  { background: linear-gradient(135deg, #003087, #009cde); color: #fff; }
    .dn-cta--cashapp { background: linear-gradient(135deg, #00c244, #00a836); color: #fff; }

    /* ── Zelle steps ── */
    .dn-steps { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .dn-steps li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 14px; color: rgba(245,230,192,0.65); line-height: 1.5;
    }
    .dn-steps li strong { color: rgba(245,230,192,0.85); font-weight: 500; }
    .dn-step-num {
      width: 24px; height: 24px; border-radius: 50%;
      border: 1px solid rgba(109,30,212,0.5);
      background: rgba(109,30,212,0.15); color: #b380ff;
      font-family: var(--font-body); font-size: 12px; font-weight: 500;
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }

    /* ── Disclaimer ── */
    .dn-disclaimer {
      margin-top: 28px; padding-top: 20px;
      border-top: 1px solid rgba(201,149,42,0.12);
      font-size: 11px; line-height: 1.6;
      color: rgba(245,230,192,0.28);
      text-align: center; letter-spacing: 0.02em;
    }

    /* ── Toast ── */
    .dn-toast {
      position: fixed; bottom: 28px; left: 50%;
      transform: translateX(-50%) translateY(12px);
      background: rgba(43,29,14,0.97);
      border: 1px solid rgba(201,149,42,0.4);
      color: var(--gold-light);
      font-family: var(--font-body); font-size: 13px; font-weight: 400;
      letter-spacing: 0.05em; padding: 10px 20px;
      border-radius: 24px; opacity: 0; pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
      white-space: nowrap; z-index: 9100;
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }

    /* ── Mobile ── */
    @media (max-width: 540px) {
      .dn-overlay { padding: 0; align-items: flex-end; }
      .dn-modal {
        max-height: 92vh; max-width: 100%;
        padding: 40px 24px 32px;
        border-radius: 20px 20px 0 0;
        border-bottom: none;
        transform: translateY(20px);
      }
      .dn-overlay.dn-open .dn-modal { transform: translateY(0); }
      .dn-tab { font-size: 11px; padding: 10px 4px; gap: 5px; }
    }
    @media (max-width: 360px) {
      .dn-amount-grid { grid-template-columns: repeat(2, 1fr); }
    }