css
html, body {
  margin: 0;
  padding: 0;
  background: transparent;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
  width: 100%;
}

#feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.donation-card {
  width: 100%;
  box-sizing: border-box;
  background: rgba(20, 20, 20, 0.85);
  border-left: 6px solid #00a368;
  border-radius: 6px;
  padding: 16px 24px;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform: translateX(0);
  opacity: 1;
}

.donation-card.entering {
  transform: translateX(-40px);
  opacity: 0;
}

.donation-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 26px;
  font-weight: bold;
}

.donation-name {
  color: #ffffff;
}

.donation-amount {
  color: #00a368;
}

.donation-message {
  margin-top: 6px;
  font-size: 18px;
  color: #dddddd;
  word-break: break-word;
}

#status {
  position: fixed;
  bottom: 6px;
  right: 8px;
  font-size: 11px;
  color: #888;
  font-family: monospace;
}

.donation-card.latest {
  border: 3px solid #ffcc00;
  box-shadow: 0 0 14px rgba(255, 204, 0, 0.5);
}

