.supporter-row {
  margin: 4px 0;
}

/* řádek se třemi pilulkami, zarovnané zleva, přirozená šířka */
.supporter-row-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 10px;
}

/* CONTAINER (jméno + částka v jedné pilulce) */
.supporter-name-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1px 14px;
  border-radius: 999px;

  font-size: 18px;
  font-weight: 700;
  color: #000000;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* =========================
   TIERS — animované gradienty
   ========================= */

.gold-text {
  background-image:
    linear-gradient(120deg,
      transparent 0%,
      transparent 45%,
      rgba(255, 255, 255, 0.6) 47%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(255, 255, 255, 0.6) 53%,
      transparent 55%,
      transparent 100%),
    linear-gradient(135deg, #c79a00 0%, #ffd700 50%, #c79a00 100%);
  background-size: 150% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: 200% 0, 0 0;
  animation: tier-shimmer 2s linear infinite;
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.5);
}

.silver-text {
  background-image:
    linear-gradient(120deg,
      transparent 0%,
      transparent 45%,
      rgba(255, 255, 255, 0.6) 47%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(255, 255, 255, 0.6) 53%,
      transparent 55%,
      transparent 100%),
    linear-gradient(135deg, #909090 0%, #c0c0c0 50%, #909090 100%);
  background-size: 150% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: 200% 0, 0 0;
  animation: tier-shimmer 2.3s linear infinite;
  animation-delay: -0.6s;
  box-shadow: 0 4px 14px rgba(192, 192, 192, 0.5);
}

.bronze-text {
  background-image:
    linear-gradient(120deg,
      transparent 0%,
      transparent 45%,
      rgba(255, 255, 255, 0.6) 47%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(255, 255, 255, 0.6) 53%,
      transparent 55%,
      transparent 100%),
    linear-gradient(135deg, #a05519 0%, #cd7f32 50%, #a05519 100%);
  background-size: 150% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: 200% 0, 0 0;
  animation: tier-shimmer 2.6s linear infinite;
  animation-delay: -1.2s;
  box-shadow: 0 4px 14px rgba(205, 127, 50, 0.5);
}

.white-text {
  background: linear-gradient(135deg, #ffffff, #e6e6e6);
}

@keyframes tier-shimmer {
  0%   { background-position: 200% 0, 0 0; }
  55%  { background-position: -100% 0, 0 0; }
  100% { background-position: -100% 0, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .gold-text,
  .silver-text,
  .bronze-text {
    animation: none;
    background-position: -100% 0, 0 0;
  }
}

/* =========================
   AMOUNT UVNITŘ PILULKY
   ========================= */

.amount {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  opacity: 0.65;
}
