 /* Reset and base */
    * {
      box-sizing: border-box;
    }
    body {
      background-color: #23272f;
      background-image: url('https://cdn.discordapp.com/attachments/1408999982564114472/1416568104921600160/images_5.jpg?ex=68c7515a&is=68c5ffda&hm=5494f1ddf161ec9dbe7771ad6e9a8e4269df02b10b1515c126790059fb647d57&'); /* <-- tu imagen aquí */
      background-size: cover; /* hace que cubra toda la pantalla */
      background-position: center; /* la centra nice */
      background-repeat: no-repeat; /* no se repite en mosaico */
      margin: 0;
      height: 100vh; /* asegúrate que ocupe toda la pantalla */
      color: #c8c8c8;
      font-family: 'Ubuntu Mono', monospace;
      line-height: 1.5;
      min-height: 95vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem;
    }

    /* Container for content */
    .container {
      max-width: 900px;
      width: 100%;
      padding: 2rem 1rem;
      background: #11121acc; /* Slight transparency */
      border-radius: 8px;
      box-shadow: 0 0 20px #4caf5099;
      border: 1px solid #2e3a2e;
    }

    /* Navbar */
    nav.navbar {
      width: 100%;
      max-width: 900px;
      background: #0d1117;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1rem;
      border-radius: 8px;
      margin-bottom: 2rem;
      box-shadow: 0 0 15px #8aff8055;
    }
    .navbar-left {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .navbar-logo {
      width: 36px;
      height: 36px;
      border-radius: 6px;
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: 0 0 8px #8aff80;
    }
    .navbar-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .navbar-title {
      font-weight: bold;
      font-size: 1.4rem;
      color: #8aff80;
      text-decoration: none;
      letter-spacing: 0.05em;
      user-select: none;
    }
    .navbar-categories {
      display: flex;
      gap: 1.25rem;
    }
    .navbar-link {
      color: #c8c8c8;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.2s ease-in-out;
    }
    .navbar-link:hover {
      color: #8aff80;
      text-decoration: underline;
    }
    .navbar-right {
      display: flex;
      gap: 1rem;
    }
    .navbar-icon {
      background: #23272f;
      border: none;
      border-radius: 5px;
      padding: 0.5rem 0.75rem;
      color: #c8c8c8;
      cursor: pointer;
      font-size: 1.1rem;
      box-shadow: 0 0 8px #3f9e0a66;
      transition: background-color 0.3s ease;
    }
    .navbar-icon:hover {
      background-color: #2e422f;
      color: #8aff80;
      box-shadow: 0 0 14px #8aff80;
    }
    .navbar-link,
     a {
      transition: all 0.2s ease-in-out;
    }

    .discord-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #11121acc;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 12px #8aff8088;
    border: 1px solid #2e3a2e;
    max-width: 400px;
    margin-top: 1.5rem;
  }

   .discord-logo {
    width: 48px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 0 6px #8aff80;
  }

   .discord-text {
    color: #c8c8c8;
    font-size: 1rem;
    line-height: 1.3;
  }

   .discord-text b {
    color: #8aff80;
  }

   .discord-link {
    color: #8aff80;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
   }

   .discord-link:hover {
    text-decoration: underline;
  }
   .hyperlink-link {
    color: #8aff80;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
   }
   .hyperlink-link:hover {
    text-decoration: underline;
   }

    /* Main headings */
    h1, h2, b {
      margin: 0.3rem 0;
      letter-spacing: 0.05em;
    }
    h1 {
      color: #8aff80;
      font-size: 2rem;
      position: relative;
      user-select: none;
      white-space: nowrap;
      font-weight: 700;
      font-family: 'Ubuntu Mono', monospace;
    }
    /* Parpadeo cursor */
    h1::after {
      content: '';
      margin-left: 6px;
      animation: blink 1s infinite;
      color: #8aff80;
      font-weight: 900;
    }
    @keyframes blink {
      0%, 50% {opacity: 1;}
      51%, 100% {opacity: 0;}
    }
    h2 {
      font-size: 1.25rem;
      color: #a0a0a0;
      margin-top: 1rem;
    }
    b {
      color: #8aff80;
      font-weight: 700;
      font-size: 1.1rem;
    }

    /* Paragraph */
    p {
      margin-top: 0.8rem;
      font-size: 1rem;
      color: #c0c0c0;
    }

    /* Footer */
    footer {
      margin-top: auto;
      padding: 1rem 0;
      color: #444c44;
      font-size: 0.9rem;
      user-select: none;
    }

  .staff-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
  }

  .staff-card {
    background: #23272a;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    padding: 24px 16px;
    width: 220px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .staff-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  }

  .staff-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid #8aff80;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  }

  .staff-card h1, .staff-card h3 {
    font-family: 'Ubuntu Mono', monospace;
    color: #8aff80;
    margin: 8px 0 4px 0;
    font-size: 1.3em;
  }

  .staff-card p {
    color: #fff;
    font-size: 1em;
    margin: 0;
  }

    .discord-box {
  background-color: #101010;
  border: 2px solid #8aff80;
  border-radius: 10px;
  padding: 15px;
  margin: 15px auto;
  width: 300px;
  box-shadow: 0 0 15px #8aff80;
  text-align: center;
}

