body {
  background: radial-gradient(circle at center, #0f1538 0%, #060a1b 100%);
  color: #eaf0ff;
  font-family: 'Montserrat', sans-serif;
}

/* ===== HERO ===== */
.profile-hero {
  position: relative;
  background: url('../img/hero-profile-bg.jpg') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.profile-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 30, 0.6);
  backdrop-filter: blur(5px);
}
.profile-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.profile-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #FFD700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
  margin-bottom: 1rem;
}
.profile-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  margin: 0;
}
.profile-role {
  color: #FFD700;
  font-weight: 700;
  margin-top: 0.3rem;
}
.hero-stats {
  margin-top: 0.6rem;
  color: #aeb9df;
}

/* ===== MAIN ===== */
.profile-main {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  gap: 2rem;
}

/* INFO E STATISTICHE */
.profile-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.info-card {
  background: rgba(10,15,44,0.9);
  border: 1px solid #2a355c;
  border-radius: 12px;
  padding: 1rem 1.2rem;
}
.info-card h2 {
  color: #FFD700;
  font-family: 'Cinzel', serif;
  margin-bottom: 0.7rem;
}
.info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #cfd6f6;
}
.info-card li { margin-bottom: 0.3rem; }

/* CHAMPIONS & RUOLI */
.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.stat-card {
  background: rgba(10,15,44,0.9);
  border: 1px solid #2a355c;
  border-radius: 12px;
  padding: 1rem 1.2rem;
}
.champ-list img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 0.4rem;
  border-radius: 6px;
}
.role-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.role-bar span {
  width: 80px;
}
.role-bar .bar {
  height: 10px;
  background: linear-gradient(90deg, #FFD700, #D4AF37);
  border-radius: 5px;
}

/* RECENSIONI */
.reviews-section {
  margin-top: 2rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.reviews-card {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(10,15,44,0.9);
}
.reviews-positive {
  border: 2px solid #00ff9d;
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}
.reviews-negative {
  border: 2px solid #ff004d;
  box-shadow: 0 0 20px rgba(255, 0, 77, 0.3);
}
.reviews-card h3 {
  font-family: 'Cinzel', serif;
  margin-bottom: 0.8rem;
}
.reviews-card table {
  width: 100%;
  border-collapse: collapse;
  color: #eaf0ff;
  font-size: 0.9rem;
}
.reviews-card th, .reviews-card td {
  padding: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) {
  .profile-info, .profile-stats, .reviews-grid {
    grid-template-columns: 1fr;
  }
}
/* ======= CENTRATURA PERFETTA HERO ======= */
.profile-hero {
  position: relative;
  background: url('../img/hero-profile-bg.jpg') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.profile-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 30, 0.6);
  backdrop-filter: blur(5px);
}

.profile-hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ✅ Avatar centrato in modo geometrico perfetto */
.profile-avatar {
  display: block;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #FFD700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  object-fit: cover;
  margin-bottom: 0.9rem;
}

/* Testo centrato visivamente */
.profile-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  margin: 0;
  text-align: center;
}

.profile-role {
  color: #FFD700;
  font-weight: 700;
  margin-top: 0.3rem;
  text-align: center;
}

.hero-stats {
  margin-top: 0.6rem;
  color: #aeb9df;
  text-align: center;
}

/* Mobile responsivo */
@media (max-width: 768px) {
  .profile-avatar {
    width: 110px;
    height: 110px;
    margin-bottom: 0.8rem;
  }
}
/* ===== Pulsante Lista Amici ===== */
.profile-friends-btn {
  text-align: center;
  margin-top: 1.2rem;
}
.profile-friends-btn .btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #0A0F2C;
  font-weight: 700;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}
.profile-friends-btn .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}



/* ===========================
   RUOLI COPERTI (%) — UI
   =========================== */

#rolesCard .roles-chart {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#rolesCard .role-row {
  display: grid;
  grid-template-columns: 70px 1fr 46px; /* label | barra | percentuale */
  align-items: center;
  gap: 12px;
}

#rolesCard .role-name {
  color: #e9f0ff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  opacity: 0.95;
  white-space: nowrap;
}

#rolesCard .role-percent {
  text-align: right;
  color: #9fb0d9;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  font-variant-numeric: tabular-nums;
}

/* Track della barra */
#rolesCard .bar {
  position: relative;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.14);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

