:root {
  --oxaly-pink: #F800A1;
  --oxaly-purple: #A779FF;
  --oxaly-aqua: #8CE3F5;
  --oxaly-dark: #0E0B14;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  color: white;
  position: relative;
  z-index: 0;
}

.blur-background::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('https://oxaly.net/background.png') no-repeat center center fixed;
  background-size: cover;
  filter: blur(2.5px);
  z-index: -1;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  z-index: 0;
  pointer-events: none;
}

.header {
  text-align: center;
  padding: 30px 20px 10px;
  z-index: 1;
  position: relative;
}

.logo {
  max-width: 360px;
}

.nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--oxaly-aqua);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.nav a:hover {
  border-color: var(--oxaly-pink);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.content-box {
  background-color: rgba(21, 18, 27, 0.75);
  border: 2px solid var(--oxaly-pink);
  border-radius: 12px;
  box-shadow: 0 0 20px #A779FF44;
  padding: 30px;
  margin-bottom: 40px;
}

.central-intro {
  text-align: center;
}

.central-intro h1 {
  font-size: 2.2rem;
  color: var(--oxaly-aqua);
  margin-bottom: 15px;
  text-shadow: 0 0 10px var(--oxaly-pink);
}

.central-intro p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.6;
}

.categoria-titulo {
  font-size: 2.2rem;
  color: var(--oxaly-aqua);
  margin-bottom: 20px;
  text-shadow: 0 0 10px var(--oxaly-pink);
  text-align: center;
  border: none;
  padding: 0;
}
.secciones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.secciones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.secciones-grid .content-box {
  width: calc(50% - 15px);
}

@media (max-width: 768px) {
  .secciones-grid .content-box {
    width: 100%;
  }
}

.regla {
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.regla h3 {
  font-size: 1.1rem;
  color: var(--oxaly-pink);
  margin-bottom: 6px;
}

.regla p {
  color: #dddddd;
  font-size: 0.95rem;
  line-height: 1.6;
}

.nota-final {
  font-size: 0.95rem;
  color: #cccccc;
  text-align: center;
  font-style: italic;
}
/*  NAVEGADOR */

.oxaly-navbar {
  background: rgba(20, 20, 30, 0.85);
  backdrop-filter: blur(6px);
  width: 100%;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.navbar-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo img {
  height: 46px;
}

.navbar-links {
  display: flex;
  gap: 48px;
}

.navbar-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}
.navbar-links a.active {
  color: #8ce3f5;
  font-weight: bold;
  border-bottom: 2px solid #8ce3f5;
}

.navbar-links a:hover {
  color: #F596D2;
}

.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: rgba(20, 20, 30, 0.95);
    padding: 16px 0;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
  }

  .navbar-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
  
}

/* CLIENTES: Lista de Clientes y Mods */

.lista-clientes {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 24px;
  font-size: 1rem;
  color: #eeeeee;
}

.lista-clientes li::before {
  content: "➤ ";
  color: var(--oxaly-aqua);
}

.lista-clientes.ilegales li::before {
  content: "⛔ ";
  color: var(--oxaly-pink);
}

.lista-clientes .nota {
  color: #bbbbbb;
  font-size: 0.9rem;
  font-style: italic;
}
/* STAFFS, */
.miembros-consejo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  text-align: center;
}

.miembro img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 3px solid var(--oxaly-aqua);
  box-shadow: 0 0 15px #8CE3F544;
}

.miembro p {
  margin-top: 10px;
  color: #fff;
  font-size: 1rem;
}

.miembro .rol {
  font-size: 0.95rem;
  color: var(--oxaly-pink);
}
.tabla-consejo {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  color: #fff;
}

.tabla-consejo th,
.tabla-consejo td {
  border: 1px solid #8CE3F5;
  padding: 10px;
  text-align: left;
}

.tabla-consejo th {
  background-color: #A779FF33;
}

.principios {
  list-style: none;
  padding-left: 0;
}

.principios li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.grid-funciones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.grid-funciones h3 {
  margin-bottom: 5px;
  color: #F597D4;
}

.grid-funciones p {
  margin: 0;
}

.tabla-consejo {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  color: #fff;
}

.tabla-consejo th, .tabla-consejo td {
  border: 1px solid #8CE3F5;
  padding: 10px;
  text-align: left;
}

.tabla-consejo th {
  background-color: #A779FF33;
}
h2.categoria-titulo:nth-of-type(2) {
  margin-top: 40px;
}
.espaciado-superior {
  margin-top: 40px;
}

.lista-contacto {
  margin-top: 10px;
  margin-left: 20px;
  padding-left: 0;
  list-style-type: disc;
}

.faq-box h3 {
  margin-top: 20px;
  color: #F800A1;
  font-size: 1.1em;
}

.faq-box p {
  margin-bottom: 10px;
  margin-left: 10px;
}
.info-extra-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  margin-top: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-extra-box h3 {
  color: #F597D4;
  margin-top: 25px;
}

.info-extra-box p {
  margin: 5px 0 15px;
  color: #ddd;
}
.content-box h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  color: #F800A1;
}

.content-box p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.descripcion-categoria {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  color: #999;
  font-size: 0.95rem;
}


.lista-apelacion {
  margin: 1em 0;
  padding-left: 1.2em;
  list-style-type: "☑ ";
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #dcdcff;
  line-height: 1.7em;
}

.lista-apelacion li {
  margin-bottom: 0.5em;
}
.tabla-sanciones table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
  font-size: 15px;
  color: #ddddff;
  font-family: 'Poppins', sans-serif;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
}

.tabla-sanciones th, .tabla-sanciones td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.tabla-sanciones th {
  background-color: rgba(160, 121, 255, 0.3);
  color: #fff;
  font-weight: 600;
}

.tabla-sanciones tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.015);
}

