/* ── Member Spotlight Card ── */
.rg-spotlight-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease forwards;
  position: relative;
}
.rg-spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #06b6d4, #7c3aed);
  background-size: 200% 100%;
  animation: rg-gradient-shift 3s ease infinite;
}
@keyframes rg-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.rg-spot-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 0;
}
.rg-spot-crown {
  width: 18px;
  height: 18px;
  color: #eab308;
  filter: drop-shadow(0 0 4px rgba(234,179,8,0.4));
}
.rg-spot-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #eab308;
}
.rg-spot-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 16px 18px;
}
.rg-spot-avatar-wrap {
  position: relative;
  margin-bottom: 12px;
}
.rg-spot-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(139,92,246,0.5);
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.rg-spot-avatar-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}
.rg-spot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.25) 0%, transparent 70%);
  animation: rg-glow-pulse 2s ease-in-out infinite;
  z-index: 0;
}
@keyframes rg-glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
.rg-spot-name {
  font-size: 16px;
  font-weight: 700;
  color: #e2e8f0;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.rg-spot-name:hover {
  color: #a78bfa;
}
.rg-spot-tier {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.rg-tier-free {
  background: rgba(100,116,139,0.15);
  color: #94a3b8;
  border: 1px solid rgba(100,116,139,0.2);
}
.rg-tier-pro {
  background: rgba(139,92,246,0.15);
  color: #a78bfa;
  border: 1px solid rgba(139,92,246,0.3);
}
.rg-tier-ultimate {
  background: rgba(6,182,212,0.15);
  color: #06b6d4;
  border: 1px solid rgba(6,182,212,0.3);
}
.rg-spot-stats {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.rg-spot-stat {
  text-align: center;
}
.rg-spot-stat-num {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #a78bfa;
  line-height: 1.2;
}
.rg-spot-stat-label {
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
