:root{
  /* ===== COLORS ===== */
  --bg0:#0a0b10;
  --bg1:#05060b;

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.10);

  --brand: #8b5cf6;
  --brand2:#a855f7;

  --headerBg: rgba(13,14,20,.72);
  --topBg: rgba(12,13,18,.92);
  
  /* ===== TUNE (perillas) ===== */
  --containerMax: 80rem;
  --containerMaxXl: 88rem;

  /* HERO spacing */
	--heroPadTop: 1.2rem;
	--heroPadBottom: 2.2rem;

	--heroPadTopDesktop: 1.6rem;
	--heroPadBottomDesktop: 2.6rem;

  /* tu look actual: titulo mas a la izquierda */
  --heroInnerPadLeft: 28px;
  --heroInnerPadRight: 18px;

  /* grid/cols */
  --heroColsDesktop: 7fr 5fr;
  --heroGridGapDesktop: 2.2rem;

  /* sizes */
  --titleClamp: clamp(56px, 5.6vw, 88px);
  --copyMaxDesktop: 760px;

  --railWidthDesktop: 330px;

  --cardW: 270px;
  --cardH: 140px;
  --cardR: 15px;

  /* ===== IMAGE CALIBRATION ===== */
  --heroObjectPos: 50% 35%;
  --cardObjectPos: 50% 35%;

  /* overlays */
  --vignetteOpacity: .55;
  --noiseOpacity: .055;

  /* filters */
  --heroSaturate: 1.08;
  --heroContrast: 1.02;

  --cardSaturate: 1.02;
  --cardContrast: 1.02;

  /* evita scrollbar horizontal */
  --pageOverflowX: hidden; /* o clip */
}

/* ===== BASE ===== */
*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ overflow-x: var(--pageOverflowX); }
body{
  margin:0;
  overflow-x: var(--pageOverflowX);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 680px at 50% -10%, rgba(250,204,21,.09), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

img{ display:block; max-width:100%; }
a{ color:inherit; }

/* util */
.hidden{ display:none; }
.nx-hidden-img{ display:none; }

.nx-container{
  max-width: var(--containerMax);
  margin:0 auto;
  padding:0 1rem;
}

/* ===== TOPBAR ===== */
.nx-topbar{
  background: var(--topBg);
  border-bottom:1px solid rgba(250,204,21,.35);
}
.nx-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  padding:.6rem 0;
}
.nx-topbar-left{
  display:flex;
  align-items:center;
  gap:.75rem;
  min-width:0;
}
.nx-pill{
  display:inline-flex;
  align-items:center;
  padding:.14rem .55rem;
  border-radius:999px;
  font-weight:950;
  font-size:.75rem;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.90);
}
.nx-pill-blue{
  border-color: rgba(59,130,246,.35);
  background: rgba(59,130,246,.18);
}
.nx-topbar-text{
  color: rgba(255,255,255,.82);
  font-size:.9rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.nx-topbar-link{
  color: rgba(255,255,255,.70);
  font-size:.9rem;
  text-decoration:none;
}
.nx-topbar-link:hover{ color:#fff; }

/* ===== HEADER ===== */
.nx-header{
  position: sticky;
  top:0;
  z-index:50;
  background: var(--headerBg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow:hidden; /* ayuda a no crear overflow raro */
}
.nx-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.nx-brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  text-decoration:none;
  min-width:0;
}
.nx-logo{
  height:36px; width:36px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(250,204,21,.10);
  border:1px solid rgba(250,204,21,.22);
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
  flex:0 0 auto;
}
.nx-brand-name{ font-weight:950; letter-spacing:.06em; }
.nx-brand-sub{ color: rgba(255,255,255,.60); font-size:.75rem; margin-top:2px; }

.nx-nav{
  flex:1;
  display:none;
  align-items:center;
  justify-content:center;
  gap:1rem;
  transform: translateY(var(--navOffsetDesktop));
}

/* IMPORTANTE: no se mueve con hover (sin cambios de border width, sin cambios de font-weight) */
.nx-nav-item{
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255,255,255,.72);
  font-weight: 850;
  font-size: .92rem;
  cursor: pointer;
  padding:.45rem .58rem;
  border-radius: 10px;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
  text-decoration:none;
  line-height:1;
}
.nx-nav-item:hover{ color:#fff; background: rgba(255,255,255,.06); }
.nx-nav-item.is-active{
  color:#fff;
  background: rgba(250,204,21,.14);
  border-color: rgba(250,204,21,.22);
}

.nx-links{
  display:none;
  gap:.9rem;
  font-size:.9rem;
  color: rgba(255,255,255,.70);
  transform: translateY(var(--navOffsetDesktop));
}
.nx-links a{ text-decoration:none; color:inherit; }
.nx-links a:hover{ color:#fff; }

.nx-burger{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px; width:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  cursor:pointer;
}
.nx-burger:hover{ background: rgba(255,255,255,.10); }

/* ===== MOBILE MENU ===== */
.nx-mobile{
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(12,13,18,.96);
}
.nx-mobile-inner{
  padding:1rem 0;
  display:grid;
  gap:.75rem;
  color: rgba(255,255,255,.80);
  font-size:.9rem;
}
.nx-mobile-inner a{ text-decoration:none; color:inherit; }
.nx-mobile-btn{
  text-align:left;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  border-radius: 12px;
  padding:.75rem .8rem;
  cursor:pointer;
  font-weight:900;
}
.nx-divider{ height:1px; background: rgba(255,255,255,.10); margin:.35rem 0; }

/* ===== HERO ===== */
.nx-hero{
  position: relative;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(1200px 720px at 55% 10%, rgba(59,130,246,.14), transparent 58%),
    radial-gradient(900px 520px at 35% 15%, rgba(250,204,21,.08), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.55));
}


.nx-hero-media{
  position:absolute;
  inset:0;
  overflow:hidden;
  filter: saturate(var(--heroSaturate)) contrast(var(--heroContrast));
  transform: translateZ(0);
  will-change: filter;
  pointer-events:none;
}

/* imagen de fondo (la que crossfadea con is-on) */
.nx-hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: var(--heroObjectPos, 50% 35%) !important;
  opacity:0;
  transition: opacity .55s ease;
  pointer-events:none;
}
.nx-hero-bg.is-on{ opacity:1; }

.nx-hero-vignette{
  position:absolute;
  inset:0;
  opacity: var(--vignetteOpacity);
  background:
    radial-gradient(1100px 700px at 62% 28%, rgba(25,120,255,.14), transparent 60%),
    radial-gradient(900px 520px at 32% 18%, rgba(250,204,21,.08), transparent 58%),
    radial-gradient(900px 520px at 50% 0%, rgba(0,0,0,.05), rgba(0,0,0,.38) 65%, rgba(0,0,0,.62) 88%),
    linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.20) 55%, rgba(0,0,0,.58) 100%);
  pointer-events:none;
}

.nx-noise{
  position:absolute;
  inset:0;
  opacity: var(--noiseOpacity);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events:none;
}

.nx-hero-inner{
  position: relative;
  padding: var(--heroPadTop) 0 var(--heroPadBottom);
}
.nx-hero-grid{
  display:grid;
  gap:2.2rem;
  align-items:center;
}

/* capas del texto (swap suave sin mover layout) */
.nx-copy-wrap{
  position: relative;
  max-width: 760px;
  min-height: 360px;
}
.nx-copy-layer{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition: opacity .55s ease;
}
.nx-copy-layer.is-active{
  opacity:1;
  pointer-events:auto;
}

.nx-kicker{ color: rgba(255,255,255,.78); font-size:1rem; margin-bottom:.75rem; }
.nx-kicker-strong{ font-weight:950; color: rgba(255,255,255,.95); margin-right:.35rem; }

.nx-title{
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: .98;
  font-size: var(--titleClamp);
  text-shadow: 0 14px 55px rgba(0,0,0,.55);
}
.nx-br{ display:none; }

.nx-features{
  margin-top: 1.4rem;
  display:grid;
  grid-template-columns: 1fr;
  gap:.7rem;
  padding:0;
  list-style:none;
  color: rgba(255,255,255,.86);
  font-size:.95rem;
  max-width: 560px;
}
.nx-feature{ display:flex; align-items:center; gap:.6rem; }
.nx-check{
  height:20px; width:20px;
  display:grid; place-items:center;
  border-radius:999px;
  background: rgba(139,92,246,.18);
  border: 1px solid rgba(139,92,246,.30);
  color: rgba(139,92,246,.95);
  font-weight:950;
  line-height:1;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.nx-cta{
  margin-top: 1.8rem;
  display:flex;
  gap:.8rem;
  flex-wrap:wrap;
}
.nx-btn-primary,
.nx-btn-secondary{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.95rem 1.45rem;
  border-radius: 14px;
  text-decoration:none;
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}
.nx-btn-primary{
  font-weight: 950;
  color:#0a0a0f;
  background: var(--brand);
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
}
.nx-btn-primary:hover{ filter: brightness(1.06); transform: translateY(-1px); }

.nx-btn-secondary{
  font-weight: 900;
  color:#0b0b12;
  background:#fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}
.nx-btn-secondary:hover{ opacity:.94; transform: translateY(-1px); }

/* shine */
.nx-shine{ overflow:hidden; }
.nx-shine::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.42) 45%, transparent 70%);
  transform: translateX(-60%) rotate(10deg);
  animation: nxShine 3.6s ease-in-out infinite;
  pointer-events:none;
  mix-blend-mode: overlay;
}
@keyframes nxShine{
  0%{ transform: translateX(-70%) rotate(10deg); opacity:0; }
  15%{ opacity:.55; }
  45%{ transform: translateX(70%) rotate(10deg); opacity:0; }
  100%{ opacity:0; }
}

/* ===== RIGHT RAIL ===== */
.nx-hero-right{ width:100%; justify-self:end; }
.nx-right-rail{
  position: relative;
  width: min(420px, 100%);
  margin-left: auto;
  padding-right: 6px;
  overflow:hidden; /* corta glow/cosas que causan overflow-x */
}
.nx-rail-glow{
  position:absolute;
  inset:-40px -10px -40px -80px;
  background:
    radial-gradient(360px 260px at 72% 28%, rgba(255,255,255,.10), transparent 62%),
    radial-gradient(520px 380px at 72% 50%, rgba(59,130,246,.18), transparent 62%),
    radial-gradient(520px 380px at 72% 72%, rgba(250,204,21,.12), transparent 62%);
  filter: blur(12px);
  pointer-events:none;
}
.nx-card-stack{
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;      /* ok */
  padding-top: 0;        /* IMPORTANT: no empujes adentro con padding */

}

/* cards */
.nx-card-btn{
  appearance:none;
  border:0;
  text-align:left;
  width:100%;
  cursor:pointer;
  background: transparent;
  padding:0;
}
.nx-card{
  position:absolute;
  left:0; right:0; top:0;
  width: min(var(--cardW), 100%);
  height: var(--cardH);
  margin-left:auto;
  margin-right:auto;
  border-radius: var(--cardR);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(520px 220px at 18% 0%, rgba(250,204,21,.10), transparent 55%),
    radial-gradient(520px 220px at 80% 120%, rgba(59,130,246,.10), transparent 60%),
    rgba(8,9,12,.34);
  box-shadow: 0 24px 80px rgba(0,0,0,.62);
  transition:
    transform .95s cubic-bezier(.2,.9,.2,1),
    opacity  .95s cubic-bezier(.2,.9,.2,1),
    border-color .32s ease,
    box-shadow   .32s ease;
  will-change: transform, opacity;
}
.nx-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: 1;
  background: rgba(0,0,0, var(--cardDim, 0));
  transition: background .25s ease;
}
.nx-card:hover{
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 28px 95px rgba(0,0,0,.72);
}
.nx-card:focus-visible{
  outline: 2px solid rgba(250,204,21,.55);
  outline-offset: 3px;
}
.nx-card.is-selected{
  border-color: rgba(250,204,21,.36);
  box-shadow: 0 30px 110px rgba(0,0,0,.78);
}

.nx-card-media{ position:absolute; inset:0; }
.nx-card-img{
  width:100%;
  height:100%;

  /* ✅ esto evita “alargado” y mantiene proporciones */
  object-fit: cover;

  /* ✅ controla el recorte sin deformar */
  object-position: var(--cardObjectPos, 50% 40%) !important;

  filter: saturate(var(--cardSaturate)) contrast(var(--cardContrast));
  transform: none !important; /* ✅ mata tus scales/translate que estan rompiendo el encuadre */
}
.nx-card-img.is-missing{ display:none; }

.nx-card-shade{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.14) 0%, rgba(0,0,0,.42) 62%, rgba(0,0,0,.62) 100%),
    radial-gradient(520px 180px at 30% 0%, rgba(250,204,21,.08), transparent 55%);
}
.nx-card.is-dim .nx-card-shade{
  background:
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.52) 62%, rgba(0,0,0,.72) 100%),
    radial-gradient(520px 180px at 30% 0%, rgba(250,204,21,.06), transparent 55%);
}
.nx-card.is-selected .nx-card-shade{
  background:
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.46) 62%, rgba(0,0,0,.68) 100%),
    radial-gradient(520px 180px at 30% 0%, rgba(250,204,21,.10), transparent 55%);
}

.nx-card-inner{
  position:absolute;
  left:18px;
  bottom:14px;
  display:block;
}
.nx-card-sub{
  display:block;
  font-size:.72rem;
  letter-spacing:.18em;
  font-weight:950;
  color: rgba(255,255,255,.72);
}
.nx-card-title{
  display:block;
  font-size:1.12rem;
  font-weight:950;
  text-shadow: 0 10px 40px rgba(0,0,0,.58);
}
.nx-card-title.big{ font-size:1.28rem; }

/* ===== SECTIONS ===== */
.nx-section{ padding: 4.2rem 0; }
/* ===== PAGINA 2 (PLANES): subir todo ===== */
#planes{
  padding-top: 2.0rem;      /* sube la seccion */
  padding-bottom: 3.2rem;
}

/* si aun lo quieres mas arriba, usa esto tambien */
@media (min-width: 1024px){
  #planes{ padding-top: 1.4rem; }
}
/* ===== HACER LAS CARDS MAS NOTORIAS ===== */
#planes .nx-plans{
  margin-top: 1.1rem;
  gap: 1.25rem;
}