.discord-box textarea {
  width: 90%;
  resize: none;
  margin-bottom: 10px;
  padding: 8px;
  background-color: #1a1a1a;
  color: white;
  border: 1px solid #333;
  border-radius: 5px;
}

.discord-box button {
  background-color: #8aff80;
  border: none;
  padding: 8px 15px;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.discord-box button:hover {
  background-color: #8aff80;
}

.highlight {
  background-color: yellow;
  color: black;
}

/* Estilo del botón de búsqueda */
.button {
  background-color: #8aff80;
  border: none;
  color: #23272f;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(138, 255, 128, 0.6);
  min-width: 100px; /* Asegura que el botón tenga un ancho adecuado */
}

/* Efecto hover para el botón */
.button:hover {
  background-color: #7bf570;
  box-shadow: 0 0 15px rgba(138, 255, 128, 0.8);
}
    .staff-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
      margin-bottom: 32px;
    }
    .staff-card {
      background: #23272a;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
      padding: 24px 16px;
      width: 220px;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .staff-card:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    }
    .staff-avatar {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 12px;
      border: 3px solid #8aff80;
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }
    .staff-card h1, .staff-card h3 {
      font-family: 'Ubuntu Mono', monospace;
      color: #8aff80;
      margin: 8px 0 4px 0;
      font-size: 1.3em;
    }
    .staff-card p {
      color: #fff;
      font-size: 1em;
      margin: 0;
    }
    .forum-section {
    max-width: 700px;
    margin: 2rem auto;
    background: #11121acc;
    border-radius: 10px;
  box-shadow: 0 0 20px #4caf5099;
  border: 1px solid #2e3a2e;
  padding: 2rem 1.5rem;
}

.forum-section h2 {
  color: #8aff80;
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 1.2rem;
  font-family: 'Ubuntu Mono', monospace;
}

#forum-login {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

#forum-content {
  margin-top: 1.5rem;
}

#postForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

#postText {
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #2e3a2e;
  background: #23272f;
  color: #c8c8c8;
  font-size: 1rem;
  font-family: 'Ubuntu Mono', monospace;
  resize: vertical;
}

#postsList {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.forum-post {
  background: #23272a;
  border-radius: 10px;
  box-shadow: 0 2px 8px #8aff8033;
  padding: 1rem 1.2rem;
  color: #fff;
  border: 1px solid #2e3a2e;
}

.forum-post .author {
  color: #8aff80;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: 'Ubuntu Mono', monospace;
}

.forum-post .date {
  color: #a0a0a0;
  font-size: 0.9em;
  margin-bottom: 0.5rem;
}

.forum-post .content {
  color: #c0c0c0;
  font-size: 1em;
  margin-top: 0.5rem;
  word-break: break-word;
}

/* Responsive */
@media (max-width: 600px) {
  .forum-section {
    padding: 1rem 0.5rem;
  }
  #forum-login {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.discord-info.center-text {
  margin-left: auto;
  margin-right: auto;
}
.spinner {
  border: 4px solid rgba(0, 0, 0, .1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #8aff80;
  animation: spin 1s ease infinite;
}
@keyframes spin {
  0% {
    tranform: rotate(0deg);
  }
  100% {
    tranform: rotate(360deg);
  }
}
    .lang-switch {
      text-align: right;
      margin: 0em 0 0 0;
    }
    .lang-switch .button {
      background: #23272f;
      color: #8aff80;
      border: 2px solid #8aff80;
      border-radius: 6px;
      padding: 8px 18px;
      font-size: 1rem;
      font-weight: bold;
      margin-left: 0.5em;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s, opacity 0.2s;
      box-shadow: 0 0 8px #8aff8033;
      outline: none;
    }
    .center-text {
     text-align: center;
   }
    .lang-switch .button:hover {
      background: #8aff80;
      color: #23272f;
      box-shadow: 0 0 16px #8aff80;
    }
    .lang-switch .button[aria-selected="true"] {
      background: #8aff80;
      color: #23272f;
      box-shadow: 0 0 16px #8aff80;
      opacity: 1;
    }
    .lang-switch .button[aria-selected="false"] {
      opacity: 0.6;
    }
    .lang-switch .button:focus {
      outline: 2px solid #8aff80;
      outline-offset: 2px;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .navbar-categories {
        display: none;
      }
      .navbar-title {
        font-size: 1rem;
      }
      h1 {
        font-size: 1.6rem;
      }
      h2 {
        font-size: 1rem;
      }
  }