/* =========================================
   TACTICAL SPOTLIGHT PODIUM - CYBERPUNK 2.0
========================================= */

:root{
  --gold: #ffb300;
  --silver: #d0d0d0;
  --bronze: #8c593b;
}

.lbpod {
  padding: 10px 16px 30px;
  display: block;
}

/* DOSSIER STYLE (COMMUN) */
.champion-dossier, .player-dossier {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.98), rgba(10, 15, 25, 1));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 25px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.2s ease;
  overflow: hidden;
  cursor: pointer;
}

/* Hiérarchie des tailles de bandes */
.champion-dossier.rank-1 { padding: 30px 25px; min-height: 160px; border-width: 2px; z-index: 3; }
.champion-dossier.rank-2 { padding: 22px 25px; min-height: 130px; opacity: 0.95; z-index: 2; }
.champion-dossier.rank-3 { padding: 18px 25px; min-height: 110px; opacity: 0.9; z-index: 1; }

/* Style pour le reste de la liste (#4+) */
.player-dossier {
  margin: 0 16px 18px; /* Plus d'espace entre les joueurs */
  padding: 20px 25px;  /* Bande plus grosse */
  min-height: 110px;   /* Plus de hauteur */
  border-color: rgba(0, 255, 255, 0.15);
}

/* On garde l'effet de scan UNIQUEMENT sur les dossiers du podium (top 3) */
.champion-dossier::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: champScan 3s infinite;
}

@keyframes champScan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.rank-tag-big {
  position: absolute;
  top: 0; right: 0; /* Déplacement à droite */
  background: var(--y);
  color: #000;
  font-weight: 900;
  padding: 8px 20px; /* Plus grosse */
  border-radius: 0 0 0 20px; /* Inversion de l'arrondi */
  font-size: 26px; /* Plus grosse */
  z-index: 5;
}

/* BADGE ÉQUIPE EN BAS À DROITE */
.dossier-team-badge {
  position: absolute;
  bottom: 12px;
  right: 15px;
  z-index: 5;
}

.champ-av-wrap {
  filter: drop-shadow(0 0 15px var(--yglow));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.champ-av-wrap .av {
  font-size: 88px; /* Plus imposant pour le cercle de 120px */
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.champ-info { flex: 1; }
.champ-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--y);
  font-weight: 800;
  margin-bottom: 5px;
}
.champ-pseudo {
  font-family: var(--fb);
  font-size: 32px;
  color: #fff;
  line-height: 1;
}
.champ-sub { font-size: 14px; color: var(--txt3); margin-bottom: 10px; }
.champ-pts {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--txt2);
}
.champ-pts span {
  font-family: var(--fb);
  font-size: 28px;
  color: var(--y);
  margin-right: 5px;
}