body {
    background-image: url(../../Imagenes/FondoAnimado1.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: relative;
    background-position: left; /* Agrega esto */
    image-rendering: pixelated;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    margin-bottom: 0; /* Agregué esto para que no haya margen inferior */
    position: relative;
    min-width: 8630px; /* Establece un ancho mínimo para el cuerpo */
    overflow-x: auto;
  }
    
    .header-container {
      max-width: 10000px;
      min-width: 1000px;
      max-height: 50px;
      background-color: #242424; /* Fondo negro oscuro */
      color: #fff;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    header h1 {
      margin: 0;
      color: #fff;
      font-size: 16px;
      font-weight: bold; 
      text-transform: uppercase; 
      text-decoration: underline;
      letter-spacing: 0.1rem; 
    }
    
    nav {
      background-color: transparent; /* Eliminé el fondo de la barra de navegación */
      color: #fff;
      padding: 0; /* Eliminé el padding */
      display: flex; /* Use flexbox para la barra de navegación */
    }
    
    nav ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      display: flex; /* Use flexbox para los elementos de la barra de navegación */
    }
    
    nav ul li {
      margin-right: 1rem; /* Ajusté el margen entre elementos */
      display: block; /* Para que los elementos de la barra de navegación ocupen todo el ancho */
    }
    
    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 8px; /* Ajusté el tamaño del texto */
      font-weight: bold; /* Hice el texto más bold */
      text-transform: uppercase; /* Puse el texto en mayúsculas */
      letter-spacing: 0.1rem; /* Ajusté el espacio entre letras */
      padding: 0.5rem 1rem; /* Agregué padding al texto */
      border-radius: 5px; /* Agregué bordes redondeados al texto */
    }
    
    /* -----------------------------------------------Portadas General---Comienzo-------------------------------------------- */
    .portadas {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    /* -----------------------------------------------Portadas General---Final-------------------------------------------- */
    
    /* -----------------------------------------------Portada0---Comienzo-------------------------------------------- */
    .portada0 {
      width: 600px;
      height: 500px;
      margin-top: 20px;
      margin-bottom: 0px;
      margin-left: 0px;
      padding: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      background-color: transparent;
      background-position: center;
    }
    
    .portada0 .texto-inferior {
      color: #fff;
      font-size: 16px;
      text-align: justify;
      margin-left: 0px;
      margin-bottom: 20px;
    }
    
    .portada0 p {
      color: #fff;
      font-size: 16px;
      text-align: justify;
      align-self: flex-start;
      margin-left: 0px;
      margin-bottom: 0px;
    }
    
    .portada0 a {
      color: #fff;
      font-size: 10px;
      font-family: 'Courier New', Courier, monospace;
      text-align: left;
      align-self: flex-start;
      margin-left: 0px;
      white-space: pre;
    }
    /* -----------------------------------------------Portada0---Final-------------------------------------------- */
    
    /* -----------------------------------------------Portada1---Comienzo-------------------------------------------- */
    .portada1 {
      width: 300px;
      height: 400px;
      margin-top: 20px;
      margin-left: 20px;
      margin-right: 0px;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 0 10px #0000001a;
      background-color: #333;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }
    
    .portada-header1 {
      position: relative;
      top: -10px;
      left: 0;
      width: 100%;
      height: 100px; /* ajusta la altura del header */
      background-color: #5c6bc0; /* cambia el color a azul */
      padding: 10px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      border-bottom: 1px solid #5c6bc0;
      font-weight: bold;
      text-align: center;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    
    .header-content img {
      width: 124px; /* ajusta el tamaño de la imagen */
      height: 30px;
      margin-right: 10px;
      margin-left: 5px;
      margin-bottom: -5px;
    }
    
    #miembros-en-linea {
      font-size: 14px;
      font-weight: bold;
      color: #ffffff;
      margin-right: 10px;
      margin-bottom: -5px;
    }
    
    #lista-miembros::before {
      content: "GENTECILLA CONECTADA:";
      text-align: left;
      font-size: 16px;
      font-weight: bold;
      color: #838383;
      margin-top: 20px;
      margin-bottom: 10px;
      margin-left: 20px;
      display: block;
    }
    
    #lista-miembros {
      position: relative;
      text-align: left;
      width: 320px;
      height: 500px; /* altura concreta */
      overflow-y: auto; /* barra lateral para desplazarse */
      padding: 0px;
      margin-top: -10px;
      margin-bottom: 32px;
      color: #838383;
    }
    
    #lista-miembros::-webkit-scrollbar {
      width: 10px;
      height: 10px;
    }
    
    #lista-miembros::-webkit-scrollbar-thumb {
      background-color: #ffffff;
      border-radius: 0;
    }
    
    #lista-miembros::-webkit-scrollbar-track {
      background-color: #333;
      border-radius: 0;
    }
    
    #lista-miembros img {
      width: 16px; /* Ajusta el tamaño del avatar */
      height: 16px; /* Ajusta el tamaño del avatar */
      border-radius: 50%; /* Hace que el avatar sea circular */
      object-fit: cover; /* Asegura que el avatar se ajuste al tamaño */
      margin-right: 1px; /* Agrega un margen entre el avatar y el texto */
      margin-left: 40px;
    }
    
    .footer-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
      margin-top: 0px;
      background-color: #333;
      border-top: 1px solid #000000;
      width: 300px;
      margin-left: 0;
      margin-right: 0;
      position: absolute;
      bottom: 0;
      left: 0;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
    }
    
    .footer-left {
      margin-left: 10px;
      margin-right: 10px;
      margin-bottom: -20px;
      margin-top: -20px;
      font-size: 14px;
      color: #686666;
      text-align: left; /* Agrega esto */
    }
    
    .footer-right {
      margin-right: 0;
      margin-left: -10px;
      margin-bottom: -20px;
      margin-top: -20px;
    
    }
    
    .discord-button {
      background-color: #53555a;
      color: #fff;
      padding: 5px 10px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-decoration: none;
      margin-right: 0;
    }
    
    .discord-button:hover {
      background-color: #5c6bc0;
    }
  /* -----------------------------------------------Portada1---Final-------------------------------------------- */
  
  /* -----------------------------------------------Juegos-titulo-container---Comienzo-------------------------------------------- */
  .juegos-titulo1, .juegos-titulo2 {
      width: 600px;
      height: 50px;
      margin-top: 10px;
      margin-bottom: 1px;
      margin-left: -340px;
      padding: 10px;
      font-size: 18px;
      color: #fff;
      font-weight: bold;
      border-bottom: 1px solid #fff;
      background-color: transparent;
      display: flex;
      justify-content: left;
    }
  /* -----------------------------------------------Juegos-titulo-container---Final-------------------------------------------- */
  
  /* -----------------------------------------------r1, r2, r3, r4, r5---Comienzo-------------------------------------------- */
  .r1, .r2, .r3, .r4, .r5 {
    width: 620px;
    color: #fff;
    margin-left: -340px;
    font-size: 16px;
    text-align: justify;
    margin-bottom: 0px;
    background-color: transparent;
}
  /* -----------------------------------------------r1, r2, r3, r4, r5---Final-------------------------------------------- */
  
    .info-box {
      width: 1000px;
      height: 4000px;
      background-color: #282836;
      border: 1px solid #282836;
      border-radius: 5px;
      margin: auto;
      margin-top: 150px;
      margin-bottom: 100px;
      text-align: center;
      padding: 10px;
    }
    
    .info-box h1 {
      color: #fff;
      margin-top: 0px;
      margin-bottom: 5px;
      margin-top: 30px;
      margin-left: 30px;
      text-align: left;
    }
  
    /* -----------------------------------------------Área Clickable Inicio---Comienzo-------------------------------------------- */
  .clickable-area {
    position: absolute; /* Fijo para que cubra toda la ventana */
    top: 55px; /* Desde la parte superior */
    left: 3805px; /* Desde la parte izquierda */
    width: 275px; /* Ancho completo */
    height: 140px; /* Alto completo */
    cursor: pointer; /* Cambia el cursor al pasar sobre el área */
    z-index: 10; /* Asegúrate de que esté por encima de otros elementos */
    background: rgba(43, 48, 116, 0); /* Fondo transparente */
  }

  .clickable-area-atras {
    position: absolute; /* Fijo para que cubra toda la ventana */
    top: 160px; /* Desde la parte superior */
    left: 3785px; /* Desde la parte izquierda */
    width: 48px; /* Ancho completo */
    height: 48px; /* Alto completo */
    cursor: pointer; /* Cambia el cursor al pasar sobre el área */
    z-index: 10; /* Asegúrate de que esté por encima de otros elementos */
    background-image: url(../../Imagenes/PositParaAtras.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  /* -----------------------------------------------Área Clickable Inicio---Final-------------------------------------------- */
  
  /* -----------------------------------------------Tabla-Mods---Comienzo-------------------------------------------- */
.juegos-titulo4 {
    margin-top: -200px;
  }
  
  .r4 {
      height: 800px;
  }
  
  .tabla-mods {
      border-collapse: collapse;
      width: 100%;
      border: 1px solid #7e5858;
      background-color: hsl(240, 15%, 14%);
      box-shadow: 0px 0px 10px #CE8D8D;
      font-size: 12px;
      max-height: 700px;
      overflow-x: hidden;
      overflow-y: auto;
      display: block;
  }
  
  .tabla-mods::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  .tabla-mods::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 0;
  }
  
  .tabla-mods::-webkit-scrollbar-track {
    background-color: #333;
    border-radius: 0;
  }
  
  .tabla-mods th, .tabla-mods td {
      border: 1px solid #CE8D8D;
      padding: 10px;
      text-align: center;
      max-height: 400px;
  }
  
  .tabla-mods th {
      font-size: 14px;
      background-color: #CE8D8D;
  }
  
  .tabla-mods td {
    font-size: 21px;
      text-align: center;
  }
  
  /* -----------------------------------------------Tabla-Mods---Final-------------------------------------------- */
  
    /* -----------------------------------------------Pie de Página---Comienzo-------------------------------------------- */
    .footerpartebajapagina {
      max-width: 100%;
      min-width: 1000px;
      height: 500px;
      background-color: #ffffff;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      position: relative;
      bottom: 0;
      left: 0;
      right: 0;
      text-align: center;
      flex-direction: column;
    }
    
    .footer-section {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
    }
    
    .pf1 {
      max-width: 100%;
      min-width: 100%;
      height: 500px;
      background-color: #7A288A;
      color: #fff;
      padding: 0px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      text-align: center;
      flex-direction: column;
      margin-top: -16px;
    }
    
    .pf2 {
      max-width: 100%;
      min-width: 100%;
      height: 50px;
      background-color: #333;
      color: #fff;
      margin-top: 484px;
      padding: 0px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      text-align: center;
      flex-direction: column;
    }
    
    .footer-link {
      color: #ffff00; /* Color amarillo para los enlaces */
      text-decoration: none;
      margin: 0 10px;
    }
    
    .footer-link:hover {
      text-decoration: underline;
    }
    /* -----------------------------------------------Pie de Página---Final-------------------------------------------- */
    