#planes .nx-plan{
  padding: 1.35rem;
  background: rgba(12,12,20,.60);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 28px 90px rgba(0,0,0,.62);
}

#planes .nx-plan-title{ font-size: 1.25rem; }
#planes .nx-plan-desc{ color: rgba(255,255,255,.70); font-size: .95rem; }
#planes .nx-plan-price{ font-size: 1.75rem; margin-top: 1.0rem; }
#planes .nx-plan-cta{ padding: 1rem; background: rgba(255,255,255,.07); }

.nx-section-head{ max-width: 760px; }
.nx-badge{
  display:inline-flex;
  padding:.35rem .65rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.82);
  font-weight:900;
  font-size:.82rem;
}
.nx-h2{
  margin-top:.9rem;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight:950;
  letter-spacing:-.02em;
}
.nx-p{ margin-top:.6rem; color: rgba(255,255,255,.70); }

.nx-plans{
  margin-top: 1.4rem;
  display:grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.nx-plan{
  position: relative;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,10,18,.40);
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  padding: 1.15rem;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  overflow:hidden;
}
.nx-plan::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(500px 140px at 25% 0%, rgba(250,204,21,.12), transparent 60%);
  pointer-events:none;
}
.nx-plan:hover{
  transform: translateY(-3px);
  border-color: rgba(250,204,21,.22);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}
.nx-plan.is-featured{
  border-color: rgba(250,204,21,.32);
  box-shadow: 0 30px 95px rgba(0,0,0,.62);
}
.nx-plan-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:1rem; }
.nx-plan-title{ font-weight:950; font-size:1.15rem; }
.nx-plan-price{ font-weight:950; font-size:1.5rem; }
.nx-plan-price span{ opacity:.75; margin-right:.2rem; }
.nx-plan-price small{ font-size:.9rem; opacity:.7; font-weight:900; }
.nx-plan-list{ margin-top:.9rem; display:grid; gap:.45rem; color: rgba(255,255,255,.80); padding-left:0; }
.nx-plan-list li{ list-style:none; }
.nx-plan-list li::before{ content:"•"; color: rgba(250,204,21,.85); margin-right:.45rem; }

.nx-plan-cta{
  margin-top: 1.0rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:.9rem 1rem;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  text-decoration:none;
  color: rgba(255,255,255,.92);
  font-weight:950;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.nx-plan-cta:hover{
  transform: translateY(-1px);
  background: rgba(250,204,21,.12);
  border-color: rgba(250,204,21,.25);
}

/* FAB */
.nx-fab{
  position: fixed;
  right: 24px;
  bottom: 24px;
  height: 48px;
  width: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  display:grid;
  place-items:center;
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
  text-decoration:none;
  transition: transform .18s ease, background .18s ease;
}
.nx-fab:hover{ background: rgba(255,255,255,.10); transform: translateY(-1px); }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px){
  .nx-br{ display:inline; }
}
@media (min-width: 768px){
  .nx-plans{ grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px){
  .nx-nav{ display:flex; }
  .nx-links{ display:flex; }
  .nx-burger{ display:none; }

  .nx-hero-inner{
    padding-top: var(--heroPadTopDesktop);
    padding-bottom: var(--heroPadBottomDesktop);
  }
  .nx-hero-grid{
    grid-template-columns: var(--heroColsDesktop);
    gap: var(--heroGridGapDesktop);
    align-items: center;
  }
  .nx-features{ grid-template-columns: 1fr 1fr; }

  .nx-copy-wrap{ max-width: var(--copyMaxDesktop); }
  .nx-hero-left{ margin-top: var(--heroLeftOffsetDesktop); }

  .nx-right-rail{
    width: var(--railWidthDesktop);
    padding-right: 0;
    margin-top: var(--railOffsetDesktop);
  }
}

/* container mas ancho en pantallas grandes */
@media (min-width: 1536px){
  .nx-container{ max-width: var(--containerMaxXl); }
}

/* pantallas bajitas */
@media (max-height: 820px){
  .nx-copy-wrap{ min-height: 360px; }
  .nx-title{ font-size: clamp(46px, 5.0vw, 76px); }
}

/* =========================
   FIX: QUITAR PANEL NEGRO DERECHA (RAIL)
   PEGAR AL FINAL
   ========================= */

/* 1) Mata cualquier panel/overlay del rail (wrapper o pseudo-elementos) */
.nx-hero-right,
.nx-right-rail,
.nx-card-stack{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.nx-hero-right::before,
.nx-hero-right::after,
.nx-right-rail::before,
.nx-right-rail::after,
.nx-card-stack::before,
.nx-card-stack::after{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 18px; /* solo un pelin para separar del borde */
  pointer-events:none;
  background: transparent; /* no oscurece ni borra */
  z-index: 10;;
}

/* 2) Si tienes algun div extra dentro del stack haciendo de “panel”, lo apaga */
.nx-card-stack > *{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  backdrop-filter: none !important;
}

/* 3) Apaga el glow (a veces parece panel) */
.nx-rail-glow{ display:none !important; }

/* 4) Quita el fondo oscuro propio de cada card (ese rgba(8,9,12,.34) era el culpable)
      Deja solo la imagen y el shade suave */
.nx-card{
  background: transparent !important;
}

/* 5) Shade mas suave (solo para legibilidad del texto, no para oscurecer todo) */
.nx-card-shade{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.26) 62%,
    rgba(0,0,0,.38) 100%
  ) !important;
}

/* (Opcional) si aun sientes el lado derecho oscuro por el vignette global,
   baja el “lado derecho” del vignette */
.nx-hero-vignette{
  background:
    radial-gradient(1100px 700px at 62% 28%, rgba(25,120,255,.14), transparent 60%),
    radial-gradient(900px 520px at 32% 18%, rgba(250,204,21,.08), transparent 58%),
    radial-gradient(900px 520px at 50% 0%, rgba(0,0,0,.04), rgba(0,0,0,.28) 65%, rgba(0,0,0,.48) 88%),
    linear-gradient(90deg, rgba(0,0,0,.40) 0%, rgba(0,0,0,.12) 55%, rgba(0,0,0,.40) 100%) !important;
}

.nx-card-img{
  object-fit: cover;
  object-position: var(--cardObjectPos, 50% 35%);
}


/* =========================
   FIX: Quitar bloque raro del rail + shade suave tipo Sparked
   PEGAR AL FINAL
   ========================= */

/* 0) Orden de capas (para que el shade no haga bugs raros) */
.nx-hero{ position: relative; }
.nx-hero-bg{ z-index:0; }
.nx-hero-vignette{ z-index:1; }
.nx-noise{ z-index:2; }
.nx-hero-inner{ position:relative; z-index:4; }

/* 1) Mata cualquier panel/rectangulo del rail (incluye pseudos) */
.nx-hero-right,
.nx-right-rail,
.nx-card-stack{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.nx-hero-right::before,
.nx-hero-right::after,
.nx-right-rail::before,
.nx-right-rail::after,
.nx-card-stack::before,
.nx-card-stack::after{
  content: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* 2) IMPORTANTE: apaga el glow que a veces parece panel */
.nx-rail-glow{ display:none !important; }

/* 4) Cards estilo “glass” SIN fondo negro extra */
.nx-card{
  background: rgba(12,14,20,.16) !important; /* antes era rgba(8,9,12,.34) + gradientes */
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border-color: rgba(255,255,255,.14) !important;
}

/* 5) Shade interno mas suave (no mata la imagen) */
.nx-card-shade{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.06) 0%,
    rgba(0,0,0,.22) 62%,
    rgba(0,0,0,.34) 100%
  ) !important;
}
/* =========================
   FIX: sin bloque arriba + shade suave a la derecha (como captura 2)
   PEGAR AL FINAL
   ========================= */

/* A) Mata el panel/rectangulo del rail (solo wrappers, NO cards) */
.nx-hero-right,
.nx-right-rail,
.nx-card-stack{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Si el bloque viene de pseudos con border-radius */
.nx-hero-right::before,
.nx-hero-right::after,
.nx-right-rail::before,
.nx-right-rail::after,
.nx-card-stack::before,
.nx-card-stack::after{
  content: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Apaga glow si te dibuja un rectangulo raro */
.nx-rail-glow{ display:none !important; }

/* C) Asegura que texto/cards queden por encima del shade */
.nx-hero-inner{ position:relative; z-index:5; }

/* D) Mantiene el look de cards (glass) sin crear panel gigante */
.nx-card{
  background: rgba(12,14,20,.16) !important; /* suave, no bloque */
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border-color: rgba(255,255,255,.14) !important;
}

/* Shade interno suave (para legibilidad, no para oscurecer todo) */
.nx-card-shade{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.06) 0%,
    rgba(0,0,0,.22) 62%,
    rgba(0,0,0,.34) 100%
  ) !important;
}
.nx-right-rail::before,
.nx-right-rail::after,
.nx-card-stack::before,
.nx-card-stack::after{
  content:none !important;
}
/* FIX FRANJA ARRIBA: no ver el hero detras del header */
.nx-topbar{
  background: rgba(12,13,18,.98) !important;
}

.nx-header{
  background: rgba(13,14,20,.98) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* =========================
   FIX FINAL: NO MAS CUADRO / NO MAS CORTE AL HACER CLICK
   ========================= */

/* 1) Si hay cualquier panel/overlay en el stack/rail, lo mata */
#cardStack,
.nx-card-stack,
.nx-right-rail,
.nx-hero-right{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* 2) Si el cuadro viene de pseudo-elementos */
#cardStack::before, #cardStack::after,
.nx-card-stack::before, .nx-card-stack::after,
.nx-right-rail::before, .nx-right-rail::after,
.nx-hero-right::before, .nx-hero-right::after{
  content: none !important;
  background: transparent !important;
}

/* 3) EVITA EL “CORTE”: no recortes el movimiento de las cards */
#cardStack,
.nx-card-stack,
.nx-right-rail{
  overflow: visible !important;
}

/* 4) Aire arriba/abajo para que el stack no choque con bordes */
.nx-card-stack{
  padding-top: 22px !important;
  padding-bottom: 46px !important;
}
/* ===== SUBIR BLOQUE HERO SI O SI ===== */

/* 1) sube todo el contenido del hero */
.nx-hero-inner{
  padding-top: 0.6rem !important; /* prueba 0.6 - 1.2 */
}

/* desktop */
@media (min-width: 1024px){
  .nx-hero-inner{
    padding-top: 4.6rem !important; /* prueba 1.2 - 2.0 */
  }
}

/* 2) si aun lo quieres mas arriba, este es el empujon fuerte */
.nx-hero-left{
  margin-top: -900px !important; /* prueba -80 a -160 */
}

/* ===== MOVER FONDOS SI O SI (NO depende de object-position) ===== */

/* HERO */
.nx-hero-bg{
  transform: translateY(var(--heroShiftY, 0px)) scale(1.08) !important;
  transform-origin: center !important;
  will-change: transform !important;
}

/* CARDS */
.nx-card-img{
  transform: none !important;
  transform-origin: center !important;
  will-change: transform !important;
}
/* ===== DEGRADADO ABAJO DEL HERO (fade bonito) ===== */
.nx-hero{
  position: relative;
}

/* asegura que tu contenido siga encima */
.nx-hero-inner{ position:relative; z-index:5; }

/* ===== SEGUNDA PAGINA (#info) UNIFORME + MAS ARRIBA ===== */
#info{
  margin-top: 0 !important;
  padding-top: 4.2rem !important;
  position: relative;
  z-index: 1;
}
.nx-card-sub{ display:none !important; }
.nx-card-title{ display:none !important; }

/* ===== GLOW MORADO SOLO EN LA CARD DEL CENTRO ===== */
.nx-card.is-selected{
  border-color: rgba(168, 85, 247, .65); /* morado */
  box-shadow:
    0 18px 45px rgba(168, 85, 247, .18),
    0 0 0 1px rgba(168, 85, 247, .22) inset;
}

/* glow suave tipo "blur" alrededor (sin emborronar la imagen) */
.nx-card.is-selected::before{
  content:"";
  position:absolute;
  inset:-14px;              /* expande el aura */
  border-radius: 26px;      /* un poco mas que la card */
  pointer-events:none;
  background: radial-gradient(closest-side, rgba(168,85,247,.22), transparent 70%);
  filter: blur(10px);
  opacity: .85;
}

/* ===== LAS DEMAS CARDS EN GRIS (sin glow morado) ===== */
.nx-card:not(.is-selected){
  border-color: rgba(255,255,255,.14);
  box-shadow:
    0 16px 40px rgba(0,0,0,.40),
    0 0 0 1px rgba(255,255,255,.06) inset;
}

/* si estas usando ::after para oscurecer, dale un "gris" leve */
.nx-card:not(.is-selected)::after{
  background: rgba(0,0,0, var(--cardDim, .25));
}

/* =========================
   GLOW "BLUR" PRO (CENTRO)
   - No se corta aunque haya overflow
   - Cambia el color con --selGlow
   ========================= */

:root{
  --selGlow: 140, 90, 255;              /* morado mas pro */
  --selBorder: rgba(140, 90, 255, .98); /* borde mas fuerte */
}

/* Centro: borde + glow blur */
.nx-card.is-selected{
  border: 2px solid var(--selBorder) !important;
  box-shadow: 0 0 0 1px rgba(var(--selGlow), .35) inset;

  /* glow mas fuerte */
  filter:
    drop-shadow(0 0 12px rgba(var(--selGlow), .55))
    drop-shadow(0 0 28px rgba(var(--selGlow), .40))
    drop-shadow(0 0 60px rgba(var(--selGlow), .28));
}

/* Extra: un brillo suave adentro (opcional pero queda pro) */
.nx-card.is-selected::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(800px 280px at 50% 50%,
    rgba(var(--selGlow), .10),
    transparent 60%);
}

/* ===== FIX LOGO + ALTURA HEADER ===== */

/* altura/padding del header */
.nx-header-inner{
  min-height: 64px;
  padding: .65rem 0;
}

/* bloque marca */
.nx-brand{
  gap: .85rem;
  align-items: center;
}

