/**
 * Reward / Donation Component
 * Reward/donation panel and QR code styles.
 */

.no-logged {
  text-align: center;
  padding: 20px;
  color: var(--color-text-tertiary, #ababab);
  font-size: 14px;
}

.reward-open {
  cursor: pointer;
  text-align: center;
}

.reward-main {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
}

.reward-main.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reward-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-card, 0 1px 30px -4px #e8e8e8);
  border-radius: var(--radius-md, 10px);
  border: 1px solid #FFFFFF;
  transition: all 0.3s ease-in-out;
}

.reward-row:hover {
  box-shadow: var(--shadow-card-hover, 0 1px 20px 10px #e8e8e8);
  background: rgba(255, 255, 255, 0.8);
}

.reward-row li {
  list-style: none;
  text-align: center;
}

.reward-row li img {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-sm, 8px);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #ababab;
  margin: 0 2px;
  animation: loading 1.5s infinite;
}

.dot:nth-last-child(1) { animation-delay: 0.2s; }
.dot:nth-last-child(2) { animation-delay: 0.4s; }
.dot:nth-last-child(3) { animation-delay: 0.6s; }

.load-button {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card, 0 1px 30px -4px #e8e8e8);
  border-radius: 50px;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-button:hover div {
  color: var(--theme-skin-matching, #a4cdf6);
}
