/* TIPOGRAFÍA PARECIDA A LA OFICIAL */
body {
    margin: 0;
    font-family: "Oswald", sans-serif;
    background: #123456;
}

/* ========== NAV ROJO SUPERIOR ========== */
.top-nav {
    background: #151B54;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 55px;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    gap: 22px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .5px;
}

.nav-menu a.active {
    border-bottom: 2px solid white;
}

.nav-logo {
    height: 40px;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(90deg, #4169E1, #0041C2);
    position: relative;
    padding: 60px 80px;
    color: white;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr;
    align-items: center;
    position: relative;
}

.player-left {
    z-index: 2;
}

.player-number {
    font-size: 50px;
    opacity: .4;
    margin: 0;
}

.player-name {
    font-size: 60px;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1;
}

.btn-buy {
    background: #c70000;
    border: none;
    padding: 12px 26px;
    color: white;
    border-radius: 30px;
    margin: 10px 0;
    cursor: pointer;
    font-size: 16px;
}

.quote {
    font-size: 26px;
    max-width: 400px;
}

/* FOTO */
.player-photo-box {
    text-align: center;
    z-index: 2;
}

.player-photo {
    width: 100%;
    max-width: 480px;
}

/* NÚMERO GIGANTE */
.giant-number {
    position: absolute;
    top: 10%;
    left: 27%;
    font-size: 350px;
    color: #fff;
    opacity: 0.05;
    font-weight: 700;
    z-index: 1;
}

/* STATS DERECHA */
.stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
}

.stat-label {
    font-size: 14px;
    color: #ccc;
    display: block;
}

.stat-value {
    font-size: 40px;
    font-weight: 700;
}

/* ========== SECCIÓN BLANCA ========== */
.white-section {
    background: white;
    padding: 60px 80px;
    color: #222;
}

/* TABS */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab {
    background: #eee;
    border: 1px solid #ccc;
    padding: 10px 40px;
    font-size: 18px;
    cursor: pointer;
}

.tab.active {
    background: #444;
    color: white;
}

/* BIO */
.bio h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.bio p {
    max-width: 800px;
    font-size: 18px;
}

/* DIVISOR */
.divider {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #ccc;
}

/* GRID INFO */
.player-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-label {
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

.info-value,
.info-red {
    font-size: 24px;
    font-weight: 700;
}

.info-red {
    color: #c70000;
}

/* =========================
   VERSIÓN MÓVIL
   ========================= */
@media (max-width: 768px) {

  /* Hero más compacto */
  .hero {
    padding: 40px 16px;
  }

  /* El grid pasa de 3 columnas a 1 */
  .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
  }

  /* Ordenamos los bloques:
     1) texto izquierda
     2) foto
     3) stats */
  .player-left {
    order: 1;
    text-align: left;          /* si la quieres centrada pon center */
    margin-bottom: 20px;
  }

  .player-photo-box {
    order: 2;
    margin: 0 auto;
  }

  .player-photo {
    display: block;
    width: 80%;
    max-width: 320px;
    margin: 0 auto;
  }

  .stats {
    order: 3;
    margin-top: 24px;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
  }

  .stat-value {
    font-size: 28px;
  }

  /* Número gigante se centra y se hace más pequeño
     para no tapar la foto */
  .giant-number {
    font-size: 220px;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Sección blanca más angosta y en 1 columna */
  .white-section {
    padding: 40px 16px;
  }

  .player-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}