/* Fill animato */
#rolesCard .bar .fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;

  background: linear-gradient(90deg, rgba(255, 215, 0, 0.65), rgba(255, 215, 0, 1));
  box-shadow:
    0 0 14px rgba(255, 215, 0, 0.25),
    inset 0 0 0 1px rgba(0, 0, 0, 0.25);

  transition: width 520ms ease;
}

/* Micro glow al passaggio */
#rolesCard .role-row:hover .bar {
  border-color: rgba(255, 215, 0, 0.22);
}
#rolesCard .role-row:hover .bar .fill {
  box-shadow:
    0 0 18px rgba(255, 215, 0, 0.30),
    inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

/* Testo hint */
#rolesCard .roles-hint {
  margin-top: 10px;
  font-size: 0.88rem;
  color: #9fb0d9;
  opacity: 0.9;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 720px) {
  #rolesCard .role-row {
    grid-template-columns: 64px 1fr 42px;
    gap: 10px;
  }
  #rolesCard .role-name {
    font-size: 0.92rem;
  }
  #rolesCard .role-percent {
    font-size: 0.9rem;
  }
  #rolesCard .bar {
    height: 11px;
  }
}




/* ===========================
   RUOLI COPERTI (%) — PREMIUM
   =========================== */

#rolesCard h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

#rolesCard .roles-chart {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#rolesCard .role-row {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr 56px; /* label | bar | pill */
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 14px;
  transition: background 180ms ease, transform 180ms ease;
}

#rolesCard .role-row:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

#rolesCard .role-name {
  color: #e9f0ff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* Percentuale “pill” */
#rolesCard .role-percent {
  justify-self: end;
  min-width: 52px;
  text-align: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.86rem;
  letter-spacing: 0.2px;
  color: #0b1020;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.95), rgba(255, 215, 0, 0.65));
  border: 1px solid rgba(255, 215, 0, 0.28);
  box-shadow:
    0 10px 18px rgba(0,0,0,0.25),
    0 0 22px rgba(255, 215, 0, 0.12);
  font-variant-numeric: tabular-nums;
}

/* Track barra */
#rolesCard .bar {
  position: relative;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 215, 0, 0.10);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255,255,255,0.02);
}

/* Fill */
#rolesCard .bar .fill {
  position: relative;
  height: 100%;
  width: 0%;
  border-radius: 999px;

  background: linear-gradient(90deg, rgba(255, 215, 0, 0.45), rgba(255, 215, 0, 1));
  box-shadow:
    0 0 18px rgba(255, 215, 0, 0.25),
    inset 0 0 0 1px rgba(0, 0, 0, 0.25);

  transition: width 650ms cubic-bezier(.22,1,.36,1);
}

/* Effetto “sheen” sopra la barra */
#rolesCard .bar .fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.30),
    rgba(255,255,255,0)
  );
  transform: skewX(-18deg);
  opacity: 0.55;
  animation: scRoleSheen 2.8s ease-in-out infinite;
}

@keyframes scRoleSheen {
  0% { left: -45%; opacity: 0.0; }
  15% { opacity: 0.55; }
  55% { opacity: 0.25; }
  100% { left: 120%; opacity: 0.0; }
}

/* Ruolo dominante: evidenziato */
#rolesCard .role-row.is-dominant {
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.18);
}

#rolesCard .role-row.is-dominant .role-name {
  color: #ffd700;
}

#rolesCard .role-row.is-dominant .bar {
  border-color: rgba(255, 215, 0, 0.22);
}

#rolesCard .role-row.is-dominant .bar .fill {
  box-shadow:
    0 0 26px rgba(255, 215, 0, 0.32),
    inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

/* Hint */
#rolesCard .roles-hint {
  margin-top: 10px;
  font-size: 0.88rem;
  color: #9fb0d9;
  opacity: 0.9;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 720px) {
  #rolesCard .role-row {
    grid-template-columns: 70px 1fr 52px;
    padding: 8px 8px;
    gap: 10px;
  }
  #rolesCard .bar { height: 11px; }
  #rolesCard .role-percent { min-width: 48px; padding: 6px 8px; }
}



/* =========================================================
   SUMMONER CONNECT — ROLES (%) PREMIUM (PROFILO)
   Target: #rolesCard + .roles-chart.premium
   ========================================================= */

/* Card spacing */
#rolesCard .roles-chart.premium {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Riga ruolo: nome + barra */
#rolesCard .role-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 14px;
}

/* Nome ruolo */
#rolesCard .role-name {
  color: #e9f0ff;
  font-weight: 800;
  letter-spacing: 0.2px;
  opacity: 0.95;
}

