:root {
      --primary: #1E3F78;
    }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #f7f9fc;
      color: #333;
    }

    /* HEADER */
    header {
      background: var(--primary);
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
      flex-wrap: wrap;
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .header-left img {
      width: 40px;
      height: 40px;
      border-radius: 8px;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      position: relative;
    }

    nav a:hover {
      text-decoration: underline;
    }

    /* DROPDOWN */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: white;
      color: #333;
      min-width: 150px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
      border-radius: 6px;
      top: 100%;
      left: 0;
      overflow: hidden;
      z-index: 10;
    }

    .dropdown-content a {
      display: block;
      padding: 0.6rem 1rem;
      color: #333;
      text-decoration: none;
    }

    .dropdown-content a:hover {
      background-color: #f0f0f0;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    /* LANGUAGE SELECTOR */
    /* AJUSTES PARA EL SELECTOR DE IDIOMA (BASADO EN EL DROPDOWN EXISTENTE) */

/* Contenedor del desplegable de idioma */
.lang-dropdown {
    /* Mantiene el comportamiento base del .dropdown */
    position: relative;
    /* Necesario si se quiere que se muestre sobre el menú de juegos en móviles */
    z-index: 11; 
}

/* El elemento visible que se hace clic para desplegar (lo que antes era .lang-select) */
.lang-select {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff20;
    border: 1px solid #ffffff40;
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    cursor: pointer;
    font-weight: 500;
    /* Reiniciar estilos de 'a' para que se parezca al antiguo .lang-select */
    color: #fff !important; 
    text-decoration: none !important;
}

/* El contenido desplegable de idiomas */
.lang-content {
    /* Extender el estilo del dropdown-content existente */
    min-width: 100px;
    right: 0; /* Lo alinea a la derecha del botón principal */
    left: auto; /* Deshace el left: 0 del menú de juegos */
}

.lang-content a {
    /* Estilo para los elementos del desplegable de idiomas */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #333;
    font-weight: 500;
}

/* Bandera dentro del desplegable */
.lang-content a img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

/* Estilo para el idioma actualmente seleccionado */
.lang-content a.active-lang {
    background-color: #e0e0e0; /* Color de fondo más oscuro para el seleccionado */
    pointer-events: none; /* No se puede hacer clic en el idioma activo */
}

.lang-content a:not(.active-lang):hover {
    background-color: #f0f0f0;
}

    /* HERO */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 3rem 10%;
      min-height: 50vh;
      background: linear-gradient(135deg, var(--primary) 0%, #294e99 100%);
      color: white;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .hero-left img {
      width: 280px;
      height: 280px;
      border-radius: 20px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .hero-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 2rem;
      text-align: left;
    }

    .hero-right h1 {
      font-size: 3rem;
      margin: 0;
      font-weight: 600;
    }

    .hero-right p {
      font-size: 1.2rem;
      margin: 0;
      opacity: 0.9;
    }

    .download-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .download-buttons img {
      width: 180px;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .download-buttons img:hover {
      transform: scale(1.05);
    }

    /* ABOUT SECTION */
    .about {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 4rem 10%;
      gap: 3rem;
      flex-wrap: wrap;
      background-color: #fff;
    }

    .about-text {
      flex: 1.2;
      max-width: 600px;
    }

    .about-text h2 {
      color: var(--primary);
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .about-text p {
      margin-bottom: 1rem;
      line-height: 1.6;
      font-size: 1.05rem;
    }

    .about-banner {
      flex: 1;
      min-width: 280px;
    }

    .about-banner img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .usp-container {
    display: flex;
    flex-direction: row; /* Desktop: ítems en fila */
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa; /* Fondo claro */
    /* border: 1px solid #dee2e6;  Desactivado si no lo necesitas, la sombra ya lo separa */
    border-radius: 10px;
    max-width: 1000px; /* Limita el ancho máximo para evitar que se extienda demasiado */
    margin: 20px auto; /* Centra el contenedor */
    font-family: Arial, sans-serif;
    box-sizing: border-box; /* Asegura que padding y border se incluyan en el ancho */
  }

  .usp-item {
    flex: 1; /* Distribuye el espacio uniformemente */
    padding: 15px;
    text-align: center;
    background-color: #ffffff; /* Fondo blanco para las tarjetas */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Asegura que padding y border se incluyan en el ancho */
  }

  .usp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .usp-icon {
    font-size: 36px;
    color: var(--primary); /* ¡Aquí usamos tu color primario! */
    margin-bottom: 10px;
  }

  .usp-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #343a40; /* Un gris oscuro para el título */
    margin-bottom: 5px;
  }

  .usp-description {
    font-size: 0.9em;
    color: #6c757d; /* Un gris más claro para la descripción */
  }

    /* MEDIA QUERIES */

    /* iPad / tablets */
    @media (max-width: 1024px) {
      .hero {
        padding: 3rem 5%;
      }

      .hero-right h1 {
        font-size: 2.5rem;
      }

      .hero-right p {
        font-size: 1.1rem;
      }

      .about {
        padding: 3rem 5%;
      }
    }

    /* móviles grandes (Galaxy, iPhone Plus) */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      nav {
        flex-wrap: wrap;
        align-items: stretch;
        gap: 1rem;
      }

      .hero {
        flex-direction: column;
        text-align: center;
      }

      .hero-right {
        align-items: center;
      }

      .hero-right h1 {
        font-size: 2.2rem;
      }

      .hero-right p {
        font-size: 1rem;
      }

      .download-buttons {
        justify-content: center;
      }

      .about {
        flex-direction: column;
        text-align: center;
      }

      .about-text {
        max-width: 100%;
      }

      .usp-container {
        display: block;
        flex-direction: column; /* Móvil: ítems en columna */
        padding: 10px; /* Menos padding en móvil */
        margin: 10px auto; /* Margen ajustado para móvil */
      }
      .usp-item {
        margin-bottom: 15px; /* Espacio entre los ítems apilados */
        flex: unset; /* Deshace el flex:1 para que ocupen todo el ancho */
        width: 100%; /* Asegura que el ítem ocupe todo el ancho disponible */
      }
    }

    /* móviles pequeños */
    @media (max-width: 480px) {
      header {
        padding: 1rem;
      }

      nav {
        align-items: stretch;
      } 

      .hero {
        padding: 2rem 1rem;
      }

      .hero-left img {
        width: 200px;
        height: 200px;
      }

      .hero-right h1 {
        font-size: 1.8rem;
      }

      .download-buttons img {
        width: 150px;
      }

      .about {
        padding: 2rem 1rem;
      }

      .about-text h2 {
        font-size: 1.5rem;
      }

      .about-text p {
        font-size: 0.95rem;
      }
      .usp-container {
        display: block;
        flex-direction: column; /* Móvil: ítems en columna */
        padding: 10px; /* Menos padding en móvil */
        margin: 10px auto; /* Margen ajustado para móvil */
      }
      .usp-item {
        margin-bottom: 15px; /* Espacio entre los ítems apilados */
        flex: unset; /* Deshace el flex:1 para que ocupen todo el ancho */
        width: 100%; /* Asegura que el ítem ocupe todo el ancho disponible */
      }
    }


  
  