/* caja del logo */
.nx-logo{
  height: 42px !important;
  width: 42px !important;
  border-radius: 12px !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.45) !important;
  overflow: hidden !important;
}

/* imagen del logo (NO se deforma) */
.nx-logo-img{
  width: 80% !important;
  height: 80% !important;
  object-fit: contain !important;
  display: block !important;
}

/* texto marca */
.nx-brand-name{
  font-size: 1.05rem;
  line-height: 1.05;
}
.nx-brand-sub{
  font-size: .78rem;
  opacity: .72;
}

/* logo SIN cuadrito */
.nx-logo{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  overflow: visible !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.nx-logo-img{
  width: 160px !important;   /* ajusta 38-54 */
  height: 46px !important;
  object-fit: contain !important;
  border-radius: 12px;      /* si tu logo es cuadrado, dejalo; si no, pon 0 */
  display:block !important;
}

/* ================================
   SOCIAL RAIL (izquierda) - estilo como referencia
   ================================ */
:root{
  --rail-bg: rgba(8, 9, 12, .88);
  --rail-bd: rgba(255,255,255,.10);
  --rail-glow: rgba(255,255,255,.06);
}

.nx-social-rail{
  position: fixed;
  left: 10px;               /* pegado */
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;

  display: flex;
  flex-direction: column;
  gap: 16px;

  padding: 18px 14px;
  border-radius: 18px;

  background: var(--rail-bg);
  border: 1px solid var(--rail-bd);
  box-shadow:
    0 18px 60px rgba(0,0,0,.70),
    inset 0 1px 0 var(--rail-glow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* links sin "cajitas" internas (como tu referencia) */
.nx-social-link{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  text-decoration: none;

  background: transparent;
  border: 0;
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
  opacity: .98;
}

.nx-social-link:hover{
  transform: translateX(3px);
  filter: brightness(1.15);
  opacity: 1;
}

/* tamano y nitidez */
.nx-social-ico{
  width: 24px;
  height: 24px;
  display: block;
}

/* Mobile: ocultar */
@media (max-width: 720px){
  .nx-social-rail{ display:none; }
}
/* ===== CAMBIAR FONDO DEL HEADER (BARRA DE ARRIBA) ===== */
:root{
  --headerBgNew: #0E192A; /* <-- cambia esto y pruebas */
  --topBgNew:    rgba(10, 12, 18, .98); /* <-- si quieres igual arriba */
}

/* fondo del header (barra del menu) */
.nx-header{
  background: var(--headerBgNew) !important;
}

/* si tienes topbar (otra barrita), tambien */
.nx-topbar{
  background: var(--topBgNew) !important;
}

/* ===== FIX: QUE LOS LINKS DERECHA NO SE CORTEN (MOVERLOS A LA IZQUIERDA) ===== */

@media (min-width: 1024px){

  /* deja logo pegado a la izquierda */
  .nx-brand{ flex: 0 0 auto; }

  /* el menu del centro NO debe empujar a la derecha: que se centre pero con limite */
  .nx-nav{
    flex: 1 1 auto !important;
    justify-content: center !important;
    min-width: 0 !important;
  }

  /* bloque derecha: que NO se vaya al borde y que tenga limite */
  .nx-links{
    flex: 0 0 auto !important;
    margin-left: 24px !important;   /* separacion del centro */
    margin-right: 42px !important;  /* espacio antes del borde (tu “raya roja”) */
    white-space: nowrap !important; /* evita salto */
  }
}

/* ================================
   MEGA MENU - OTROS JUEGOS
   pegar al FINAL de styles.css
================================ */

/* FIX: tu header tenia overflow:hidden, eso cortaba el dropdown */
.nx-header{
  overflow: visible !important;
  position: sticky;
  top: 0;
  z-index: 9998;
}

.nx-nav-dd{ position: relative; display: inline-flex; align-items: center; }

.nx-nav-trigger{
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.nx-caret{ opacity: .75; transform: translateY(-1px); }

.nx-mega{
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translateX(-50%);
  width: min(980px, 92vw);
  padding: 18px 18px 14px;
  border-radius: 18px;
  background: rgba(10,12,18,.92);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  display: none;
  z-index: 9999;
}

.nx-mega::before{
  content:"";
  position:absolute;
  left:50%;
  top:-8px;
  width: 14px; height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(10,12,18,.92);
  border-left: 1px solid rgba(255,255,255,.10);
  border-top: 1px solid rgba(255,255,255,.10);
}

.nx-mega-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nx-mega-title{
  font-weight: 800;
  color: rgba(255,255,255,.92);
  margin: 4px 6px 10px;
  font-size: 1.05rem;
}

.nx-mega-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  color: rgba(255,255,255,.90);
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}

.nx-mega-item:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(168,85,247,.35);
}

.nx-mega-ico{
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(168,85,247,.16);
  border: 1px solid rgba(168,85,247,.25);
  color: rgba(255,255,255,.92);
  flex: 0 0 auto;
}

.nx-mega-name{ font-weight: 800; }

.nx-mega-tag{
  margin-left: auto;
  font-weight: 900;
  font-size: .72rem;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}

.nx-mega-tag.is-new{
  background: rgba(34,197,94,.18);
  border-color: rgba(34,197,94,.35);
}

.nx-mega-tag.is-hot{
  background: rgba(239,68,68,.18);
  border-color: rgba(239,68,68,.35);
}

.nx-mega-all{
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 14px;
  padding: 12px 10px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.nx-mega-all:hover{ background: rgba(255,255,255,.05); }

/* abrir en hover (desktop) */
/* ===== NO abrir por hover ===== */
@media (min-width: 1024px){
  .nx-nav-dd:hover .nx-mega{ display:none !important; }
}

/* Solo abre cuando el JS lo fija */
.nx-nav-dd.is-pinned .nx-mega{ display:block !important; }

/* en mobile: no mostramos mega (usas tu menu mobile) */
@media (max-width: 1023px){
  .nx-mega{ display:none !important; }
}

/* por si overlays del hero estorban clicks */
.nx-hero-vignette, .nx-noise{ pointer-events:none; }


/* ===== MEGA MENU PRO (thumbs + look) ===== */
.nx-mega{
  background: rgba(10,12,18,.90);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 30px 90px rgba(0,0,0,.55),
    0 0 0 1px rgba(168,85,247,.12) inset;
}

.nx-mega-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nx-mega-item{
  position: relative;
  overflow: hidden;
  min-height: 50px;
}

.nx-mega-thumb{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex: 0 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  background-image: var(--thumb);
  background-size: cover;
  background-position: 50% 50%;
}

.nx-mega-item::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(80% 120% at 10% 0%, rgba(168,85,247,.18), transparent 60%),
    radial-gradient(80% 120% at 90% 0%, rgba(59,130,246,.14), transparent 55%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events:none;
}

.nx-mega-item:hover::after{ opacity: 1; }

.nx-mega-item:hover{
  border-color: rgba(168,85,247,.38);
  transform: translateY(-1px);
}

.nx-mega-name{
  font-weight: 850;
  letter-spacing: .1px;
}

/* ===== NAV trigger igual a nx-nav-item ===== */
.nx-nav-trigger{
  all: unset;                 /* quita estilos default del button */
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  cursor: pointer;

  /* copia el look de .nx-nav-item */
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255,255,255,.72);
  font-weight: 850;
  font-size: .92rem;
  padding: .45rem .58rem;
  border-radius: 10px;
  line-height: 1;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.nx-nav-trigger:hover{
  color:#fff;
  background: rgba(255,255,255,.06);
}

.nx-nav-dd.is-pinned .nx-nav-trigger{
  color:#fff;
  background: rgba(168,85,247,.14);
  border-color: rgba(168,85,247,.22);
}

/* caret consistente */
.nx-caret{ opacity:.75; transform: translateY(-1px); }

/* =========================
   SOPORTE: contenedor mas chico (mega mas compacto)
   pegar AL FINAL
   ========================= */

#ddSupport .nx-mega{
  /* ancho mas chico */
  width: min(250px, 92vw) !important;

  /* menos padding = cuadro mas chico */
  padding: 12px 12px 10px !important;

  /* menos redondeo y sombra mas suave */
  border-radius: 16px !important;
  box-shadow: 0 16px 46px rgba(0,0,0,.45) !important;
}

/* flechita/diamond arriba (si se ve grande) */
#ddSupport .nx-mega::before{
  width: 12px !important;
  height: 12px !important;
  top: -6px !important;
}

/* items mas bajitos */
#ddSupport .nx-mega-item{
  padding: 9px 10px !important;
  border-radius: 12px !important;
  min-height: 48px !important;
}

/* icono un toque mas chico */
#ddSupport .nx-mega-ico{
  width: 28px !important;
  height: 28px !important;
  border-radius: 10px !important;
}

/* texto un toque mas chico */
#ddSupport .nx-mega-name{
  font-size: .95rem !important;
}

/* tag RAPIDO mas chico */
#ddSupport .nx-mega-tag{
  font-size: .68rem !important;
  padding: 4px 8px !important;
}

/* boton de abajo mas chico */
#ddSupport .nx-mega-all{
  margin-top: 10px !important;
  padding: 10px 10px !important;
  border-radius: 12px !important;
  font-size: .95rem !important;
}

/* ===== SOPORTE: iconos svg pro ===== */
#ddSupport .nx-mega-ico{
  display:grid;
  place-items:center;
  background: rgba(168,85,247,.14);
  border: 1px solid rgba(168,85,247,.22);
  color: rgba(255,255,255,.92);
}

#ddSupport .nx-mega-ico svg{
  width: 18px;
  height: 18px;
  display:block;
  opacity: .95;
}

#ddSupport .nx-mega-ico.is-discord{
  background: rgba(88,101,242,.16);
  border-color: rgba(88,101,242,.28);
}

/* hover mas profesional */
#ddSupport .nx-mega-item{
  background: rgba(255,255,255,.035) !important;
  border-color: rgba(255,255,255,.07) !important;
}

#ddSupport .nx-mega-item:hover{
  background: rgba(255,255,255,.055) !important;
  border-color: rgba(168,85,247,.32) !important;
  transform: translateY(-1px);
}

/* tag RAPIDO mas limpio */
#ddSupport .nx-mega-tag.is-fast{
  background: rgba(34,197,94,.16);
  border-color: rgba(34,197,94,.30);
  color: rgba(255,255,255,.92);
}

.nx-feature{ gap:.65rem; align-items:center; }
.nx-check{ display:none !important; } /* oculta el check viejo */

.nx-emoji{
  width: 22px;
  display:inline-flex;
  justify-content:center;
  font-size: 1.05rem;
  line-height: 1;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.nx-ftxt{
  font-weight: 800;
  color: rgba(255,255,255,.88);
}

.nx-net .nx-net-wrap{
  position:relative;
  height:420px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(124,58,237,.22), transparent 60%),
    linear-gradient(180deg, rgba(10,16,26,.65), rgba(10,16,26,.85));
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
}

.nx-net-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
}

.nx-net-label{
  position:absolute;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  font-weight:700;
  font-size:.92rem;
  display:flex;
  align-items:center;
  gap:10px;
}

.nx-net-label .dot{
  width:10px;height:10px;border-radius:999px;
  background: #ff3bd1;
  box-shadow: 0 0 0 6px rgba(255,59,209,.15);
}

/* =========================
   NET MAP PRO (Neovex)
   ========================= */

.nx-netwrap{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(1200px 600px at 60% 35%, rgba(168,85,247,.20), transparent 60%),
    radial-gradient(900px 420px at 20% 55%, rgba(255,59,209,.10), transparent 55%),
    linear-gradient(180deg, rgba(10,12,18,.72), rgba(8,10,16,.82));
  box-shadow:
    0 22px 70px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
}

#nxNetMap{
  width: 100%;
  height: 360px; /* ajusta a gusto */
  display: block;
}

/* grid overlay fino + vignette */
.nx-netwrap::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .10;
  pointer-events:none;
}

.nx-netwrap::after{
  content:"";
  position:absolute; inset:-40px;
  background:
    radial-gradient(closest-side, transparent 55%, rgba(0,0,0,.65) 100%);
  opacity:.75;
  pointer-events:none;
}

/* label estilo pill */
.nx-net-label{
  position:absolute;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.92);
  background: rgba(18,22,34,.62);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events:none;
  transform: translate(-50%, -50%);
}

.nx-net-dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,59,209,1);
  box-shadow: 0 0 0 6px rgba(255,59,209,.18), 0 0 18px rgba(255,59,209,.55);
}

/* NET MAP FINAL */
.nx-netwrap{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(124,58,237,.22), transparent 60%),
    linear-gradient(180deg, rgba(10,16,26,.65), rgba(10,16,26,.85));
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
}

#nxNetMap{
  width:100%;
  height:420x;
  display:block;
}

.nx-net-label{
  position:absolute;
  transform: translate(-50%, -50%);
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.92);
  background: rgba(18,22,34,.62);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events:none;
}

.nx-net-dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,59,209,1);
  box-shadow: 0 0 0 6px rgba(255,59,209,.18), 0 0 18px rgba(255,59,209,.55);
}

/* =========================
   NET MAP WORLD + TRAFICO (PRO)
   ========================= */

.nx-netwrap{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(1200px 640px at 55% 35%, rgba(168,85,247,.16), transparent 60%),
              linear-gradient(180deg, rgba(8,10,16,.88), rgba(6,7,12,.96));
  box-shadow: 0 24px 90px rgba(0,0,0,.55);
  height: 420px;
}

/* grid overlay fino (como tu referencia) */
.nx-netwrap::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .14;
  pointer-events:none;
}

/* vignette + haze pro */
.nx-netwrap::after{
  content:"";
  position:absolute; inset:-60px;
  background:
    radial-gradient(900px 520px at 65% 35%, rgba(168,85,247,.22), transparent 60%),
    radial-gradient(700px 420px at 25% 60%, rgba(255,59,209,.14), transparent 55%),
    radial-gradient(closest-side, transparent 58%, rgba(0,0,0,.72) 100%);
  pointer-events:none;
  opacity:.95;
}

/* canvas arriba */
#nxNetMap{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
}