/* Barra container */
#rolesCard .bar {
  position: relative;
  height: 18px;                 /* ✅ più spessa */
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.18); /* oro antico */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Riempimento */
#rolesCard .bar > .fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #b08d2a 0%,
    #d4af37 45%,
    #8a6f1f 100%
  ); /* ✅ oro antico premium */
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.18),
    0 0 18px rgba(212, 175, 55, 0.18);
  transition: width 520ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

/* Effetto “shine” leggero */
#rolesCard .bar > .fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: -25%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  opacity: 0.55;
  pointer-events: none;
}

/* Percentuale: pill dentro la barra, sempre leggibile */
#rolesCard .bar > .bar-text {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
  padding: 3px 10px;
  border-radius: 999px;

  /* pill scura “premium” */
  background: rgba(8, 12, 20, 0.62);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #f2de9a;

  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  user-select: none;
  white-space: nowrap;
}

/* ✅ FIX CONTRASTO: percentuale sempre leggibile anche con .is-strong */
#rolesCard .bar.is-strong > .bar-text {
  background: rgba(8, 12, 20, 0.72);           /* pill più scura */
  border-color: rgba(212, 175, 55, 0.40);      /* oro antico */
  color: #f6e7b2;                              /* testo chiaro */
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.55);  /* micro contrasto */
}


/* Highlight ruolo dominante (JS aggiunge .is-dominant alla .role-row) */
#rolesCard .role-row.is-dominant {
  padding: 10px 10px;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.12) 0%,
    rgba(255, 255, 255, 0.03) 55%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

/* Hint sotto */
#rolesCard .roles-hint {
  margin-top: 12px;
  color: #9fb0d9;
  opacity: 0.85;
  font-size: 0.88rem;
}

/* Responsive: su schermi piccoli nome sopra, barra sotto */
@media (max-width: 520px) {
  #rolesCard .role-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #rolesCard .role-name {
    font-size: 0.95rem;
  }

  #rolesCard .bar {
    height: 20px; /* leggermente più alta in mobile */
  }

  #rolesCard .bar > .bar-text {
    right: 8px;
    font-size: 0.86rem;
    padding: 3px 10px;
  }
}

/* Accessibilità: riduci animazioni se richiesto */
@media (prefers-reduced-motion: reduce) {
  #rolesCard .bar > .fill {
    transition: none;
  }
}



#rolesCard .bar > .bar-text {
  backdrop-filter: blur(3px);
}
#rolesCard .bar .fill { transition: width .6s ease; }




.sc-user-btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(255,215,0,.18);
  background:rgba(10,15,44,.22);
  cursor:pointer;color:#FFD700;font-weight:900;letter-spacing:.6px;
}
.sc-user-btn:hover{background:rgba(10,15,44,.35);box-shadow:0 0 18px rgba(255,215,0,.10);transform:translateY(-1px)}
.sc-user-btn__label{text-transform:uppercase;font-size:1.02rem}
.sc-user-btn__caret{font-size:.9rem;opacity:.95}

