/* EFECTOS ESPECIALES PARA REVIEWS */

/* EFECTO TROLL - Arcoíris animado */
.review-troll {
  position: relative;
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  overflow: hidden;
}

.review-troll::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(90deg, #ff0080, #ff8c00, #40e0d0, #7b68ee, #ff0080);
  background-size: 400% 400%;
  border-radius: 12px;
  z-index: -1;
  animation: rainbowBorder 3s ease infinite;
  filter: blur(8px);
}

.review-troll::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: 12px;
  z-index: -1;
}

@keyframes rainbowBorder {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.rank-troll {
  background: linear-gradient(90deg, #ff0080, #ff8c00, #40e0d0, #ff0080);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowText 2s ease infinite;
  font-weight: 800;
}

@keyframes rainbowText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* EFECTO ADMIN - Corona dorada épica */
.review-admin {
  position: relative;
  padding: 24px;
  background: linear-gradient(135deg, rgba(251,191,36,0.05), rgba(217,119,6,0.05));
  border: 2px solid #fbbf24;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(251,191,36,0.3), inset 0 0 20px rgba(251,191,36,0.1);
  animation: adminPulse 2s ease-in-out infinite;
}

@keyframes adminPulse {
  0%, 100% { 
    box-shadow: 0 0 30px rgba(251,191,36,0.3), inset 0 0 20px rgba(251,191,36,0.1);
    border-color: #fbbf24;
  }
  50% { 
    box-shadow: 0 0 50px rgba(251,191,36,0.6), inset 0 0 30px rgba(251,191,36,0.2);
    border-color: #f59e0b;
  }
}

.admin-crown {
  display: inline-block;
  animation: crownFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(251,191,36,0.8));
}

@keyframes crownFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(5deg); }
}

.admin-badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(251,191,36,0.4);
  animation: badgeShine 2s ease infinite;
}

@keyframes badgeShine {
  0%, 100% { box-shadow: 0 4px 15px rgba(251,191,36,0.4); }
  50% { box-shadow: 0 4px 25px rgba(251,191,36,0.7); }
}

/* Partículas flotantes para admin */
.review-admin::after {
  content: '✨';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  animation: sparkle 4s ease infinite;
  opacity: 0;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: translateY(0) rotate(0deg); }
  50% { opacity: 1; transform: translateY(-10px) rotate(180deg); }
}

/* RANGOS NORMALES */
.rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rank-noob { background: rgba(156,163,175,0.2); color: #9ca3af; }
.rank-tank { background: rgba(59,130,246,0.2); color: #3b82f6; }
.rank-dps { background: rgba(245,158,11,0.2); color: #f59e0b; }
.rank-healer { background: rgba(34,197,94,0.2); color: #22c55e; }
.rank-tryhard { background: rgba(239,68,68,0.2); color: #ef4444; }

/* RESPUESTAS ANIDADAS */
.review-reply {
  margin-left: 40px;
  padding-left: 20px;
  border-left: 3px solid var(--border);
  margin-top: 16px;
}

.reply-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.reply-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}