/* labels pills */
.nx-net-label{
  position:absolute;
  transform: translate(-50%, -50%);
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,.92);
  background: rgba(12,14,22,.62);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events:none;
}

/* dot + glow */
.nx-net-dot{
  width: 9px; height: 9px;
  border-radius: 999px;
  background: rgba(255,59,209,1);
  box-shadow:
    0 0 0 7px rgba(255,59,209,.16),
    0 0 18px rgba(255,59,209,.55);
}

/* =========================
   NET MAP (MAPA + GRID + TRAFICO) - FIX CAPAS / VISIBILIDAD
   ========================= */

.nx-netwrap{
  position: relative;
  height: 520px;              /* mas parecido a tu 2da imagen */
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(1200px 640px at 55% 35%, rgba(168,85,247,.12), transparent 60%),
    linear-gradient(180deg, rgba(8,10,16,.92), rgba(6,7,12,.98));
  box-shadow: 0 24px 90px rgba(0,0,0,.55);
}

/* GRID encima del mapa (como tu 2da imagen) */
.nx-netwrap::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .22;
  z-index: 2;
  pointer-events: none;
}

/* VIGNETTE (oscurece bordes) PERO SIN MATAR EL MAPA */
.nx-netwrap::after{
  content:"";
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(900px 520px at 65% 35%, rgba(168,85,247,.18), transparent 60%),
    radial-gradient(700px 420px at 25% 60%, rgba(255,59,209,.10), transparent 55%),
    radial-gradient(closest-side, transparent 62%, rgba(0,0,0,.62) 100%);
  opacity: .85;
  z-index: 3;
  pointer-events: none;
}

/* CANVAS (rutas/bolitas) */
#nxNetMap{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 4;                 /* arriba del mapa y del grid */
  pointer-events: none;
}

/* LABELS */
.nx-net-label{
  position:absolute;
  transform: translate(-50%, -50%);
  z-index: 6;
  pointer-events: none;

  /* SIN fondo */
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;

  color: rgba(255,255,255,.92);
  text-shadow:
    0 2px 10px rgba(0,0,0,.65),
    0 0 18px rgba(168,85,247,.25);
}

.nx-net-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,59,209,1);
  box-shadow:
    0 0 0 7px rgba(255,59,209,.16),
    0 0 18px rgba(255,59,209,.55);
}

/* Responsive (para que no se haga gigante en celu) */
@media (max-width: 900px){
  .nx-netwrap{ height: 380px; }
}

.nx-net-dot.is-core{
  background: rgba(255,255,255,1);
  box-shadow: 0 0 0 7px rgba(168,85,247,.22), 0 0 20px rgba(168,85,247,.55);
}
.nx-net-dot.is-edge{
  background: rgba(255,190,0,1);
  box-shadow: 0 0 0 7px rgba(255,190,0,.18), 0 0 22px rgba(255,190,0,.55);
}

/* imagen del mundo */
.nx-net-world{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: contain;     /* <-- CLAVE: coincide con tu proyeccion JS */
  object-position: center;
  opacity: .95;
  filter: saturate(1.05) contrast(1.05);
  transform: none;         /* <-- quita el scale(1.02) */
  z-index: 1;
}

/* canvas arriba */
#nxNetMap{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  z-index: 2;
}

/* marker EXACTO en el pais */
.nx-net-marker{
  position:absolute;
  left:0; top:0;
  transform: translate(-50%,-50%);
  width: 12px; height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 0 0 8px rgba(168,85,247,.10);
  z-index: 3;
  pointer-events:none;
}
.nx-net-marker::after{
  content:"";
  position:absolute;
  inset:-14px;
  border-radius: 999px;
  border: 1px solid rgba(168,85,247,.22);
  opacity:.0;
  animation: nxPing 2.2s var(--pingDelay, 0s) infinite;
}
@keyframes nxPing{
  0%{ transform: scale(.35); opacity:.0; }
  12%{ opacity:.9; }
  100%{ transform: scale(1.0); opacity:0; }
}

/* label pill arriba del marker (pero separado por offset) */
.nx-net-label{
  z-index: 4;
}

.nx-net-flag{
  font-size: 16px;
  line-height: 1;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.55));
}

/* ===== NET: SOLO NOMBRE + BANDERA + PING (sin circulos grandes) ===== */

/* apaga cualquier dot viejo si quedo por ahi */
.nx-net-dot{ display:none !important; }

.nx-net-label{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}

/* puntito ping pro al lado del texto */
.nx-net-ping{
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex: 0 0 auto;

  background: rgba(255,255,255,.95);
  box-shadow: 0 0 14px rgba(168,85,247,.45);
}

/* aro que se expande (ping) */
.nx-net-ping::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:999px;
  border: 1px solid rgba(168,85,247,.55);
  opacity: 0;
  transform: scale(.55);
  animation: nxPing 1.55s ease-out infinite;
}

@keyframes nxPing{
  0%   { opacity:.65; transform: scale(.55); }
  65%  { opacity:.18; transform: scale(1.35); }
  100% { opacity:0;   transform: scale(1.75); }
}

/* labels encima de todo */
.nx-net-label{
  z-index: 6;
  position:absolute;
  transform: translate(-50%, -50%);
  display:inline-flex;
  align-items:center;
  gap:8px;

  font-weight: 800;
  font-size: 14px;
  color: rgba(255,255,255,.95);
  text-shadow: 0 2px 14px rgba(0,0,0,.75);

  /* un toque de “pill” pro para que no se pierda */
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events:none;
}

.nx-net-flag{
  font-size: 16px;
  line-height: 1;
}

/* ping pequeno pro */
.nx-net-ping{
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 16px rgba(168,85,247,.55);
}

.nx-net-ping::after{
  content:"";
  position:absolute;
  inset:-9px;
  border-radius:999px;
  border: 1px solid rgba(168,85,247,.65);
  opacity: 0;
  transform: scale(.55);
  animation: nxPing 1.55s ease-out infinite;
  animation-delay: var(--pingDelay, 0s);
}

@keyframes nxPing{
  0%   { opacity:.70; transform: scale(.55); }
  65%  { opacity:.18; transform: scale(1.35); }
  100% { opacity:0;   transform: scale(1.75); }
}

.nx-net-code{
  display:inline-block;
  margin-right:6px;
  opacity:.9;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.nx-net-flag{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  flex: 0 0 18px;
}

.nx-net-flag-img{
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 999px;        /* circulito tipo badge */
  box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 8px 20px rgba(0,0,0,.25);
}

.nx-net-flag{
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex: 0 0 24px;
}

.nx-net-flag-img{
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 8px 20px rgba(0,0,0,.25);
}

.nx-net-flag{
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1px; /* antes 8px -> mas junto */
  flex: 0 0 24px;
}

/* ===== recorta el cuadro (ancho) y centrado ===== */
#info .nx-netwrap{
  max-width: 1000px;   /* <-- baja esto hasta que te guste: 1200 / 1100 / 1000 / 900 */
  margin: 0 auto;      /* centra */
}

/* opcional: un poco menos borde redondeado si lo achicas mucho */
#info .nx-netwrap{
  border-radius: 20px;
}

/* =========================
   PLAN SELECTOR (pagina 2)
   ========================= */

.nx-planbar{
  margin-top: 1.25rem;
  display:flex;
  justify-content:center;
}

.nx-pick{
  width: min(520px, 100%);
  margin: 0 auto; 
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,10,18,.35);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  padding: 14px 14px 12px;
}

.nx-pick-top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.nx-pick-kicker{
  font-weight: 900;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  letter-spacing: .02em;
}

.nx-pick-sub{
  color: rgba(255,255,255,.55);
  font-weight: 800;
  font-size: .82rem;
}

.nx-pick-row{
  display:flex;
  align-items:center;
  gap: 12px;
}

.nx-pick-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  object-fit: cover;
}

.nx-pick-select{
  width: 100%;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  padding: 0 14px;
  outline: none;
}

.nx-pick-select:focus{
  border-color: rgba(168,85,247,.45);
  box-shadow: 0 0 0 4px rgba(168,85,247,.18);
}

.nx-plans{
  margin-top: 1.4rem;
  display:grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.nx-plan{
  position: relative;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,10,18,.40);
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  padding: 1.15rem;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  overflow:hidden;
}

.nx-plan::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(500px 140px at 25% 0%, rgba(250,204,21,.12), transparent 60%);
  pointer-events:none;
}

.nx-plan:hover{
  transform: translateY(-3px);
  border-color: rgba(250,204,21,.22);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}

.nx-plan.is-featured{
  border-color: rgba(250,204,21,.32);
  box-shadow: 0 30px 95px rgba(0,0,0,.62);
}

.nx-plan-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:1rem; }
.nx-plan-title{ font-weight:950; font-size:1.15rem; }
.nx-plan-desc{ margin-top:.35rem; color: rgba(255,255,255,.62); font-weight:700; font-size:.92rem; }

.nx-plan-price{ margin-top:.95rem; font-weight:950; font-size:1.5rem; }
.nx-plan-price span{ opacity:.75; margin-right:.2rem; }
.nx-plan-price small{ font-size:.9rem; opacity:.7; font-weight:900; }

.nx-plan-meta{ margin-top:.55rem; color: rgba(255,255,255,.55); font-weight:800; font-size:.9rem; }

.nx-plan-cta{
  margin-top: 1.0rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:.9rem 1rem;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  text-decoration:none;
  color: rgba(255,255,255,.92);
  font-weight:950;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.nx-plan-cta:hover{
  transform: translateY(-1px);
  background: rgba(250,204,21,.12);
  border-color: rgba(250,204,21,.25);
}

.nx-plan-badge{
  position:absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(168,85,247,.18);
  color: rgba(255,255,255,.92);
  font-weight: 950;
  font-size: .78rem;
}

@media (min-width: 768px){
  .nx-plans{ grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px){
  .nx-plans.nx-plans-4{ grid-template-columns: repeat(4, 1fr); }
}

/* ===== Ajuste pagina 2: subir contenido ===== */
#planes.nx-pricing{
  padding-top: 2.2rem !important;   /* antes estaba muy grande */
  padding-bottom: 3.2rem !important;
}

/* si tu layout mete espacio por "hero" anterior */
#planes{ scroll-margin-top: 90px; } /* por si navegas con anchors */

/* ===== Cards mas grandes y mas "premium" ===== */
#planes .nx-plans{
  margin-top: 1.2rem !important;
  gap: 1.2rem !important;
}

#planes .nx-plan{
  padding: 1.35rem !important;
  background: rgba(12,12,20,.55) !important;
  border-color: rgba(255,255,255,.14) !important;
  box-shadow: 0 28px 90px rgba(0,0,0,.62) !important;
  transform: translateY(-6px); /* sube visualmente un toque */
}

#planes .nx-plan:hover{
  transform: translateY(-10px) !important;
  border-color: rgba(250,204,21,.30) !important;
}

#planes .nx-plan-title{
  font-size: 1.25rem !important;
  letter-spacing: .01em;
}

#planes .nx-plan-desc{
  font-size: .95rem !important;
  color: rgba(255,255,255,.68) !important;
}

#planes .nx-plan-price{
  font-size: 1.75rem !important;
  margin-top: 1.05rem !important;
}

#planes .nx-plan-cta{
  padding: 1rem 1rem !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,.07) !important;
}

/* featured mas llamativo */
#planes .nx-plan.is-featured{
  border-color: rgba(168,85,247,.45) !important;
  box-shadow: 0 34px 110px rgba(0,0,0,.72) !important;
}

#planes .nx-plan.is-featured::before{
  background: radial-gradient(520px 180px at 30% 0%,
    rgba(168,85,247,.20), transparent 60%) !important;
}

/* =========================
   FIX FINAL: PLANES BIEN POSICIONADOS
   pegar AL FINAL
   ========================= */

/* 1) HERO no tan alto (quita vacio) */
.nx-copy-wrap{ min-height: 360px !important; }

/* 2) NO montes #info encima de planes */
#info{
  margin-top: 0 !important;
  padding-top: 4.2rem !important;
  position: relative;
  z-index: 1 !important;
}

/* 3) Planes mas arriba y sin cortes */
#planes{
  padding-top: 2.0rem !important;
  padding-bottom: 3.0rem !important;
  position: relative;
  z-index: 2 !important;
  overflow: visible !important;
}

#planes .nx-plans,
#planes .nx-container{
  overflow: visible !important;
}

/* ===== FIX: QUITAR FRANJA NEGRA GIGANTE ENTRE HERO Y PLANES ===== */

/* 1) mata el degradado extra que te esta creando el bloque negro */
.nx-hero::before{
  content: none !important;     /* APAGA la franja */
}

/* 2) si quieres un fade pero chiquito, comenta el "content:none" y usa esto:
.nx-hero::before{
  content:"" !important;
  position:absolute !important;
  left:0; right:0; bottom:0 !important;
  height: 70px !important;
  z-index: 4 !important;
  pointer-events:none !important;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.55) 100%
  ) !important;
}
*/

/* 3) pega planes mas arriba (por si queda 1 poco de aire) */
#planes{
  margin-top: -110px !important;   /* sube la seccion */
  padding-top: 0.8rem !important;
}

/* ===== SUBIR PLANES HASTA LA LINEA ROJA (recortar hero) ===== */

/* 1) recorta el hero (quita vacio abajo) */
.nx-hero-inner{
  padding-bottom: 0.2rem !important;  /* prueba 0 a 0.6 */
}

/* si tu hero tiene altura/min-height en algun lado, esto lo mata */
.nx-hero,
.nx-copy-wrap{
  min-height: 0 !important;
}

/* 2) sube la seccion planes mas agresivo */
#planes{
  margin-top: -160px !important;  /* ajusta: -120, -160, -200 */
  padding-top: 0.6rem !important;
}

/* desktop: a veces necesita mas */
@media (min-width: 1024px){
  #planes{ margin-top: -260px !important; }
}

/* ====== PLANES PRO (nuevo) ====== */
:root{
  --nxAccent: #8b5cf6;
  --nxAccent2:#a855f7;
}

