/* =========================
   BASE
========================= */

body 
{ 
    background-color: #0f172a;
    color: #e5e7eb; 
    overflow-x: hidden; 
}


/* =========================
   NAVBAR
========================= */

.navbar 
{
  background: linear-gradient(90deg, #020617, #0f172a);
  border-bottom: 1px solid #1e293b;
}

.navbar-brand 
{
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-link 
{
  position: relative;
  color: #e5e7eb !important;
}

.nav-link::after 
{
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #38bdf8;
  transition: width 0.3s ease;
}

.nav-link:hover::after 
{
  width: 100%;
}


/* =========================
   HEADER EQUIPO
========================= */

.perfil-header 
{ 
    display: flex; 
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px; 
}

.opgg-link 
{
    display: inline-block;
    transition: transform 0.2s ease;
}

.opgg-link:hover
{
    transform: scale(1.1);
}

.opgg-img-logo 
{
    width: 65px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(83, 131, 232, 0.3));
}


/* =========================
   CARDS
========================= */

.main-card 
{
    background-color: #020617; 
    border: 1px solid #1e293b; 
    border-radius: 12px; 
    padding: 25px;
    min-height: 200px;
}


/* =========================
   JUGADORES
========================= */

.jugador-card 
{ 
    background-color: #020617; 
    border: 1px solid #1e293b; 
    padding: 18px; 
    border-radius: 10px; 
    display: flex; 
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    height: 70px;

    /* 🔥 hace que se vea MUCHO más pro */
    transition: all .2s ease;
}

.jugador-card:hover
{
    border-color: #38bdf8;
    transform: translateY(-3px);
}

.rol-icon 
{ 
    width: 28px; 
    margin-right: 15px;
    filter: brightness(1.2) sepia(1) saturate(5);
}


/* =========================
   BADGE CAPITÁN
========================= */

.badge-capi 
{ 
    background-color: #ffc107; 
    color: #000; 
    font-weight: bold; 
    border-radius: 50px; 
    padding: 4px 10px; 
    font-size: 0.8rem; 
    border: 1px solid #000; 
    margin-left: 10px; 
}


/* =========================
   CAMPEONES
========================= */

.champ-card 
{
    background:#020617;
    border:1px solid #1e293b;
    border-radius:10px;
    padding:15px;
    display:flex;
    align-items:center;
    transition:.2s;
}

.champ-card:hover
{
    border-color:#22c55e;
    transform: translateY(-3px);
}

.champ-img 
{
    width: 55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;
    border:1px solid #1e293b;
}

.badge-wr 
{ 
    background:green; 
    color:#fff; 
    font-size:.75rem; 
    padding:2px 8px; 
    border-radius:6px; 
    font-weight:800; 
}

.wins-tag 
{ 
    background:#1e293b; 
    color:#94a3b8; 
    font-size:.7rem; 
    padding:3px 8px; 
    border-radius:4px; 
}
