#don-ladder {
  margin: 1.5rem auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.don-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
}

.don-label {
  font-size: 1.9rem;
  color: #aaa;
  margin-top: 6px;
}

.don-coin-marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-image: url("https://mc-heads.net/avatar/doogile/60");
  background-size: cover;
  background-position: center;
  filter: sepia(0.6) saturate(5) hue-rotate(10deg); /* goldiger Effekt */
  box-shadow: 0 0 6px gold;
  border: 2px solid gold;
  transition: transform 0.3s ease;
}

.coin-display {
  position: fixed;
  top: 1.2rem;
  right: 10.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd700;
  background: rgba(0,0,0,0.6);
  padding: 6px 12px;
  border-radius: 8px;
  z-index: 999;
}