html[data-game="MINECRAFT"]{ --nxAccent:#38bdf8; --nxAccent2:#22c55e; }
html[data-game="HYTALE"]{ --nxAccent:#a855f7; --nxAccent2:#60a5fa; }
html[data-game="ARK"]{ --nxAccent:#f59e0b; --nxAccent2:#ef4444; }
html[data-game="7 DAYS TO DIE"]{ --nxAccent:#ef4444; --nxAccent2:#f97316; }
html[data-game="PROJECT ZOMBOID"]{ --nxAccent:#22c55e; --nxAccent2:#84cc16; }
html[data-game="RUST"]{ --nxAccent:#f97316; --nxAccent2:#ef4444; }
html[data-game="DISCORD"]{ --nxAccent:#5865F2; --nxAccent2:#22c55e; }
html[data-game="PALWORLD"]{ --nxAccent:#60a5fa; --nxAccent2:#34d399; }
html[data-game="FIVEM"]{ --nxAccent:#f59e0b; --nxAccent2:#ef4444; }
html[data-game="UNTURNED"]{ --nxAccent:#22c55e; --nxAccent2:#38bdf8; }
html[data-game="TERRARIA"]{ --nxAccent:#34d399; --nxAccent2:#60a5fa; }

.nx-plan2{
  position:relative;
  padding:18px 18px 16px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 18px 70px rgba(0,0,0,.45);
}

.nx-plan2::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(420px 220px at 20% 20%, color-mix(in srgb, var(--nxAccent) 28%, transparent), transparent 60%),
    radial-gradient(420px 220px at 80% 60%, color-mix(in srgb, var(--nxAccent2) 22%, transparent), transparent 55%);
  opacity:.9;
  pointer-events:none;
}

.nx-plan2 > *{ position:relative; z-index:2; }

.nx-plan-tag{
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.86);
}

.nx-specs{
  margin-top:12px;
  display:grid;
  gap:10px;
}

.nx-spec{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.16);
  color: rgba(255,255,255,.80);
  font-weight:800;
  font-size:13px;
}

.nx-spec b{ color: rgba(255,255,255,.92); }

.nx-feats{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.nx-feats li{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.84);
  font-weight:800;
  font-size:13px;
}

.nx-field{
  display:grid;
  gap:8px;
  margin-top:12px;
}

.nx-field span{
  font-size:12px;
  color: rgba(255,255,255,.72);
  font-weight:900;
}

.nx-input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.90);
  font-weight:800;
  outline:none;
}

.nx-input:focus{
  border-color: color-mix(in srgb, var(--nxAccent) 55%, rgba(255,255,255,.15));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--nxAccent) 22%, transparent);
}

.nx-plan2 .nx-plan-cta{
  margin-top:14px;
  border:1px solid color-mix(in srgb, var(--nxAccent) 55%, rgba(255,255,255,.15));
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--nxAccent) 55%, rgba(0,0,0,.2)),
    rgba(0,0,0,.12)
  );
}

.nx-plan2.is-featured{
  border-color: color-mix(in srgb, var(--nxAccent) 40%, rgba(255,255,255,.10));
}

.nx-plan2.is-featured .nx-plan-cta{
  background: linear-gradient(180deg, var(--nxAccent), var(--nxAccent2));
  border-color: transparent;
  color: #0b0b14;
}

.nx-note{
  margin-top:10px;
  font-size:12.5px;
  color: rgba(255,255,255,.70);
  font-weight:800;
}

.nx-more .nx-plan-cta{
  background: rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.12);
}
/* ===== PLANES: specs en 2 columnas (clean) ===== */

.nx-specs{
  margin-top: 14px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}

.nx-spec{
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 6px !important;

  padding: 12px 12px !important;
  border-radius: 14px !important;

  border: 1px solid rgba(255,255,255,.10) !important;
  background: rgba(0,0,0,.18) !important;

  color: rgba(255,255,255,.88) !important;
  font-weight: 900 !important;
  font-size: 12px !important;
}

.nx-spec span{
  opacity: .70 !important;
  font-weight: 1000 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
}

.nx-spec b{
  font-size: 14px !important;
  font-weight: 1100 !important;
  color: rgba(255,255,255,.95) !important;
}

/* Disco ocupa ancho completo (se ve mas pro) */
.nx-specs .nx-spec:nth-child(3){
  grid-column: 1 / -1 !important;
}

/* Como ya no hay features, ajusta espacios */
.nx-field{ margin-top: 12px !important; }
.nx-plan2 .nx-plan-cta{ margin-top: 12px !important; }

/* ===== FIX LAYOUT: planes alineados + mas pro ===== */

.nx-plans.nx-plans-4{
  display:grid !important;
  grid-template-columns: repeat(4, minmax(0,1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

@media (max-width: 1100px){
  .nx-plans.nx-plans-4{ grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
}
@media (max-width: 620px){
  .nx-plans.nx-plans-4{ grid-template-columns: 1fr !important; }
}

.nx-plan2{
  height: 100% !important;
  display:flex !important;
  flex-direction: column !important;
  gap: 12px !important;

  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,.10) !important;

  background:
    radial-gradient(900px 420px at 20% -10%, rgba(139,92,246,.18), transparent 55%),
    radial-gradient(800px 380px at 90% 40%, rgba(34,197,94,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)) !important;

  box-shadow: 0 18px 70px rgba(0,0,0,.48) !important;
  overflow:hidden !important;
}

.nx-plan2::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  opacity:.9;
  background:
    radial-gradient(420px 220px at 22% 18%, rgba(255,255,255,.07), transparent 60%),
    radial-gradient(420px 220px at 82% 62%, rgba(255,255,255,.05), transparent 55%);
}

.nx-plan2 > *{ position:relative; z-index:2; }

.nx-plan-top{
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  gap: 10px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

/* titulo y desc mas limpios */
.nx-plan-title{
  font-weight: 1100 !important;
  letter-spacing: -.01em !important;
}
.nx-plan-desc{
  color: rgba(255,255,255,.70) !important;
  font-weight: 800 !important;
}

/* tag pro */
.nx-plan-tag{
  font-weight: 1000 !important;
  font-size: 12px !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(0,0,0,.22) !important;
  color: rgba(255,255,255,.88) !important;
  white-space: nowrap !important;
}

/* price mas bonito */
.nx-plan-price{
  margin-top: 2px !important;
  font-weight: 1100 !important;
}
.nx-plan-price small{
  opacity:.75 !important;
  font-weight: 900 !important;
}
.nx-plan-meta{
  color: rgba(255,255,255,.65) !important;
  font-weight: 850 !important;
  font-size: 12.5px !important;
}

/* specs en 2 columnas (CPU/RAM) y Disco full */
.nx-specs{
  margin-top: 6px !important;
  display:grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}

.nx-spec{
  padding: 12px 12px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: rgba(0,0,0,.18) !important;
  display:grid !important;
  gap: 6px !important;
}

.nx-spec span{
  opacity:.70 !important;
  font-weight: 1000 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
}

.nx-spec b{
  color: rgba(255,255,255,.95) !important;
  font-weight: 1100 !important;
  font-size: 14px !important;
}

/* si tienes Disco como 3er spec, que ocupe toda la fila */
.nx-specs .nx-spec:nth-child(3){
  grid-column: 1 / -1 !important;
}

/* inputs siempre abajo, alineados */
.nx-field{ margin-top: 8px !important; }
.nx-input{
  border-radius: 14px !important;
  background: rgba(0,0,0,.22) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}
.nx-input:focus{
  border-color: rgba(139,92,246,.55) !important;
  box-shadow: 0 0 0 3px rgba(139,92,246,.22) !important;
}

/* CTA pegado abajo SIEMPRE */
.nx-plan-cta{
  margin-top: auto !important;
  padding: 12px 14px !important;
  border-radius: 14px !important;
  text-align:center !important;
  font-weight: 1100 !important;

  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(0,0,0,.18) !important;
}

/* recomendado con color */
.nx-plan2.is-featured{
  border-color: rgba(139,92,246,.40) !important;
  box-shadow: 0 22px 90px rgba(0,0,0,.55) !important;
}
.nx-plan2.is-featured .nx-plan-cta{
  border-color: transparent !important;
  background: linear-gradient(180deg, rgba(139,92,246,.95), rgba(168,85,247,.95)) !important;
  color: #0b0b14 !important;
}

/* card "Mas planes" mas limpia */
.nx-more{
  background:
    radial-gradient(900px 420px at 20% -10%, rgba(34,197,94,.14), transparent 55%),
    radial-gradient(800px 380px at 90% 40%, rgba(56,189,248,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)) !important;
}

/* Fix anchor con header sticky */
.nx-anchor{
  scroll-margin-top: 110px;
  height: 1px;
}

/* backup global por si usas ids en secciones */
#planes{ scroll-margin-top: 96px; }

/* quita el “corte” entre secciones */
.nx-page, .nx-section{
  border-top: 0 !important;
  box-shadow: none !important;
}

/* por si el anchor aun existe en algun lado */
.nx-anchor{
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
/* ===== PLANES: fondo PRO (azul petróleo) ===== */
#planes{
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(168,85,247,.10), transparent 60%),
    radial-gradient(900px 420px at 80% 30%, rgba(56,189,248,.08), transparent 60%),
    linear-gradient(180deg, #071521 0%, #060C12 100%) !important;
}

/* por si antes pegaste overlays */
#planes::before,
#planes::after{
  content: none !important;
  display: none !important;
}

.nx-hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  /* SOLO arriba oscuro, abajo queda intacto */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.18) 35%,
    rgba(0,0,0,0) 60%
  );
}

/* ===== TITULO + DESC de PLANES como banner (centrado) ===== */
#planes .nx-head{
  text-align: center;
}

#planes .nx-h2{
  font-family: "Oxanium", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

#planes .nx-p{
  font-family: Inter, system-ui, sans-serif;
  max-width: 62ch;
  margin: .8rem auto 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
}

@media (min-width: 1024px){
  /* tu subida se queda */
  #planes{ margin-top: -160px; }

  /* 1) planes por encima del hero (para que el select funcione) */
  #planes{ position: relative; z-index: 50; }

  /* 2) el hero por debajo */
  .nx-hero{ position: relative; z-index: 1; }

  /* 3) que NO se corte el dropdown/clicks */
  #planes, #planes .nx-container{ overflow: visible; }
}
/* PLANES: descripcion tipo “banner text” (como tu captura) */
#planes .nx-p{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  line-height: 1.45;
  letter-spacing: .01em;

  color: rgba(255,255,255,.92);
  text-shadow: 0 10px 30px rgba(0,0,0,.55);

  max-width: 62ch;
  margin: .85rem auto 0;
}

/* 1) asegura contexto del badge dentro de la card */
#planes .nx-plan{ position: relative; }

/* 2) badge recomendado: fijo arriba-izquierda (no centrado) */
#planes .nx-plan-badge{
  left: 16px !important;
  top: 14px !important;
  transform: none !important;
  margin: 0 !important;
  z-index: 5 !important;
}

/* 3) evita que tape el titulo */
#planes .nx-plan-top{
  padding-top: 28px !important;
}

/* Que el grid no obligue a estirar esta card */
#planes .nx-plans{ align-items: start !important; }

/* “Mas planes” mas compacta */
#planes .nx-plan.nx-more{
  align-self: start !important;
  padding: 1.05rem !important;
}

/* reduce espacios internos del contenido */
#planes .nx-more .nx-plan-price{ margin-top: .55rem !important; }
#planes .nx-more .nx-plan-cta{ margin-top: .85rem !important; }

/* Glow fuerte al pasar el mouse (todas las cards) */
#planes .nx-plan:hover{
  border-color: rgba(168,85,247,.75) !important;
  box-shadow:
    0 0 0 1px rgba(168,85,247,.35) inset,
    0 0 22px rgba(168,85,247,.35),
    0 0 60px rgba(168,85,247,.22),
    0 28px 90px rgba(0,0,0,.55) !important;
}

/* Si quieres que SOLO la destacada tenga todavía mas glow */
#planes .nx-plan.is-featured:hover{
  box-shadow:
    0 0 0 1px rgba(168,85,247,.45) inset,
    0 0 30px rgba(168,85,247,.45),
    0 0 90px rgba(168,85,247,.28),
    0 34px 110px rgba(0,0,0,.62) !important;
}

/* =========================
   FIX: BADGE "recomendado" torcido
   ========================= */

/* Asegura que la card sea el contexto del badge */
#planes .nx-plan{ position: relative !important; }

/* Cubre ambos nombres (por si usas nx-plan-badge o nx-plan-tag) */
#planes .nx-plan .nx-plan-badge,
#planes .nx-plan .nx-plan-tag{
  position: absolute !important;
  top: 14px !important;
  left: 18px !important;

  right: auto !important;
  bottom: auto !important;

  transform: none !important;
  rotate: 0deg !important;

  margin: 0 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: max-content !important;
  max-width: calc(100% - 36px) !important;
}

/* Deja espacio arriba para que no choque con el título */
#planes .nx-plan-top{
  padding-top: 34px !important;
}

/* =========================
   BADGE "recomendado" al lado del título (derecha)
   ========================= */

/* La card debe ser el contexto del badge */
#planes .nx-plan{ position: relative !important; }

/* Badge recomendado: arriba-derecha */
#planes .nx-plan .nx-plan-badge,
#planes .nx-plan .nx-plan-tag{
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  left: auto !important;

  transform: none !important;
  margin: 0 !important;
  white-space: nowrap !important;
  max-width: calc(100% - 36px) !important;
}

/* Deja espacio a la derecha del título para que no se meta debajo del badge */
#planes .nx-plan-title{
  padding-right: 140px !important; /* ajusta 120-170 según tu badge */
}
/* =========================
   CURSOR AMARILLO GLOBAL
   ========================= */

:root{
  /* Cursor verde fosforescente estilo “Minecraft”, con borde negro */
  --nx-cursor-mc: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M4 3l12 26 3-10 10-3z' fill='%2300FF5A' stroke='%23000000' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M10.4 15.2l5.6 12 1.6-5.6 5.6-1.6z' fill='rgba(255,255,255,0.22)'/%3E%3C/svg%3E") 2 2;
}

/* Global */
html, body{
  cursor: var(--nx-cursor-mc), auto !important;
}

/* Clickables */
a, button, [role="button"], select, summary,
input[type="button"], input[type="submit"], input[type="checkbox"], input[type="radio"]{
  cursor: var(--nx-cursor-mc), pointer !important;
}

