/* ------------------------------
   Donation Card
--------------------------------*/
.donation-card {
  max-width: 620px;
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f4f6f8);
  box-shadow:
    0 10px 27px rgba(0, 0, 0, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 40px auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.donation-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* ------------------------------
   Title & Text
--------------------------------*/
.donation-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.donation-text {
  font-size: 14px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
}

/* ------------------------------
   Crypto Row
--------------------------------*/
.crypto-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Crypto image */
.crypto-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,7,0.4,0.19));
}

/* ------------------------------
   Copy Container (Fancy)
--------------------------------*/
.copy-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  width: 800px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f9fafb, #eef1f4);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 4px 10px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.copy-container:hover {
  border-color: #b5c6ff;
  box-shadow:
    0 6px 18px rgba(120, 140, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Address text */
.copy-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  user-select: text;
  white-space: nowrap;
  color: #333;
}

/* ------------------------------
   Copy Icon
--------------------------------*/
.copy-icon {
  cursor: pointer;
  color: #6b7280;
  font-size: 15px;
  transition:
    color 0.2s ease,
    transform 0.15s ease,
    filter 0.2s ease;
}

.copy-icon:hover {
  color: #4f46e5;
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(79, 70, 229, 0.5));
}

/* Success state (fa-check) */
.copy-icon.fa-check {
  color: #22c55e;
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.6));
}








@media (max-width: 580px) {
  .donation-card {
    padding: 18px;
    border-radius: 14px;
  }

  .donation-title {
    font-size: 20px;
  }

  .donation-text {
    font-size: 13px;
  }

  .crypto-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .crypto-icon {
    width: 32px;
    height: 32px;
  }

  .copy-container {
    width: 100%;
    padding: 10px 12px;
  }

  .copy-text {
    font-size: 11.5px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .copy-icon {
    font-size: 16px;
  }
}




@media (max-width: 768px) {
  .donation-card {
    max-width: 90%;
    padding: 20px;
  }

  .copy-container {
    width: 100%;
  }

  .copy-text {
    font-size: 12px;
  }
}

