/* Ajustes responsive adicionales */
@media (max-width: 768px) {
  /* Intro y textos */
  .intro-section,
  .texto-minimalista {
    width: 100% !important;
    padding: 0 1rem;
    text-align: justify;
  }

  /* Grilla de campeones: 1 columna en mobile */
  .tier-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tier {
    padding: 1rem;
  }

  /* Campeones más chicos en móvil */
  .champion {
    width: 48px;
    height: 48px;
  }

  /* Header y navegación */
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }

  nav a {
    margin: 0.25rem;
    font-size: 0.9rem;
  }

  /* Anuncios debajo del contenido */
  .ad-sidebar {
    width: 100%;
    position: relative;
    top: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
  }

  .ad-unit {
    flex: 1 1 45%;
    max-width: 200px;
  }

  footer {
    font-size: 0.75rem;
    padding: 1rem;
  }
}

/* Ultra pequeño (celulares <480px) */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.25rem;
    text-align: center;
  }

  .champion {
    width: 40px;
    height: 40px;
  }

  nav {
    justify-content: center;
  }
}