/* Texto (para escribir cómodo) */
input[type="text"], input[type="email"], input[type="password"], input[type="search"], textarea{
  cursor: text !important;
}
/* ===== PLANES: títulos más ARRIBA y más a la IZQUIERDA ===== */
#planes .nx-plan-top{
  padding-top: 6px !important;      /* sube el bloque */
  margin-bottom: 6px !important;
}

#planes .nx-plan-title{
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.01em !important;
  transform: translate(-6px, -6px) !important; /* izquierda + arriba */
}

#planes .nx-plan-desc{
  margin-top: 6px !important;
  transform: translate(-6px, -6px) !important; /* acompaña al título */
}

/* Badge (Básico/Premium/Pro/Popular) más pegado arriba-derecha */
#planes .nx-plan-top .nx-plan-tag,
#planes .nx-plan-top .nx-plan-badge{
  transform: translate(6px, -6px) !important;
}
/* ===== Custom select: mantiene tu cursor verde SIEMPRE ===== */
.nx-cselect{ position:relative; width:100%; }

.nx-cselect-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  padding:.85rem 1rem;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,20,30,.55);
  color: rgba(255,255,255,.92);
  cursor: var(--nx-cursor-mc), pointer !important;
  user-select:none;
}

.nx-cselect-left{ display:flex; align-items:center; gap:.75rem; }

.nx-cselect-icon{
  width:28px; height:28px;
  border-radius:8px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
}

.nx-cselect-list{
  position:absolute;
  left:0; right:0;
  top: calc(100% + 10px);
  z-index: 9999;
  max-height: 320px;
  overflow:auto;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(6,12,18,.96);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  padding:.35rem;
  display:none;

  /* Cursor verde dentro del dropdown */
  cursor: var(--nx-cursor-mc), auto !important;
}

.nx-cselect.open .nx-cselect-list{ display:block; }

.nx-cselect-opt{
  display:flex;
  align-items:center;
  gap:.75rem;
  padding:.75rem .9rem;
  border-radius:12px;
  color: rgba(255,255,255,.9);
  cursor: var(--nx-cursor-mc), pointer !important;
}

.nx-cselect-opt:hover{ background: rgba(124,252,0,.14); }

.nx-cselect-opt[aria-selected="true"]{
  background: rgba(124,252,0,.22);
  border: 1px solid rgba(124,252,0,.25);
}

.nx-cselect-caret{ opacity:.85; font-size: 1.05rem; }

/* Ocultamos el select nativo (lo dejamos para tu lógica y compatibilidad) */
select.nx-native-select{
  position:absolute !important;
  opacity:0 !important;
  pointer-events:none !important;
  width:1px !important;
  height:1px !important;
}

/* “Server location” (label) también con cursor verde */
#planes .nx-field > span{
  cursor: var(--nx-cursor-mc), pointer !important;
}
/* =========================
   CURSOR VERDE ABSOLUTO (ANTI-CAMBIO)
   Pégalo al FINAL del CSS
   ========================= */

/* Fuerza en TODO, incluyendo pseudo-elementos */
*, *::before, *::after{
  cursor: var(--nx-cursor-mc), auto !important;
}

/* Fuerza “pointer” en todo lo que sea clickeable/interactivo */
a, button, [role="button"], summary, label,
select, option,
input, textarea{
  cursor: var(--nx-cursor-mc), pointer !important;
}

/* Evita que el navegador meta cursor “text” en labels/spans/headers */
span, p, h1, h2, h3, h4, h5, h6, small, strong, em, li, div{
  cursor: var(--nx-cursor-mc), auto !important;
}
/* separa el bloque de título+selector de las cards */
#planes .nx-head{ margin-bottom: 34px !important; }

/* por si algún margin-top se mete, lo neutralizamos */
#planes .nx-plans{ margin-top: 0 !important; }

/* MÁS AIRE entre el bloque de arriba (título+selector) y las cards */
.nx-head{ 
  margin-bottom: 36px !important;
}

/* por si algún margin-top te lo pisa/colapsa, esto nunca falla */
.nx-plans{
  margin-top: 0 !important;
  padding-top: 18px !important;
}

/* =========================================================
   PLANES (2da sección): BORDE/GLOW DEL RECOMENDADO POR JUEGO
   Pegar AL FINAL FINAL del styles.css
   ========================================================= */

/* Default */
:root{
  --planGlow: 140, 90, 255;
  --planBorder: rgba(140, 90, 255, .98);
}

/* Colores por juego usando data-game (case-insensitive) */
:root[data-game="minecraft" i]{ --planGlow:140, 90,255; --planBorder:rgba(140, 90,255,.98); } /* morado SOLO minecraft */
:root[data-game="hytale" i]{    --planGlow: 34,211,238; --planBorder:rgba( 34,211,238,.98); }
:root[data-game="ark" i]{       --planGlow: 34,197, 94; --planBorder:rgba( 34,197, 94,.98); }
:root[data-game="7 d.t die" i]{ --planGlow:251,146, 60; --planBorder:rgba(251,146, 60,.98); }
:root[data-game="p. zomboid" i]{--planGlow:239, 68, 68; --planBorder:rgba(239, 68, 68,.98); }
:root[data-game="rust" i]{      --planGlow:245,158, 11; --planBorder:rgba(245,158, 11,.98); }
:root[data-game="discord" i]{   --planGlow: 59,130,246; --planBorder:rgba( 59,130,246,.98); }
:root[data-game="palworld" i]{  --planGlow:244,114,182; --planBorder:rgba(244,114,182,.98); }
:root[data-game="fivem" i]{     --planGlow: 20,184,166; --planBorder:rgba( 20,184,166,.98); }
:root[data-game="unturned" i]{  --planGlow:163,230, 53; --planBorder:rgba(163,230, 53,.98); }
:root[data-game="terraria" i]{  --planGlow: 16,185,129; --planBorder:rgba( 16,185,129,.98); }

/* ===== SOLO PLANES: tarjeta recomendada ===== */
#planes .nx-plan2.is-featured{
  position: relative !important;
  border: 2px solid var(--planBorder) !important;
  box-shadow:
    0 0 0 1px rgba(var(--planGlow), .28) inset,
    0 0 18px rgba(var(--planGlow), .38),
    0 22px 90px rgba(0,0,0,.55) !important;
}

/* Aura externa */
#planes .nx-plan2.is-featured::before{
  content:"" !important;
  position:absolute !important;
  inset:-14px !important;
  border-radius: 26px !important;
  pointer-events:none !important;
  background: radial-gradient(closest-side, rgba(var(--planGlow), .22), transparent 70%) !important;
  filter: blur(10px) !important;
  opacity: .9 !important;
}

/* Badge "Recomendado" */
#planes .nx-plan2.is-featured .nx-plan-badge{
  border: 1px solid rgba(var(--planGlow), .55) !important;
  background: rgba(var(--planGlow), .18) !important;
  box-shadow: 0 0 18px rgba(var(--planGlow), .25) !important;
}
/* =========================================================
   PLANES: HOVER DEL "RECOMENDADO" USA SU MISMO COLOR (NO MORADO)
   Pegar AL FINAL FINAL del styles.css
   ========================================================= */

/* 1) Asegura que el hover NO reemplace con morado el borde del recomendado */
#planes .nx-plan2.is-featured:hover{
  border-color: var(--planBorder) !important;
  box-shadow:
    0 0 0 1px rgba(var(--planGlow), .28) inset,
    0 0 18px rgba(var(--planGlow), .42),
    0 28px 110px rgba(0,0,0,.62) !important;
  filter:
    drop-shadow(0 0 14px rgba(var(--planGlow), .55))
    drop-shadow(0 0 34px rgba(var(--planGlow), .32)) !important;
}

/* 2) Si tu hover morado viene de pseudo-elementos, fuerza el color correcto */
#planes .nx-plan2.is-featured:hover::before{
  background: radial-gradient(closest-side, rgba(var(--planGlow), .24), transparent 70%) !important;
  opacity: .95 !important;
}
#planes .nx-plan2.is-featured:hover::after{
  background: radial-gradient(800px 280px at 50% 50%,
    rgba(var(--planGlow), .14),
    transparent 60%) !important;
  opacity: 1 !important;
}

/* 3) El pill "Recomendado" también con el mismo color del plan */
#planes .nx-plan2.is-featured:hover .nx-plan-badge{
  border-color: rgba(var(--planGlow), .70) !important;
  background: rgba(var(--planGlow), .22) !important;
  box-shadow: 0 0 22px rgba(var(--planGlow), .30) !important;
}
/* ===== BAJAR BRILLO DEL RECOMENDADO (PLANES) ===== */

/* Intensidad general (bájalo más si quieres) */
#planes{
  --planAura: .55;   /* antes ~.95 */
  --planGlowA: .22;  /* glow 1 */
  --planGlowB: .14;  /* glow 2 */
}

/* Card recomendada (menos glow) */
#planes .nx-plan2.is-featured{
  box-shadow:
    0 0 0 1px rgba(var(--planGlow), .18) inset,
    0 0 10px rgba(var(--planGlow), var(--planGlowA)),
    0 18px 70px rgba(0,0,0,.58) !important;
  filter:
    drop-shadow(0 0 10px rgba(var(--planGlow), var(--planGlowB))) !important;
}

/* Halo externo (menos grande y menos blur) */
#planes .nx-plan2.is-featured::before{
  inset:-10px !important;        /* antes -14px */
  filter: blur(7px) !important;  /* antes 10px */
  opacity: var(--planAura) !important;
}

/* Hover también más suave */
#planes .nx-plan2.is-featured:hover{
  box-shadow:
    0 0 0 1px rgba(var(--planGlow), .20) inset,
    0 0 14px rgba(var(--planGlow), .26),
    0 22px 85px rgba(0,0,0,.62) !important;
  filter:
    drop-shadow(0 0 12px rgba(var(--planGlow), .22)) !important;
}
/* ===== Quita el “manchón”/overlay interno SOLO en el recomendado ===== */
#planes .nx-plan2.is-featured::before{
  opacity: 0 !important;
  background: none !important;
}

/* Por si en tu CSS también lo reactivas al hover */
#planes .nx-plan2.is-featured:hover::before{
  opacity: 0 !important;
  background: none !important;
}
/* FORZAR texto blanco en los CTA de planes (Comprar / Ver más) */
#planes .nx-plan-cta,
#planes .nx-plan-cta:visited,
#planes .nx-plan-cta:hover,
#planes .nx-plan-cta:active {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important; /* por si hay text-fill */
  opacity: 1 !important;                   /* por si lo estaban apagando */
  filter: none !important;                 /* por si le aplicaron filter */
}

/* La flecha hereda el color */
#planes .nx-plan-cta > span {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  opacity: 1 !important;
}
/* Fallback instantáneo: se ve algo desde el primer frame */
.nx-fallback-card .nx-card-media{
  background-image: url("imagen/fondo-card/fondo-minecraft-card.avif");
  background-size: cover;
  background-position: 50% 22%;
  background-repeat: no-repeat;
}

/* Y un color base por si la imagen tarda */
.nx-card-media{
  background-color: rgba(255,255,255,.04);
}
/* =========================================================
   BLOQUE FINAL SEGURO
   - Fondo visual unificado entre PLANES / FAQ / INFO
   - Sin cortes visibles
   - FAQ con respuesta flotante (overlay)
   - NO rompe la estructura de #planes
   ========================================================= */

/* ===== 0) Variables del fondo global (mismo look de PLANES) ===== */
:root{
  --nx-unified-bg:
    radial-gradient(900px 420px at 20% 10%, rgba(168,85,247,.10), transparent 60%),
    radial-gradient(900px 420px at 80% 30%, rgba(56,189,248,.08), transparent 60%),
    linear-gradient(180deg, #071521 0%, #060c12 100%);
}

/* ===== 1) Fondo base general ===== */
html, body{
  background: #060c12 !important;
}

/* =========================================================
   2) UNIFICACIÓN REAL DE FONDO (sin tocar layout)
   Clave: usamos background con attachment FIXED en secciones
   para que el patrón quede alineado y no se vean cortes
   ========================================================= */
#planes,
#faq,
#info{
  background-color: transparent !important;
  background-image: var(--nx-unified-bg) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center top !important;
  background-attachment: fixed !important; /* <- unifica visualmente */
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* Quita líneas duras heredadas de secciones */
#planes.nx-page,
#faq.nx-page,
#info.nx-page,
.nx-page,
.nx-section{
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

/* Muy importante: apaga pseudo-elementos de transición que crean franjas */
#faq::before, #faq::after,
#info::before, #info::after{
  content: none !important;
  display: none !important;
}

/* En desktop también apagamos pseudo separadores generales si existen */
#planes::before,
#planes::after{
  /* NO forzamos content:none para no romper nada que ya uses en #planes.
     Solo neutralizamos si estaban metiendo una línea/sombra. */
  box-shadow: none !important;
  border: 0 !important;
}

/* Si alguna regla vieja dejó un "fondo sólido" en wrappers internos, lo limpiamos */
#faq,
#info{
  position: relative;
  z-index: 1;
}

/* Fallback para móviles (background-attachment: fixed a veces falla) */
@media (max-width: 900px){
  #planes,
  #faq,
  #info{
    background-attachment: scroll !important;
  }
}

/* =========================================================
   3) FAQ (PÁGINA 3) — overlay flotante sin empujar cards
   Estructura esperada:
   .nx-faq-item
     .nx-faq-q
     .nx-faq-pop > .nx-faq-pop-inner
   ========================================================= */

#faq.nx-faq{
  position: relative;
  padding: 4.2rem 0 5rem;
  overflow: visible !important;
}

#faq .nx-container{
  position: relative;
  z-index: 2;
  overflow: visible !important;
}

/* Header FAQ */
.nx-faq-head{
  text-align: center;
  max-width: 920px;
  margin: 0 auto 1.35rem;
}

.nx-faq-kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: .84rem;
  border: 1px solid rgba(168,85,247,.28);
  background: rgba(168,85,247,.12);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

#faq .nx-p{
  color: rgba(255,255,255,.78);
}

