.section-title {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.reward-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reward-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.top-rank {
  font-weight: bold;
  font-size: 1.3rem;
  padding: 10px;
  color: #000;
  text-transform: uppercase;
}

.reward-img {
  height: 80px;
  margin-bottom: 15px;
}

.icon {
  height: 24px;
  margin-right: 5px;
}

.reward-desc {
  font-size: 0.9rem;
  color: #ccc;
}

.animate-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.2s; }
.animate-card:nth-child(3) { animation-delay: 0.3s; }
.animate-card:nth-child(4) { animation-delay: 0.4s; }
.animate-card:nth-child(5) { animation-delay: 0.5s; }
.animate-card:nth-child(6) { animation-delay: 0.6s; }
.animate-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