.sc-user-menu{
  width:280px;padding:12px;border-radius:16px;
  border:1px solid rgba(255,215,0,.18);
  background:rgba(10,15,44,.92);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 50px rgba(0,0,0,.45),0 0 26px rgba(255,215,0,.08);
  display:none;z-index:999999;
}
.sc-user-menu.show{display:block}
.sc-user-menu__header{display:flex;flex-direction:column;align-items:center;gap:10px;padding:6px 6px 10px}
.sc-user-menu__avatar{width:64px;height:64px;border-radius:999px;object-fit:cover;border:3px solid rgba(255,215,0,.85);box-shadow:0 0 18px rgba(255,215,0,.18)}
.sc-user-menu__name{color:#FFD700;font-weight:950;font-size:1.15rem;text-align:center}
.sc-user-menu__badge{padding:6px 12px;border-radius:999px;font-weight:950;font-size:.88rem}
.sc-user-menu__badge.is-unverified{color:#FFD700;background:rgba(255,215,0,.10);border:1px solid rgba(255,215,0,.25)}
.sc-user-menu__badge.is-verified{color:#9fffd0;background:rgba(80,255,160,.10);border:1px solid rgba(80,255,160,.25)}
.sc-user-menu__status{color:rgba(235,242,255,.86);font-weight:700;font-size:.92rem;text-align:center}
.sc-user-menu__sep{height:1px;background:rgba(255,255,255,.08);margin:10px 0 8px}
.sc-user-menu__item{
  display:flex;align-items:center;width:100%;
  padding:11px 10px;border-radius:12px;
  color:rgba(255,255,255,.92);font-weight:850;text-decoration:none;
  background:transparent;border:none;cursor:pointer;
}
.sc-user-menu__item:hover{background:rgba(255,255,255,.06);transform:translateY(-1px);color:#fff}
.sc-user-menu__logout{margin-top:4px;color:rgba(255,210,210,.95)}
.sc-user-menu__logout:hover{background:rgba(255,80,80,.10)}



/* ===== USER DROPDOWN — profilo.css (override sicuro) ===== */
.sc-user-btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(255,215,0,.18);
  background:rgba(10,15,44,.18);
  cursor:pointer;color:#FFD700;font-weight:900;letter-spacing:.6px;
}
.sc-user-btn:hover{
  background:rgba(10,15,44,.32);
  box-shadow:0 0 20px rgba(255,215,0,.12);
  transform:translateY(-1px)
}
.sc-user-btn__label{text-transform:uppercase;font-size:1.02rem}
.sc-user-btn__caret{font-size:.9rem;opacity:.95}

.sc-user-menu{
  width:280px;padding:12px;border-radius:16px;
  border:1px solid rgba(255,215,0,.18);
  background:rgba(10,15,44,.92);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 50px rgba(0,0,0,.45),0 0 26px rgba(255,215,0,.10);
  display:none;
}
.sc-user-menu.show{display:block}

.sc-user-menu__header{
  display:flex;flex-direction:column;align-items:center;
  gap:10px;padding:6px 6px 10px;
}
.sc-user-menu__avatar{
  width:64px;height:64px;border-radius:999px;object-fit:cover;
  border:3px solid rgba(255,215,0,.85);
  box-shadow:0 0 18px rgba(255,215,0,.18)
}
.sc-user-menu__name{
  color:#FFD700;font-weight:950;font-size:1.15rem;text-align:center
}
.sc-user-menu__badge{
  padding:6px 12px;border-radius:999px;font-weight:950;font-size:.88rem
}
.sc-user-menu__badge.is-unverified{
  color:#FFD700;background:rgba(255,215,0,.10);border:1px solid rgba(255,215,0,.25)
}
.sc-user-menu__badge.is-verified{
  color:#9fffd0;background:rgba(80,255,160,.10);border:1px solid rgba(80,255,160,.25)
}
.sc-user-menu__status{
  color:rgba(235,242,255,.86);font-weight:700;font-size:.92rem;text-align:center
}
.sc-user-menu__sep{height:1px;background:rgba(255,255,255,.08);margin:10px 0 8px}

.sc-user-menu__item{
  display:flex;align-items:center;width:100%;
  padding:11px 10px;border-radius:12px;
  color:rgba(255,255,255,.92);font-weight:850;text-decoration:none;
  background:transparent;border:none;cursor:pointer;
}
.sc-user-menu__item:hover{
  background:rgba(255,255,255,.06);
  transform:translateY(-1px);
  color:#fff
}
.sc-user-menu__logout{margin-top:4px;color:rgba(255,210,210,.95)}
.sc-user-menu__logout:hover{background:rgba(255,80,80,.10)}



.profile-nick {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin: 10px 0 6px;
  color: #e9f0ff;
}

.profile-subtitle {
  margin-bottom: 10px;
}

.evocatore-label {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 999px;
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.08);
}

.profile-rank {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.rank-title {
  font-size: 0.8rem;
  color: #9fb0d9;
  font-weight: 600;
}

.rank-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #00ff99;
}

.rank-lp {
  font-size: 0.85rem;
  color: #ffd700;
  font-weight: 700;
}







.role-pill{
  margin-top: 8px;
  display:flex;
  justify-content:center;
}
.role-pill__text{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 14px;
  border-radius:999px;
  border:1px solid rgba(255,215,0,.35);
  background:rgba(255,215,0,.10);
  color:#ffd700;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.78rem;
}

.rank-lines{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:center;
}
.rank-line{
  display:flex;
  gap:10px;
  align-items:baseline;
  color:#cdd8f0;
  font-size:.95rem;
}
.rank-label{
  opacity:.85;
}
.rank-value{
  font-weight:900;
}
.rank-lp{
  color:#ffd700;
  font-weight:900;
}