/* Layout FAQ */
.nx-faq-layout{
  display: grid;
  grid-template-columns: 320px minmax(0,1fr);
  gap: 14px;
  align-items: start;
  overflow: visible !important;
}

/* Lado izquierdo */
.nx-faq-side{
  overflow: visible !important;
}

.nx-faq-side-card{
  position: sticky;
  top: 92px;
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(15,19,31,.82), rgba(9,11,18,.90));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 18px 45px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.nx-faq-side-top{
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .07em;
  color: rgba(255,255,255,.62);
  margin-bottom: 8px;
}

.nx-faq-side-card h3{
  margin: 0 0 8px;
  color: rgba(255,255,255,.96);
  font-weight: 900;
  line-height: 1.15;
  font-size: 1.02rem;
}

.nx-faq-side-card p{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.4;
  font-size: .91rem;
}

.nx-faq-tags{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nx-faq-tags span{
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  font-size: .80rem;
  font-weight: 700;
}

.nx-faq-side-btn{
  margin-top: 14px;
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(168,85,247,.34);
  background: linear-gradient(180deg, rgba(168,85,247,.22), rgba(124,58,237,.18));
  transition: .18s ease;
}
.nx-faq-side-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(168,85,247,.52);
  background: linear-gradient(180deg, rgba(168,85,247,.28), rgba(124,58,237,.24));
}

/* Grid FAQ */
.nx-faq-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  align-items: start;
  overflow: visible !important;
}

.nx-faq-col{
  display: grid;
  gap: 10px;
  align-content: start;
  overflow: visible !important;
  position: relative;
  isolation: isolate;
}

/* Item base */
.nx-faq-item{
  position: relative;
  z-index: 1;
  overflow: visible !important;
}

.nx-faq-item.is-open{
  z-index: 60;
}

/* Pregunta */
.nx-faq-q{
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  color: rgba(255,255,255,.96);
  padding: 0 42px 0 14px;
  text-align: left;
  font-weight: 800;
  font-size: .96rem;
  line-height: 1.2;
  cursor: pointer;
  position: relative;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.nx-faq-q:hover{
  border-color: rgba(168,85,247,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
}

.nx-faq-q i{
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,.85);
  border-bottom: 2px solid rgba(255,255,255,.85);
  transform: translateY(-62%) rotate(45deg);
  transition: transform .18s ease, border-color .18s ease;
}

.nx-faq-item.is-open .nx-faq-q{
  border-color: rgba(168,85,247,.35);
  background: linear-gradient(180deg, rgba(168,85,247,.10), rgba(255,255,255,.02));
  box-shadow:
    0 12px 28px rgba(0,0,0,.28),
    0 0 0 1px rgba(168,85,247,.08) inset;
}
.nx-faq-item.is-open .nx-faq-q i{
  transform: translateY(-35%) rotate(-135deg);
  border-color: rgba(255,255,255,.96);
}

/* Respuesta overlay (NO empuja nada) */
.nx-faq-pop{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.nx-faq-item.is-open .nx-faq-pop{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nx-faq-pop-inner{
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(168,85,247,.26);
  background: linear-gradient(180deg, rgba(12,15,24,.97), rgba(8,10,16,.97));
  color: rgba(255,255,255,.80);
  line-height: 1.5;
  font-size: .92rem;
  padding: 12px 13px;
  box-shadow:
    0 18px 40px rgba(0,0,0,.42),
    0 0 0 1px rgba(168,85,247,.08) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nx-faq-pop-inner::before{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  top: -6px;
  left: 22px;
  background: rgba(11,14,22,.96);
  border-left: 1px solid rgba(168,85,247,.26);
  border-top: 1px solid rgba(168,85,247,.26);
}

/* Un poquito de aire abajo del FAQ para que el overlay no choque con INFO */
#faq{
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1100px){
  .nx-faq-layout{
    grid-template-columns: 1fr;
  }
  .nx-faq-side-card{
    position: static;
  }
}

@media (max-width: 760px){
  .nx-faq-grid{
    grid-template-columns: 1fr;
  }

  .nx-faq-q{
    font-size: .94rem;
    min-height: 48px;
  }

  /* En móvil lo ponemos inline para evitar recortes */
  .nx-faq-pop{
    position: static;
    margin-top: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nx-faq-item.is-open .nx-faq-pop{
    display: block;
  }

  .nx-faq-pop-inner{
    font-size: .90rem;
  }

  .nx-faq-pop-inner::before{
    display: none;
  }
}
/* UNIFICACIÓN SOLO para páginas de abajo (NO tocar #planes) */
#faq,
#info{
  background-color: transparent !important;
  background-image: var(--nx-unified-bg) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center top !important;
  background-attachment: scroll !important; /* <- quita la línea al hacer scroll */
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* #planes se queda con su fondo propio (el azul petróleo que ya tienes) */
#planes{
  background-attachment: scroll !important;
}
/* ===== FONDO LISO GLOBAL (sin cortes entre secciones) ===== */

/* Color base único */
:root{
  --nx-solid-bg: #050b12; /* cambia este tono si lo quieres más azul o más negro */
}

/* Fondo general */
html, body{
  background: var(--nx-solid-bg) !important;
}

/* Todas las secciones de abajo SIN gradientes propios */
#planes,
#faq,
#info{
  background: var(--nx-solid-bg) !important;
  background-image: none !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* Quitar overlays que meten cortes visuales */
#planes::before, #planes::after,
#faq::before, #faq::after,
#info::before, #info::after{
  content: none !important;
  display: none !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Si tenías background fixed en esas secciones, anularlo */
#planes,
#faq,
#info{
  background-attachment: scroll !important;
}
/* ===== FONDO PREMIUM OSCURO (estilo limpio y elegante) ===== */
:root{
  /* Base premium tipo charcoal/café oscuro */
  --nx-solid-bg: #101D47;
}

/* Fondo global */
html, body{
  background: var(--nx-solid-bg) !important;
}

/* Secciones principales con el mismo fondo */
#planes,
#faq,
#info{
  background: var(--nx-solid-bg) !important;
  background-image: none !important;
  background-attachment: scroll !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* Quitar líneas falsas / overlays */
#planes::before, #planes::after,
#faq::before, #faq::after,
#info::before, #info::after{
  content: none !important;
  display: none !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}
/* ===== COMPARATIVA DE PRECIOS (NEOVEX ARRIBA + LOGO + ESTRELLA) ===== */
#comparativa.nx-price-compare{
  padding: 2.6rem 0 3.1rem !important;
  background: var(--nx-solid-bg, #12100f) !important;
  border: 0 !important;
  position: relative;
  z-index: 1;
}

.nx-pc-head{
  text-align: center;
  max-width: 920px;
  margin: 0 auto 1.15rem;
}
.nx-pc-kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: .75rem;
  font-size: .78rem;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
#comparativa .nx-p{
  color: rgba(255,255,255,.72);
}

/* panel */
.nx-pc-board{
  position: relative;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 10px 0 8px;
  background: radial-gradient(700px 140px at 50% 0%, rgba(255,255,255,.02), transparent 70%);
}

/* escala superior */
.nx-pc-scale{
  display: grid;
  grid-template-columns: 220px repeat(6, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nx-pc-scale::before{
  content: "";
  display: block;
}
.nx-pc-scale span{
  text-align: center;
  color: rgba(255,255,255,.50);
  font-size: .72rem;
  font-weight: 700;
}

/* filas */
.nx-pc-rows{
  position: relative;
}

/* guías verticales */
.nx-pc-rows::before{
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 230px;
  right: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
}

.nx-pc-row{
  --pct: calc((var(--value) / var(--max)) * 100%);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(255,255,255,.035);
}
.nx-pc-row:last-child{
  border-bottom: 0;
}

/* columna marca */
.nx-pc-row .brand{
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
}

.nx-pc-row .brand .dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
}

/* normal hosts */
.nx-pc-row .brand .name{
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: .90rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* LOGO Neovex */
.nx-pc-row .brand .brand-logo{
  height: 18px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.25));
}

/* colores hosts */
.dot.b1{ background: #ff6384; }
.dot.b2{ background: #ffcd56; }
.dot.b3{ background: #36a2eb; }
.dot.b4{ background: #ff9f40; }
.dot.b5{ background: #a78bfa; }
.dot.b6{ background: #9ca3af; }

/* track + fill */
.nx-pc-row .track{
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
  padding-right: 96px;
}

.nx-pc-row .track::before{
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.04);
}

.nx-pc-row .track .fill{
  position: absolute;
  left: 0;
  width: var(--pct);
  max-width: calc(100% - 96px);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
  border: 1px solid rgba(255,255,255,.08);
}

/* valor derecha */
.nx-pc-row .track .value{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 800;
  font-size: .86rem;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
  text-align: right;
  background: rgba(0,0,0,.18);
  padding: 2px 6px;
  border-radius: 8px;
}
.nx-pc-row .track .value small{
  color: rgba(255,255,255,.72);
  font-weight: 700;
  font-size: .73rem;
}

/* NEOVEX */
.nx-pc-row.is-neovex{
  margin-bottom: 4px;
  position: relative;
}
.nx-pc-row.is-neovex::before{
  content: "";
  position: absolute;
  left: 220px;
  right: 0;
  top: 4px;
  bottom: 4px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(97,242,160,.05), rgba(97,242,160,0));
  pointer-events: none;
}

/* estrella en vez de punto */
.nx-pc-row.is-neovex .dot.neo-star{
  width: 14px;
  height: 14px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  color: #61f2a0;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 0 10px rgba(97,242,160,.55), 0 0 18px rgba(97,242,160,.25);
  transform: translateY(-.5px);
}

.nx-pc-row.is-neovex .badge{
  margin-left: 2px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(97,242,160,.28);
  background: rgba(97,242,160,.10);
  color: #dffff0;
  font-size: .68rem;
  font-weight: 800;
  white-space: nowrap;
}

.nx-pc-row.is-neovex .track::before{
  border-color: rgba(97,242,160,.12);
  background: linear-gradient(90deg, rgba(97,242,160,.06), rgba(255,255,255,.02));
}
.nx-pc-row.is-neovex .track .fill{
  background: linear-gradient(90deg, rgba(97,242,160,.95), rgba(97,242,160,.65));
  border-color: rgba(97,242,160,.28);
  box-shadow: 0 0 18px rgba(97,242,160,.16);
}
.nx-pc-row.is-neovex .track .value{
  color: #eafff4;
  background: rgba(16, 40, 31, .35);
  border: 1px solid rgba(97,242,160,.18);
}

/* nota */
.nx-pc-note{
  margin-top: 8px;
  color: rgba(255,255,255,.55);
  font-size: .76rem;
  line-height: 1.35;
}

/* separación con la 4ta sección */
#info{
  padding-top: 3rem !important;
}

/* Responsive */
@media (max-width: 980px){
  .nx-pc-scale{
    grid-template-columns: 170px repeat(6, 1fr);
  }

  .nx-pc-row{
    grid-template-columns: 170px 1fr;
  }

  .nx-pc-rows::before{
    left: 180px;
  }

  .nx-pc-row.is-neovex::before{
    left: 170px;
  }

  .nx-pc-row .brand .brand-logo{
    height: 16px;
  }
}

@media (max-width: 760px){
  #comparativa.nx-price-compare{
    padding: 1.8rem 0 2.2rem !important;
  }

  .nx-pc-scale{
    display: none;
  }

  .nx-pc-rows::before{
    display: none;
  }

  .nx-pc-row{
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px 0;
    min-height: auto;
  }

  .nx-pc-row .track{
    height: 30px;
    padding-right: 88px;
  }

  .nx-pc-row .track .fill{
    max-width: calc(100% - 88px);
  }

  .nx-pc-row .track .value{
    right: 0;
    padding: 2px 6px;
  }

  .nx-pc-row.is-neovex::before{
    left: 0;
  }

  .nx-pc-row .brand .brand-logo{
    height: 16px;
  }
}
/* ===== Centrar título y descripción en la sección del mapa ===== */
#info .nx-h2,
#info .nx-p{
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

#info .nx-p{
  max-width: 760px;
}
/* =========================
   PRELOADER NEOVEX
   ========================= */

.nx-preloader{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(1200px 700px at 50% 20%, rgba(168,85,247,.10), transparent 60%),
    linear-gradient(180deg, #0b1f5d 0%, #0a1b52 45%, #081646 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease, visibility .35s ease;
}

.nx-preloader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nx-preloader-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateY(-8px);
}

.nx-preloader-ring{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.14);
  border-top-color: rgba(170,255,220,.95);
  border-right-color: rgba(168,85,247,.85);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 0 26px rgba(168,85,247,.22);
  animation: nxSpin .85s linear infinite;
}

.nx-preloader-text{
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-shadow: 0 2px 10px rgba(0,0,0,.2);
}

@keyframes nxSpin{
  to{ transform: rotate(360deg); }
}

/* Mientras carga, evita scroll y parpadeos */
html.nx-loading,
body.nx-loading{
  overflow: hidden !important;
}

/* Opcional: fade suave del contenido cuando aparece */
body{
  transition: opacity .25s ease;
}
body.nx-loading{
  opacity: .995; /* evita flicker raro en algunos navegadores */
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce){
  .nx-preloader-ring{ animation: none; }
  .nx-preloader{ transition: none; }
}
/* ===== Loader profesional (doble aro + dot orbital) ===== */

.nx-loader-pro{
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 18px rgba(168,85,247,.18));
}

.nx-loader-ring{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}

.nx-loader-ring--outer{
  border-top-color: rgba(170,255,220,.95);
  border-right-color: rgba(168,85,247,.90);
  border-left-color: rgba(145,230,255,.35);
  animation: nxLoaderSpin 1s linear infinite;
}

.nx-loader-ring--inner{
  inset: 10px;
  border-bottom-color: rgba(255,255,255,.75);
  border-left-color: rgba(168,85,247,.65);
  border-top-color: rgba(255,255,255,.15);
  animation: nxLoaderSpinReverse .85s linear infinite;
  opacity: .9;
}

.nx-loader-core{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.95), rgba(170,255,220,.9) 38%, rgba(168,85,247,.72) 70%, rgba(168,85,247,.18) 100%);
  box-shadow:
    0 0 18px rgba(170,255,220,.35),
    0 0 28px rgba(168,85,247,.22);
  animation: nxLoaderPulse 1.2s ease-in-out infinite;
}

/* aro tenue detrás */
.nx-loader-pro::before{
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,.10), transparent 65%);
  animation: nxLoaderBreath 1.6s ease-in-out infinite;
}

/* animaciones */
@keyframes nxLoaderSpin{
  to{ transform: rotate(360deg); }
}

@keyframes nxLoaderSpinReverse{
  to{ transform: rotate(-360deg); }
}

@keyframes nxLoaderOrbit{
  0%   { transform: rotate(0deg) translateX(35px); }
  100% { transform: rotate(360deg) translateX(35px); }
}

@keyframes nxLoaderPulse{
  0%,100%{ transform: scale(.95); opacity: .92; }
  50%    { transform: scale(1.08); opacity: 1; }
}

@keyframes nxLoaderBreath{
  0%,100%{ transform: scale(.92); opacity: .55; }
  50%    { transform: scale(1.06); opacity: .95; }
}
/* ===== PRELOADER FIX PRO ===== */
.nx-loader-pro{
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 18px rgba(168,85,247,.18));
}

.nx-loader-ring{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}

.nx-loader-ring--outer{
  border-top-color: rgba(170,255,220,.95);
  border-right-color: rgba(168,85,247,.90);
  border-left-color: rgba(145,230,255,.35);
  animation: nxLoaderSpin 1s linear infinite;
}

.nx-loader-ring--inner{
  inset: 10px;
  border-bottom-color: rgba(255,255,255,.75);
  border-left-color: rgba(168,85,247,.65);
  border-top-color: rgba(255,255,255,.15);
  animation: nxLoaderSpinReverse .85s linear infinite;
  opacity: .9;
}

.nx-loader-core{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.95), rgba(170,255,220,.9) 38%, rgba(168,85,247,.72) 70%, rgba(168,85,247,.18) 100%);
  box-shadow: 0 0 18px rgba(170,255,220,.35), 0 0 28px rgba(168,85,247,.22);
  animation: nxLoaderPulse 1.2s ease-in-out infinite;
}

.nx-loader-dot{
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 14px rgba(255,255,255,.35);
  transform-origin: 39px 39px;
}

.nx-loader-pro::before{
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,.10), transparent 65%);
  animation: nxLoaderBreath 1.6s ease-in-out infinite;
}

@keyframes nxLoaderSpin{ to{ transform: rotate(360deg); } }
@keyframes nxLoaderSpinReverse{ to{ transform: rotate(-360deg); } }
@keyframes nxLoaderOrbit{
  0%{ transform: rotate(0deg) translateX(35px); }
  100%{ transform: rotate(360deg) translateX(35px); }
}
@keyframes nxLoaderPulse{
  0%,100%{ transform: scale(.95); opacity:.92; }
  50%{ transform: scale(1.08); opacity:1; }
}
@keyframes nxLoaderBreath{
  0%,100%{ transform: scale(.92); opacity:.55; }
  50%{ transform: scale(1.06); opacity:.95; }
}
/* =========================
   SECCIÓN MÉTODOS DE PAGO
   ========================= */

.nx-payments{
  position: relative;
  padding-top: 34px;
  padding-bottom: 34px;
}

.nx-payments::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 300px at 50% 0%, rgba(168,85,247,.08), transparent 60%);
  opacity: .9;
}

.nx-payments .nx-container{
  position: relative;
  z-index: 1;
}

.nx-payments-head{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 18px;
}

.nx-payments-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.95);
  font-weight: 700;
  font-size: 14px;
  background: rgba(255,255,255,.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  margin-bottom: 10px;
}

.nx-payments-title{
  margin: 0;
  color: #f3f5fb;
  font-weight: 900;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .95;
  letter-spacing: .01em;
  text-transform: lowercase;
  text-shadow: 0 4px 20px rgba(0,0,0,.22);
}

/* Si tienes fuente gamer (Oxanium/Orbitron), puedes usarla aquí */
.nx-payments-title{
  font-family: "Oxanium","Inter",system-ui,sans-serif;
}

.nx-payments-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.nx-pay-card{
  height: 118px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.05);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    rgba(255,255,255,.015);
  box-shadow:
    0 12px 30px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.nx-pay-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    rgba(255,255,255,.02);
}

.nx-pay-card img{
  max-width: 110%;
  max-height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.15));
  opacity: .98;
}

/* Responsive */
@media (max-width: 1200px){
  .nx-payments-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px){
  .nx-payments{
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .nx-payments-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nx-pay-card{
    height: 92px;
    border-radius: 12px;
  }

  .nx-pay-card img{
    max-height: 34px;
  }

  .nx-payments-chip{
    font-size: 12px;
    min-height: 30px;
    padding: 0 12px;
  }
}
/* =========================
   FOOTER PROFESIONAL NEOVEX
   ========================= */

.nx-footer{
  position: relative;
  margin-top: 28px;
  background:
    radial-gradient(900px 380px at 18% 0%, rgba(168,85,247,.08), transparent 65%),
    radial-gradient(700px 300px at 80% 10%, rgba(59,130,246,.07), transparent 65%),
    linear-gradient(180deg, #17181c 0%, #121317 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.92);
  overflow: hidden;
}

.nx-footer::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 18%);
}

.nx-footer-top{
  padding: 42px 0 22px;
}

.nx-footer-grid{
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr .8fr;
  gap: 28px;
  align-items: start;
}

.nx-footer-brand{
  max-width: 520px;
}

.nx-footer-logo{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.nx-footer-logo-text{
  font-weight: 900;
  font-size: clamp(32px, 3vw, 46px);
  line-height: .9;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #2563ff;
  text-shadow: 0 4px 18px rgba(37,99,255,.18);
}

.nx-footer-logo-text > span{
  color: #2563ff;
}

.nx-footer-logo-text::first-letter{
  color: #a855f7;
}

.nx-footer-desc{
  margin: 0 0 14px;
  max-width: 470px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  font-size: 15px;
}

.nx-footer-socials{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nx-footer-social{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  font-size: 13px;
  font-weight: 700;
  transition: .2s ease;
}

.nx-footer-social:hover{
  transform: translateY(-2px);
  border-color: rgba(168,85,247,.45);
  background: rgba(168,85,247,.10);
}

/* columnas */
.nx-footer-col h4{
  margin: 4px 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.nx-footer-col ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.nx-footer-col li{
  margin: 8px 0;
}

.nx-footer-col a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
  display: inline-block;
}

.nx-footer-col a:hover{
  color: #fff;
  transform: translateX(2px);
}

/* DMCA strip */
.nx-footer-dmca-wrap{
  padding: 8px 0 18px;
}

.nx-footer-dmca-row{
  display: flex;
  justify-content: center;
}

.nx-dmca-card{
  width: min(100%, 760px);
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
    rgba(255,255,255,.01);
  box-shadow:
    0 14px 34px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.nx-dmca-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px 6px 8px;
  background: linear-gradient(90deg, rgba(132,204,22,.18), rgba(34,197,94,.18));
  border: 1px solid rgba(132,204,22,.45);
  flex-shrink: 0;
}

.nx-dmca-lock{
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 12px;
}

.nx-dmca-chip{
  font-weight: 900;
  letter-spacing: .02em;
  color: #b7ff6a;
  font-size: 13px;
}

.nx-dmca-text{
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.nx-dmca-text strong{
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.nx-dmca-text span{
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.2;
  margin-top: 2px;
}

.nx-dmca-btn{
  margin-left: auto;
  flex-shrink: 0;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  transition: .2s ease;
}

.nx-dmca-btn:hover{
  background: rgba(34,197,94,.12);
  border-color: rgba(132,204,22,.35);
  transform: translateY(-1px);
}

/* bottom */
.nx-footer-bottom{
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 14px 0 18px;
}

.nx-footer-bottom-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nx-footer-bottom-row p{
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.nx-footer-legal{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nx-footer-legal a{
  text-decoration: none;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.nx-footer-legal a:hover{
  color: #fff;
}

/* responsive */
@media (max-width: 1100px){
  .nx-footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
  }
}

@media (max-width: 720px){
  .nx-footer-top{
    padding-top: 30px;
  }

  .nx-footer-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nx-dmca-card{
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nx-dmca-btn{
    margin-left: 0;
    margin-top: 2px;
  }

  .nx-footer-bottom-row{
    flex-direction: column;
    align-items: flex-start;
  }

  .nx-footer-legal{
    gap: 12px;
  }
}
/* ===== DMCA fijo en el hueco rojo del footer (sin afectar layout) ===== */

/* El bloque izquierdo será la referencia de posición */
.nx-footer-brand{
  position: relative;
}

/* Badge flotante */
.nx-dmca-floating{
  position: absolute;
  left: 255px;   /* mueve izquierda/derecha */
  top: 155px;    /* mueve arriba/abajo */
  z-index: 3;

  display: inline-block;
  line-height: 0;
  text-decoration: none;

  /* para que no altere nada visual alrededor */
  pointer-events: auto;
}

.nx-dmca-floating img{
  display: block;
  height: 48px;   /* tamaño del badge */
  width: auto;
  max-width: none;
}

/* si quieres un mini efecto hover */
.nx-dmca-floating:hover{
  transform: translateY(-1px);
}

/* En móvil mejor que vuelva a flujo normal para no cruzarse */
@media (max-width: 900px){
  .nx-dmca-floating{
    position: static;
    display: inline-block;
    margin-top: 10px;
    transform: none !important;
  }
}
<style>
  .nx-lang-switch{
    display:flex;
    align-items:center;
    gap:8px;
    margin-left:14px;
  }

  .nx-lang-btn{
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.06);
    color:#fff;
    padding:8px 12px;
    border-radius:999px;
    font:700 12px/1 Inter,sans-serif;
    letter-spacing:.04em;
    cursor:pointer;
    transition:.2s ease;
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
  }

  .nx-lang-btn.is-active{
    background:linear-gradient(135deg,rgba(72,163,255,.22),rgba(132,90,255,.24));
    border-color:rgba(138,180,255,.38);
    box-shadow:0 8px 24px rgba(0,0,0,.18);
  }

  .nx-lang-btn:hover{
    transform:translateY(-1px);
  }

  .nx-mobile-lang{
    display:flex;
    gap:10px;
    padding-top:12px;
    flex-wrap:wrap;
  }

  @media (max-width:980px){
    .nx-lang-switch{ display:none; }
  }

  @media (min-width:981px){
    .nx-mobile-lang{ display:none; }
  }
</style>
<style>
  .nx-lang-switch,
  .nx-mobile-lang{
    position:relative;
    display:flex;
    align-items:center;
  }

  .nx-lang-current{
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    min-width:92px;
    height:42px;
    padding:0 14px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:12px;
    background:rgba(255,255,255,.03);
    color:#fff;
    font:600 14px/1 Inter,sans-serif;
    letter-spacing:.02em;
    cursor:pointer;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    transition:.2s ease;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
  }

  .nx-lang-current:hover{
    background:rgba(255,255,255,.05);
    border-color:rgba(255,255,255,.16);
  }

  .nx-lang-current-left,
  .nx-lang-option-left{
    display:inline-flex;
    align-items:center;
    gap:10px;
  }

  .nx-lang-flag{
    width:18px;
    height:18px;
    border-radius:999px;
    object-fit:cover;
    display:block;
    box-shadow:0 0 0 1px rgba(255,255,255,.10);
    flex:0 0 18px;
  }

  .nx-lang-caret{
    font-size:13px;
    opacity:.9;
    transform:translateY(1px);
  }

  .nx-lang-menu{
    position:absolute;
    top:calc(100% + 10px);
    right:0;
    min-width:140px;
    padding:8px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:14px;
    background:rgba(10,12,28,.96);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    box-shadow:0 18px 40px rgba(0,0,0,.35);
    z-index:9999;
  }

  .nx-lang-option{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding:10px 12px;
    border:none;
    outline:none;
    background:transparent;
    color:#fff;
    border-radius:10px;
    font:600 14px/1 Inter,sans-serif;
    cursor:pointer;
    transition:.18s ease;
  }

  .nx-lang-option:hover{
    background:rgba(255,255,255,.06);
  }

  .nx-lang-option.is-active{
    background:rgba(118,77,255,.14);
  }

  @media (max-width:980px){
    .nx-lang-switch{ display:none; }
  }

  @media (min-width:981px){
    .nx-mobile-lang{ display:none; }
  }
</style>
<style>
  .nx-lang-switch{
    position:relative;
    margin-left:18px;
    flex:0 0 auto;
    align-self:center;
  }

  .nx-lang-trigger{
    height:42px;
    min-width:98px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.04);
    color:#fff;
    font:700 13px/1 Inter,sans-serif;
    cursor:pointer;
    transition:.18s ease;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    position:relative;
    z-index:2;
  }

  .nx-lang-trigger:hover{
    background:rgba(255,255,255,.06);
    border-color:rgba(255,255,255,.16);
  }

  .nx-lang-trigger-left,
  .nx-lang-item-left{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .nx-lang-flag{
    width:18px;
    height:18px;
    border-radius:999px;
    object-fit:cover;
    display:block;
    flex:0 0 18px;
    box-shadow:0 0 0 1px rgba(255,255,255,.10);
  }

  .nx-lang-chevron{
    font-size:11px;
    opacity:.9;
    transform:translateY(1px);
  }

  .nx-lang-dropdown{
    position:absolute;
    top:calc(100% + 8px);
    right:0;
    left:auto;
    width:110px;
    padding:8px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(8,12,30,.96);
    box-shadow:0 18px 45px rgba(0,0,0,.38);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    z-index:99999;
  }

  .nx-lang-item{
    width:100%;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding:0 10px;
    border:none;
    background:transparent;
    color:#fff;
    border-radius:12px;
    font:700 13px/1 Inter,sans-serif;
    cursor:pointer;
    transition:.16s ease;
  }

  .nx-lang-item:hover{
    background:rgba(255,255,255,.06);
  }

  .nx-lang-item.is-active{
    background:rgba(110,76,255,.22);
  }

  @media (max-width:980px){
    .nx-lang-switch{
      display:none;
    }
  }
</style>