/* FUENTE GLOBAL: system-ui base, AngryBirds solo para títulos */

/* BASE */
body{
  margin:0;
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  font-size: 13.5px;
  background:#0b0b0f;
  color:#fff;

  /* 👇 espacio para que no se meta debajo de la topbar fija */
  padding-top: 72px;
}

/* ====== LAYOUT CENTRADO====== */
:root{
  --wrap: 1200px;
  --cardW: 170px;
  --gap: 14px;
}

/* contenedor principal donde renderizas todo */
#shop{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 12px 30px;
}

/* centra elementos de arriba */
.topbar,
.friends-box,
.warning-line,
.search-box{
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
}

/* TOPBAR */
.topbar{
  position: fixed;      /* 👈 ahora es fija */
  top: 0;
  left: 0;
  right: 0;
  height: 60px;

  display:flex;
  align-items:center;
  justify-content:flex-end;

  padding: 0 14px;

  background: rgba(10,10,16,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);

  z-index: 10000;
}

/* TITULO PRINCIPAL */
.shop-title{
  text-align:center;
  margin: 6px auto 12px;
  font-family: "Orbitron", "Nunito", sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0,224,255,0.5);
}


/* LOGO A LA IZQUIERDA (alineado bien) */
.logo-box{
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}

.logo-box img{
  height:40px;
  object-fit:contain;
}

/* 📱 En móvil: logo normal a la izquierda */
@media (max-width: 600px){
  .logo-box{
    position: static;
    transform: none;
  }

  .topbar{
    justify-content: space-between;
  }
}

.shop-name{
  font-family: "Orbitron", "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0,224,255,0.6);
}

/* BOTÓN IDIOMA */
.lang-btn{
  border:none;
  padding:8px 12px;
  border-radius:12px;
  font-weight:800;
  cursor:pointer;
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

/* RECUADRO AMIGOS */
.friends-box{
  background:#111;
  border:2px solid rgba(255,255,255,0.12);
  border-radius:12px;
  padding:12px;
  margin:10px auto;
  text-align:center;
}

.friends-box h3{
  margin:0 0 6px 0;
  color:#00e0ff;
  font-size: 14px;
  font-weight: 900;
}

.friends-box p{
  margin:0;
  line-height: 1.6;
  font-weight: 800;
}

/* LINEA ROJA */
.warning-line{
  margin:10px auto;
  padding:10px 12px;
  border:2px solid #ff3b3b;
  border-radius:12px;
  color:#ff8f8f;
  text-align:center;
  font-weight:900;
  background: rgba(255, 59, 59, 0.08);
}

/* BUSCADOR */
.search-box{
  margin:10px auto 18px;
  text-align:center;
}

.search-box input{
  width: min(92%, var(--wrap));
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: #fff;
  outline: none;
  font-size: 14px;
}

.search-box input::placeholder{
  color: rgba(255,255,255,0.6);
}

/* SECCIONES */
.section{
  padding: 10px 0 6px;
}

.section h2{
  margin: 22px 10px 12px;
  font-size: 28px;
  letter-spacing: 2px;
  font-family: "Orbitron", "Nunito", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
}

/* GRID ORDENADO (6 por fila en desktop) */
.grid{
  display:grid;
  grid-template-columns: repeat(6, var(--cardW));
  gap: var(--gap);
  padding: 0 10px 16px;
  justify-content: center;
}

@media (max-width: 1150px){
  .grid{ grid-template-columns: repeat(5, var(--cardW)); }
}
@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(4, var(--cardW)); }
}
@media (max-width: 800px){
  .grid{ grid-template-columns: repeat(3, var(--cardW)); }
}
@media (max-width: 620px){
  .grid{ grid-template-columns: repeat(2, var(--cardW)); }
}
@media (max-width: 380px){
  .grid{ grid-template-columns: repeat(1, var(--cardW)); }
}

/* CARD */
.card{
  width: var(--cardW);
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  display:flex;
  flex-direction: column;

  border: 2px solid #ffffff; /* borde blanco por defecto */
}

/* IMAGEN CUADRADA */
.img-box{
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.img-box img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* INFO */
.info{
  text-align:center;
  padding: 12px 10px 14px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.info h3{
  margin:0;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Nunito', system-ui, sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* BADGES */
.badge{
  position:absolute;
  bottom:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.60);
  border: 1px solid rgba(255,255,255,0.18);
  z-index: 3;
  overflow:hidden;
}

.badge-left{ left:10px; }
.badge-right{ right:10px; }

.badge.vbucks{
  color:#00e0ff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.badge.vbucks span{
  display:block;
  line-height:1;
}

/* ICONO VB (alineado perfecto) */
.badge.vbucks .vbuck-icon{
  width:16px;
  height:16px;
  display:block;
  flex: 0 0 16px;
  object-fit: contain;
  position: relative;
  top: 1.5px;
}

.badge.free{ color:#39ff88; }
.badge.cash{ color:#ffd166; }
.badge.timer{ color:#ffffff; }

/* Badge NEW - arriba a la izquierda */
.badge-new{
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.5px;
  background: #00e0ff;
  color: #000;
  z-index: 4;
  pointer-events: none;
}

/* Badge DESCUENTO - arriba a la derecha (solo en manuales) */
.badge-discount{
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  background: #ff4d4d;
  color: #fff;
  z-index: 4;
  pointer-events: none;
  text-transform: uppercase;
}

/* BOTÓN VER PRECIO */
.price-btn{
  width:100%;
  border:none;
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
  font-size: 12px;
  letter-spacing: 1px;
  font-family: "Orbitron", sans-serif;
  cursor:pointer;
  background: rgba(0,0,0,0.35);
  color:#fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

.price-btn:hover{
  transform: translateY(-1px);
}

/* ===== PRECIO EXPANDIBLE (solo aparece en la card clickeada) ===== */
.price-panel{
  width:100%;
  border-radius: 12px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;

  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
}

.price-panel.open{
  max-height: 500px; /* suficiente para todo el texto */
  opacity: 1;
  transform: translateY(0);
}

.price-pre{
  margin:0;
  padding: 10px 10px;
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.35;
}

/* WhatsApp float reemplazado por carrito flotante */

/* RAREZAS (sobrescriben el borde blanco) */
.rarity-common { border: 2px solid #ffffff; }
.rarity-uncommon { border: 2px solid #ffffff; }
.rarity-rare { border: 2px solid #ffffff; }
.rarity-epic { border: 2px solid #ffffff; }
.rarity-legendary { border: 2px solid #ffffff; }
.rarity-mythic { border: 2px solid #ffffff; }
.rarity-marvel { border: 2px solid #ff3b3b; }
.rarity-dc { border: 2px solid #1c5cff; }

/* BOTÓN SCROLL (abajo/arriba) */
.scroll-btn{
  position: fixed;
  bottom: 95px;       /* arriba de WhatsApp */
  left: 22px;         /* ✅ ahora a la izquierda */
  right: auto;        /* ✅ desactiva la derecha */
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.45);
  z-index: 9998;
  display:none;
}

.scroll-btn.show{
  display:flex;
  align-items:center;
  justify-content:center;
}

.scroll-btn:hover{
  transform: translateY(-2px);
}

/* BOTÓN MENÚ (☰) */
.menu-btn{
  margin-left: 10px;
  border:none;
  padding:8px 12px;
  border-radius:12px;
  font-weight:900;
  cursor:pointer;
  background: rgba(0,0,0,0.35);
  color:#fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}
.menu-btn:hover{ transform: translateY(-1px); }

/* OVERLAY */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  z-index: 9997;
  display:none;
}
.menu-overlay.show{ display:block; }

/* MENÚ LATERAL */
.side-menu{
  position: fixed;
  top:0;
  right:0;
  height:100vh;
  width: 300px;
  max-width: 88vw;
  background: rgba(10,10,16,0.95);
  border-left: 1px solid rgba(255,255,255,0.12);
  z-index: 9998;
  transform: translateX(102%);
  transition: transform 220ms ease;
  display:flex;
  flex-direction: column;
}
.side-menu.open{ transform: translateX(0); }

.side-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.side-title{
  font-family: "Orbitron", "Nunito", sans-serif;
  letter-spacing: 2px;
  font-weight: 900;
}
.menu-close{
  border:none;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  cursor:pointer;
  background: rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  font-weight: 900;
}

.side-nav{
  padding: 12px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.nav-item{
  width:100%;
  text-align:left;
  border:none;
  padding:12px 12px;
  border-radius:14px;
  cursor:pointer;
  font-weight: 900;
  background: rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
}
.nav-item.active{
  background: rgba(0,224,255,0.16);
  border-color: rgba(0,224,255,0.28);
}

/* PÁGINAS */
.pages{ max-width: var(--wrap); margin: 0 auto; overflow: visible; }
.page{ display:none; }
.page.active{ display:block; }

.page-box{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.socials{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.socials a{
  text-decoration:none;
  color:#fff;
  font-weight:900;
  padding: 10px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
}

/* ====== TOPBAR ACTIONS ====== */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 0 14px;
  background:#0b0b0f;
  z-index: 10000;
}

/* ===== INICIO PAGINA ===== */

/* ===== HERO INICIO ===== */
.hi-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 20px 28px;
  text-align: center;
  gap: 18px;
}

.hi-logo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hi-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hi-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hi-name {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 14px;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.hi-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  text-transform: uppercase;
}

.hi-socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.hi-soc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background .15s, color .15s, transform .15s;
}

.hi-soc-btn svg {
  width: 20px;
  height: 20px;
}

.hi-soc-btn:hover {
  background: rgba(0,224,255,0.18);
  border-color: rgba(0,224,255,0.4);
  color: #00e0ff;
  transform: translateY(-2px);
}

.inicio-grid {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

@media (max-width: 480px) {
  .hi-logo-wrap { width: 110px; height: 110px; }
  .hi-name { font-size: 28px; letter-spacing: 10px; }
  .hi-sub { font-size: 10px; letter-spacing: 1.5px; }
}

.inicio-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.inicio-card{
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
}

.inicio-card h3{
  margin-bottom: 6px;
  color: #00e0ff;
}

.inicio-card ol{
  padding-left: 18px;
}

.inicio-socials{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.inicio-socials a{
  text-decoration:none;
  color:#fff;
  font-weight:900;
  padding: 8px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
}

/* ===== LOGOS/ICONOS MÉTODOS DE PAGO ===== */

.payment-logos{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap:12px;
  margin-top:10px;
}

.pay-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:10px 8px;
  border-radius:14px;
  background: rgba(0,0,0,0.25);
  border:1px solid rgba(255,255,255,0.12);
  font-weight:900;
  font-size:13px;
}

.pay-item img{
  height:36px;
  object-fit:contain;
}

/* ===== SLIDER MÉTODOS DE PAGO (LOOP REAL) ===== */

.payment-slider{
  width:100%;
  overflow:hidden;
  margin-top:10px;
  border-radius:14px;
  background: rgba(0,0,0,0.25);
  border:1px solid rgba(255,255,255,0.12);
}

.payment-track{
  display:flex;
  align-items:center;
  gap:40px;
  padding:12px 20px;
  width: max-content;
  animation: slidePayments 15s linear infinite;
}

.payment-track img{
  height:40px;
  object-fit:contain;
}

/* Animación infinita sin corte */
@keyframes slidePayments{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

/* BOTÓN RESEÑAS */
.review-btn{
  display:inline-block;
  margin-top:10px;
  padding:8px 14px;
  border-radius:14px;
  font-weight:900;
  text-decoration:none;
  color:#fff;
  background: rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  transition: transform 0.15s ease, background 0.15s ease;
}

.review-btn:hover{
  background: rgba(0,224,255,0.25);
  transform: translateY(-1px);
}

/* LINK TERMINOS */
.terms-link{
  text-align:center;
  margin-top: 18px;
  opacity: 0.6;
}

.terms-link a{
  font-size: 12px;
  color: #aaa;
  text-decoration: none;
}

.terms-link a:hover{
  opacity: 1;
  text-decoration: underline;
}

/* BOTÓN VOLVER */
.back-btn{
  margin-top:14px;
  padding:8px 14px;
  border-radius:12px;
  font-weight:900;
  border:none;
  cursor:pointer;
  background: rgba(0,0,0,0.35);
  color:#fff;
  border:1px solid rgba(255,255,255,0.18);
}

/* CondicionesLIMX */
.terms-box h3{
  margin-top:18px;
  color:#00e0ff;
}

.terms-box p, .terms-box li{
  line-height:1.6;
  font-size:14px;
}

.terms-date{
  font-size:12px;
  opacity:0.7;
  margin-bottom:12px;
}

/* ===== ADMIN OTROS JUEGOS ===== */
.admin-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap:14px;
}

.admin-card{
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
}

.admin-card h3{
  margin-bottom: 10px;
  color:#00e0ff;
  font-weight: 900;
}

.admin-card label{
  display:block;
  margin: 8px 0 6px;
  opacity:.85;
  font-weight: 900;
  font-size: 13px;
}

.admin-card input, .admin-card select, .admin-card textarea{
  width:100%;
  padding:10px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color:#fff;
  outline:none;
}

.admin-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.manage-area{
  margin-top: 12px;
  display:grid;
  gap:12px;
}

.manage-section{
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
}

.manage-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.manage-items{
  display:grid;
  gap:10px;
}

.manage-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.20);
}

.manage-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.mini-btn{
  padding:8px 10px;
  border-radius: 10px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color:#fff;
  cursor:pointer;
  font-weight:900;
}

.mini-btn.danger{
  border-color: rgba(255,70,70,0.55);
}

.admin-btn{
  margin-top:10px;
  padding:10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,224,255,0.18);
  color:#fff;
  font-weight: 900;
  cursor:pointer;
}

.admin-btn.ghost{
  background: rgba(0,0,0,0.35);
}

.admin-btn.danger{
  background: rgba(255,70,70,0.18);
  border-color: rgba(255,70,70,0.55);
}



/* ====== TERMS BONITO ====== */
.terms-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 10px 0 18px;
}

.terms-pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.28);
  font-size:12px;
  opacity:.92;
}

.terms-section{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.terms-section:first-of-type{
  border-top:none;
  padding-top:0;
}

.terms-section h3{
  margin: 0 0 8px;
  color:#00e0ff;
  font-family: "Orbitron", "Nunito", sans-serif;
  letter-spacing: 1px;
}

.terms-section p{
  margin: 0 0 10px;
}

.terms-section ul{
  margin: 0;
  padding-left: 18px;
  display:grid;
  gap:6px;
}

.terms-subbox{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.25);
  border:1px solid rgba(255,255,255,0.12);
}

.terms-subbox h4{
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
}

/* otros-juegos/servicios usan el mismo sistema open/close que Fortnite */

/* ===== BOTÓN MAS INFORMACION ===== */
.info-btn{
  width:100%;
  border:none;
  padding:10px 12px;
  border-radius:12px;
  font-weight:900;
  cursor:pointer;
  background: rgba(0,224,255,0.16);
  color:#fff;
  border: 1px solid rgba(0,224,255,0.28);
  backdrop-filter: blur(6px);
  transition: transform .15s ease;
}
.info-btn:hover{
  transform: translateY(-1px);
  background: rgba(0,224,255,0.22);
}

/* ===== MODAL (POPUP) ===== */
.modal-overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(2px);
  z-index: 10050;
  display:none;
}
.modal-overlay.show{ display:block; }

.modal{
  position:fixed;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%) scale(0.98);
  width: min(560px, 92vw);
  max-height: min(70vh, 640px);
  overflow:hidden;
  border-radius: 18px;
  background: rgba(16,16,22,0.96);
  border:1px solid rgba(255,255,255,0.14);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
  z-index: 10051;
  display:none;
}
.modal.show{ display:block; }

.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.modal-title{
  font-family: "Orbitron", "Nunito", sans-serif;
  letter-spacing: 2px;
  font-weight: 900;
}

.modal-close{
  border:none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor:pointer;
  background: rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  font-weight: 900;
}

.modal-body{
  padding: 12px 14px 16px;
  overflow:auto;
  max-height: 60vh;
}

.modal-pre{
  margin:0;
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12.5px;
  line-height: 1.45;
  opacity: .95;
}

/* ===== whatssap vibrador ===== */
@keyframes whatsappVibe{
  0%   { transform: translateX(0); }
  10%  { transform: translateX(-2px); }
  20%  { transform: translateX(2px); }
  30%  { transform: translateX(-2px); }
  40%  { transform: translateX(2px); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(0); }
}

/* ====== PRECIO BONITO (HTML) ====== */
.price-body{ width:100%; }

.p-wrap{
  padding: 10px 10px;
}

.p-title{
  font-weight: 900;
  letter-spacing: .5px;
  margin-bottom: 8px;
  opacity: .95;
}

.p-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 8px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
}

.p-left{
  display:flex;
  align-items:center;
  gap:10px;
}

.p-ico{
  font-size: 18px;
  line-height: 1;
}

.p-label{
  font-weight: 900;
  font-size: 12px;
}

.p-sub{
  font-size: 11px;
  opacity: .75;
  margin-top: 1px;
}

.p-val{
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

.p-sep{
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 10px 0;
}

/* ====== PRECIO BONITO COMPACTO ====== */
.p-mini-wrap{ padding: 8px 8px; }

.p-mini-title{
  margin-bottom: 6px;
  font-size: 12px;
  opacity: .9;
}

.p-row.p-mini{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;

  padding: 7px 8px;
  margin-bottom: 7px;

  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.p-flag{
  width: 24px;
  height: 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 24px;
}

.p-mid{ display:flex; flex-direction:column; gap:2px; }

.p-amt{
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .2px;
}

.p-cty{
  font-size: 11px;
  opacity: .75;
}

.p-mini-sep{
  margin: 8px 2px 10px;
  opacity: .7;
}

/* ====== PRECIO EN CUADRITOS ====== */

.p-grid-wrap{
  padding: 6px;
}

.p-grid-title{
  font-size: 12px;
  font-weight: 900;
  text-align:center;
  margin-bottom: 6px;
  opacity:.9;
}

.p-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:6px;
  width: 100%;
  box-sizing: border-box;
}

.p-box{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;

  padding: 6px 4px;

  display:flex;
  flex-direction:column;
  align-items: center;      /* ✅ centra horizontal */
  justify-content: center;  /* ✅ centra vertical */
  gap:2px;

  text-align:center;
}

.p-flag{
  font-size: 16px;
  line-height:1;
  text-align:center;
}

.p-amt{
  font-size: 13px;
  font-weight: 900;
  text-align:center;
}

.p-cty{
  font-size: 10px;
  opacity:.7;
  text-align:center;
}

.p-grid-sep{
  height:1px;
  background: rgba(255,255,255,0.15);
  margin: 6px 2px;
}

/* ====== FEED PARA COPIAR====== */
.p-box{
  cursor:pointer;
  border: 1px solid rgba(255,255,255,0.10);
}

.p-box:active{
  transform: scale(0.98);
}

.p-box.copied{
  outline: 2px solid rgba(0,224,255,0.55);
}

/* Forzar colores dentro del panel de precios */
.price-panel,
.price-panel *{
  color: #fff;
}

.p-wrap{
  color:#fff;
}

.p-box{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.p-flag{ opacity: 1; }
.p-amt{ color:#fff; }
.p-cty{ color: rgba(255,255,255,0.75); }

.p-title-small{
  font-size: 11px;
  opacity: 0.7;
}

/*code creator*/
.creator-btn{
  background:#1f1f1f;
  border:1px solid rgba(255,255,255,0.15);
  color:#fff;
  padding:6px 10px;
  border-radius:8px;
  font-size:12px;
  cursor:pointer;
  transition:.2s;
}

.creator-btn:hover{
  background:#2a2a2a;
}

.creator-btn.copied{
  background:#2ecc71;
  border-color:#2ecc71;
}

/* ====== PANEL MULTI-MES (Club Fortnite) ====== */
.month-selector{
  padding: 10px 8px 6px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.month-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
  width: 100%;
}

.month-btn{
  background: rgba(0,224,255,0.10);
  border: 1px solid rgba(0,224,255,0.30);
  color: #fff;
  border-radius: 10px;
  padding: 10px 4px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  letter-spacing: .5px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.month-btn:hover{
  background: rgba(0,224,255,0.22);
  transform: scale(1.04);
}

.month-prices{
  padding: 6px 4px;
  width: 100%;
  box-sizing: border-box;
}

.month-back-btn{
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 0 0 8px 2px;
  display: block;
  width: 100%;
  text-align: left;
  transition: color .15s;
}
.month-back-btn:hover{
  color: #fff;
}

/* ====== FILTRO DE SECCIONES (dropdown) ====== */

/* Contenedor centrado debajo del buscador */
#sf-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 6px 12px 2px;
  max-width: var(--wrap);
  margin: 0 auto;
  /* Necesario para que el dropdown absoluto sea visible */
  overflow: visible;
  z-index: 100;
}

/* Botón principal */
#sf-toggle {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.75);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  display: flex;
  align-items: center;
  gap: 7px;
}
#sf-toggle:hover,
#sf-toggle.sf-active {
  background: rgba(0,224,255,0.12);
  border-color: rgba(0,224,255,0.35);
  color: #00e0ff;
}

/* Dropdown */
#sf-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  max-width: 90vw;
  max-height: 60vh;
  overflow-y: auto;
  background: rgba(12,12,20,0.97);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 8px 6px;
  z-index: 1500;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
  /* sombra sutil */
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
#sf-dropdown.sf-open {
  display: block;
}

/* Items de la lista */
.sf-item {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  text-align: left;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .12s, color .12s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sf-item:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
/* ====== MODAL AGREGAR AMIGO ====== */
.friends-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.add-friend-btn {
  background: rgba(0,224,255,0.15);
  border: 1px solid rgba(0,224,255,0.4);
  color: #00e0ff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.add-friend-btn:hover {
  background: rgba(0,224,255,0.28);
  transform: scale(1.04);
}

/* Overlay oscuro */
/* ====== MODAL AGREGAR AMIGO ====== */
.af-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.82);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

/* Ventana modal */
.af-modal {
  position: relative;
  background: #0d0d14;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  height: 80vh;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

/* Barra superior */
.af-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #0d0d14;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
  z-index: 2;
}

.af-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #00e0ff;
}

/* Botón X bien grande y visible */
.af-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.af-close:hover {
  background: rgba(255,50,50,0.5);
  border-color: rgba(255,50,50,0.6);
}

/* iframe ocupa todo el espacio restante */
.af-frame {
  width: 100%;
  flex: 1;
  border: none;
  background: #fff;
}

@media (max-width: 480px) {
  .af-modal { height: 85vh; max-height: none; }
  .friends-head { flex-direction: column; align-items: flex-start; }
}

/* =====================================================
   TOPBAR 2 FILAS — Pantallas muy pequeñas (≤ 380px)
   Fila 1: [LOGO] [LIMX]
   Fila 2: [CODIGO CREADOR: SIRPE]  (centrado)
   Los botones EN / ☰ se quedan en fila 1 a la derecha
===================================================== */
@media (max-width: 380px) {

  body {
    padding-top: 100px; /* más espacio para topbar de 2 filas */
  }

  .topbar {
    height: auto;
    flex-wrap: wrap;
    padding: 6px 10px;
    gap: 4px;
    align-items: center;
  }

  /* Fila 1: logo a la izquierda, botones a la derecha */
  .logo-box {
    flex: 1;
    min-width: 0;
  }

  .top-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }

  /* Ocultar texto LIMX para ahorrar espacio si hace falta */
  .shop-name {
    font-size: 16px;
    letter-spacing: 1px;
  }

  /* Fila 2: botón creador ocupa todo el ancho */
  .creator-btn {
    order: 10;        /* va al final del flex */
    width: 100%;
    text-align: center;
    font-size: 11px;
    padding: 5px 8px;
    border-radius: 6px;
    margin-top: 2px;
  }

  /* El botón EN se oculta en pantalla muy chica (opcional) */
  /* #langBtn { display: none !important; } */
}

/* =====================================================
   SELECTOR DE MONEDA
===================================================== */
.currency-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 20000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 200ms;
}
.currency-overlay.show { opacity: 1; pointer-events: all; }

.currency-modal {
  background: #13131e;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 24px 20px;
  max-width: 380px; width: 92%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.7);
}
.currency-head { margin-bottom: 18px; text-align: center; }
.currency-title { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: 0.5px; }

.currency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.currency-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 6px;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: background 150ms, border-color 150ms, transform 100ms;
}
.currency-btn:hover { background: rgba(0,224,255,0.12); border-color: rgba(0,224,255,0.4); transform: translateY(-2px); }
.cur-flag { font-size: 22px; }
.cur-code { font-size: 13px; font-weight: 800; color: #fff; }
.cur-label { font-size: 10px; color: rgba(255,255,255,0.55); }

/* #currencyIndicator movido a barra secundaria */

/* =====================================================
   PRECIO ÚNICO (una sola moneda)
===================================================== */
.p-single {
  padding: 10px 10px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.p-single-price {
  display: flex; align-items: center; gap: 8px;
  font-size: 26px; font-weight: 900; color: #fff;
  flex-wrap: wrap; justify-content: center;
}
.p-single-flag { font-size: 28px; }
.p-single-amount { color: #00e0ff; font-family: "Orbitron", sans-serif; }
.p-single-code {
  font-size: 13px; color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  border-radius: 8px; padding: 3px 9px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  align-self: center;
}

/* =====================================================
   BOTÓN AL CARRITO
===================================================== */
.add-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, #00e0ff, #0088ff);
  border: none;
  border-radius: 10px;
  color: #000;
  font-weight: 900;
  font-size: 13px;
  padding: 9px 12px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: opacity 150ms, transform 100ms;
}
.add-cart-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* =====================================================
   CARRITO FLOTANTE
===================================================== */
#cartFloat {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e0ff, #0055ff);
  border: none;
  cursor: pointer;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  z-index: 9999;
  transition: transform 150ms;
}
#cartFloat:hover { transform: scale(1.08); }

#cartBadge {
  position: absolute;
  top: -2px; right: -2px;
  background: #ff3b3b;
  color: #fff;
  font-size: 11px; font-weight: 900;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #0b0b0f;
}

/* =====================================================
   PANEL CARRITO
===================================================== */
#cartOverlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 19000;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 200ms;
}
#cartOverlay.show { opacity: 1; pointer-events: all; }

#cartPanel {
  background: #13131e;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px 20px 0 0;
  width: 100%; max-width: 520px;
  max-height: 80vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 250ms;
}
#cartOverlay.show #cartPanel { transform: translateY(0); }

#cartHead {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
#cartTitle { font-size: 16px; font-weight: 900; color: #fff; }
#cartHeadActions { display: flex; gap: 8px; align-items: center; }

/* #cartChangeCurrency removido */
#cartClose {
  background: rgba(255,255,255,0.08);
  border: none; border-radius: 8px;
  color: #fff; width: 32px; height: 32px;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

#cartItems {
  flex: 1; overflow-y: auto;
  padding: 12px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.cart-empty { text-align: center; opacity: .55; padding: 30px 0; font-size: 14px; }

.cart-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
  gap: 10px;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  display: block;
  font-size: 13px; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-price { display: block; font-size: 12px; color: #00e0ff; margin-top: 2px; }
.cart-remove-btn {
  background: none; border: none;
  font-size: 16px; cursor: pointer;
  flex-shrink: 0; padding: 4px;
  opacity: .7; transition: opacity 150ms;
}
.cart-remove-btn:hover { opacity: 1; }

#cartFooter {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 16px 18px;
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 8px;
}
#cartTotal { font-size: 14px; color: #fff; }
.cart-total-line { padding: 2px 0; }

#cartSend {
  background: #25d366;
  border: none; border-radius: 12px;
  color: #fff; font-weight: 900; font-size: 14px;
  padding: 12px; cursor: pointer;
  transition: opacity 150ms;
}
#cartSend:hover { opacity: .88; }

#cartEmpty {
  background: rgba(255,60,60,0.12);
  border: 1px solid rgba(255,60,60,0.25);
  color: #ff6060; border-radius: 10px;
  padding: 8px; font-size: 12px; font-weight: 700;
  cursor: pointer;
}

/* =====================================================
   TOAST CARRITO
===================================================== */
#cartToast {
  position: fixed;
  bottom: 95px; right: 16px;
  background: rgba(0,224,255,0.15);
  border: 1px solid rgba(0,224,255,0.35);
  color: #00e0ff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px; font-weight: 700;
  z-index: 20001;
  opacity: 0; pointer-events: none;
  transition: opacity 200ms;
}
#cartToast.show { opacity: 1; }

/* =====================================================
   BARRA SECUNDARIA DE MONEDA
   Aparece debajo del topbar cuando hay moneda activa
===================================================== */
#currencyBar {
  position: fixed;
  top: 60px; left: 0; right: 0;
  height: 32px;
  background: rgba(0, 20, 30, 0.95);
  border-bottom: 1px solid rgba(0,224,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 9998;
  padding: 0 14px;
  backdrop-filter: blur(6px);
}

#currencyBarLabel {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

#currencyBarChange {
  background: rgba(0,224,255,0.12);
  border: 1px solid rgba(0,224,255,0.25);
  color: #00e0ff;
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms;
}
#currencyBarChange:hover { background: rgba(0,224,255,0.22); }

/* subBar siempre visible — padding fijo en body */

/* =====================================================
   BARRA SECUNDARIA (#subBar) — siempre visible
   Izquierda: moneda activa | Derecha: código creador
===================================================== */
#subBar {
  position: fixed;
  top: 60px; left: 0; right: 0;
  height: 30px;
  background: rgba(8, 8, 14, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Centrado igual que el contenido de la página */
  padding: 0 max(14px, calc((100% - 1200px) / 2 + 14px));
  z-index: 9998;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

#subBarLeft {
  display: flex;
  align-items: center;
  min-width: 0;
}

#subBarRight {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* currencyBar dentro del subBar */
#currencyBar {
  position: static;
  height: auto;
  background: none;
  border: none;
  backdrop-filter: none;
  padding: 0;
  gap: 8px;
  display: none; /* js lo muestra */
}

#currencyBarLabel {
  font-size: 12px;
  font-weight: 700;
  color: #00e0ff;
  letter-spacing: 0.5px;
  font-family: 'Nunito', sans-serif;
}

#currencyBarChange {
  background: rgba(0,224,255,0.1);
  border: 1px solid rgba(0,224,255,0.2);
  color: #00e0ff;
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms;
}
#currencyBarChange:hover { background: rgba(0,224,255,0.2); }

/* Código creador en subBar — más compacto */
#subBarRight .creator-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  font-family: 'Nunito', sans-serif;
  transition: color 150ms;
}
#subBarRight .creator-btn b { color: #fff; }
#subBarRight .creator-btn:hover { color: rgba(255,255,255,0.85); }
#subBarRight .creator-btn.copied { color: #2ecc71; }

/* Body con subBar siempre visible */
body {
  padding-top: 92px !important; /* 60px topbar + 30px subBar + 2px */
}

/* EN/ES lang-btn — pegado al hamburger */
.top-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Aviso monedas mezcladas en carrito */
#cartMixedWarn {
  background: rgba(255, 160, 0, 0.12);
  border: 1px solid rgba(255, 160, 0, 0.35);
  color: #ffb300;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

/* =====================================================
   IMÁGENES DE BANDERAS / ICONOS DE PAGO
===================================================== */

/* Modal selector de moneda */
.cur-flag-img {
  width: 36px;
  height: 24px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

/* Precio único en card */
.p-single-flag-img {
  width: 36px;
  height: 24px;
  object-fit: cover;
  border-radius: 3px;
}

/* Carrito — items y total */
.cart-flag-img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 2px;
}

/* Barra secundaria — indicador moneda activa */
.bar-flag-img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 4px;
}

/* PayPal / USDT / Tarjeta — son íconos cuadrados */
img.p-single-flag-img[src*="paypal"],
img.p-single-flag-img[src*="usdt"],
img.p-single-flag-img[src*="card"] {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 6px;
}

img.cur-flag-img[src*="paypal"],
img.cur-flag-img[src*="usdt"],
img.cur-flag-img[src*="card"] {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}

img.cart-flag-img[src*="paypal"],
img.cart-flag-img[src*="usdt"],
img.cart-flag-img[src*="card"],
img.bar-flag-img[src*="paypal"],
img.bar-flag-img[src*="usdt"],
img.bar-flag-img[src*="card"] {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 3px;
}

.flag-emoji-fallback {
  font-size: 22px;
  line-height: 1;
}

/* =====================================================
   OTROS JUEGOS — CATÁLOGO
===================================================== */
.og-search-wrap {
  padding: 14px 14px 8px;
}
.og-search {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 150ms;
}
.og-search:focus { border-color: rgba(0,224,255,0.5); }
.og-search::placeholder { color: rgba(255,255,255,0.35); }

/* ── CATÁLOGO DE JUEGOS ── */
.og-catalog {
  display: grid;
  grid-template-columns: repeat(var(--cols, 2), 1fr);
  gap: var(--gap);
  padding: 8px 12px 30px;
  max-width: var(--wrap);
  margin: 0 auto;
}

/* card igual estructura que .card del resto del sitio */
.og-game-card {
  background: #16161f;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 150ms, border-color 150ms, box-shadow 150ms;
}
.og-game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,224,255,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.og-game-card:active { transform: translateY(0); }

/* imagen cuadrada como .img-box */
.og-game-banner {
  position: relative;
  width: 100%;
  padding-top: 100%; /* cuadrado */
  background-size: cover;
  background-position: center;
  background-color: #111;
  flex-shrink: 0;
}
.og-game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.65));
}
.og-game-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* info igual que .info */
.og-game-info {
  padding: 9px 10px 11px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.og-game-name {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.og-game-explore {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  backdrop-filter: blur(4px);
  margin-top: auto;
}

/* ── Vista interna de un juego ── */
.og-game-header { margin-bottom: 8px; }

.og-back-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 10px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  margin: 10px 12px 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 150ms;
}
.og-back-btn:hover { background: rgba(255,255,255,0.12); }

.og-game-header-banner {
  position: relative;
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
  background-color: #111;
  display: flex;
  align-items: flex-end;
}
.og-game-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
}
.og-game-header-title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 480px) {
  .og-catalog { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 6px 10px 24px; }
}
@media (max-width: 320px) {
  .og-catalog { grid-template-columns: 1fr; }
}

/* Campo Nick/ID en carrito */
#cartNickWrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#cartNickLabel {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}
#cartNickInput {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,224,255,0.25);
  border-radius: 10px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 12px;
  outline: none;
  transition: border-color 150ms;
}
#cartNickInput:focus {
  border-color: rgba(0,224,255,0.6);
}
#cartNickInput::placeholder {
  color: rgba(255,255,255,0.3);
  font-weight: 400;
}

/* ── Controles de cantidad en carrito ── */
.cart-item {
  flex-wrap: wrap;
  gap: 6px;
}
.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.cart-qty-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 6px;
  width: 26px; height: 26px;
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 120ms;
  line-height: 1;
}
.cart-qty-btn:hover { background: rgba(255,255,255,0.16); }
.cart-qty-num {
  min-width: 20px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
}
.cart-item-qty-label {
  color: #00e0ff;
  font-size: 11px;
  font-weight: 700;
  margin-left: 2px;
}
/* =====================================================
   PANTALLA DE PAGO
===================================================== */
#paymentOverlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 19500;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 250ms;
}
#paymentOverlay.show { opacity: 1; pointer-events: all; }

#paymentPanel {
  background: #13131e;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px 20px 0 0;
  width: 100%; max-width: 520px;
  max-height: 88vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateY(40px);
  transition: transform 280ms cubic-bezier(.25,.8,.25,1);
}
#paymentOverlay.show #paymentPanel { transform: translateY(0); }

#paymentHead {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
#paymentBack {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff; border-radius: 8px;
  padding: 6px 12px; font-size: 12px; font-weight: 700;
  cursor: pointer; font-family: 'Nunito', sans-serif;
  transition: background 150ms; white-space: nowrap;
}
#paymentBack:hover { background: rgba(255,255,255,0.14); }
#paymentHeadTitle {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px; font-weight: 700; color: #fff;
}
#paymentBody { flex: 1; overflow-y: auto; padding: 16px; }

/* Total */
.pay-total-box {
  background: rgba(0,224,255,0.07);
  border: 1px solid rgba(0,224,255,0.2);
  border-radius: 14px; padding: 14px 16px;
  margin-bottom: 18px; text-align: center;
}
.pay-total-label {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
}
.pay-total-amount {
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.pay-currency-flag {
  width: 38px; height: 26px;
  object-fit: cover; border-radius: 4px;
}
.pay-total-num {
  font-size: 30px; font-weight: 900; color: #00e0ff;
  font-family: 'Nunito', sans-serif;
}
.pay-total-code {
  font-size: 14px; color: rgba(255,255,255,0.6);
  font-family: 'Nunito', sans-serif; font-weight: 700;
}

/* Métodos */
.pay-methods-label {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px;
}
.pay-methods-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 10px; margin-bottom: 16px;
}
.pay-method-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 12px 8px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  transition: background 150ms, border-color 150ms, transform 100ms;
}
.pay-method-btn:hover {
  background: rgba(0,224,255,0.1);
  border-color: rgba(0,224,255,0.35); transform: translateY(-2px);
}
.pay-method-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 10px; }
.pay-method-name { font-size: 11px; font-weight: 700; color: #fff; font-family: 'Nunito', sans-serif; }
.pay-no-methods { text-align: center; color: rgba(255,255,255,0.5); font-size: 13px; padding: 20px 0; }
.pay-note {
  display: flex; align-items: flex-start; gap: 8px;
  background: rgba(255,200,0,0.07); border: 1px solid rgba(255,200,0,0.2);
  border-radius: 10px; padding: 10px 12px;
  font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.4;
}

/* Detalle común */
.pay-detail { display: flex; flex-direction: column; gap: 12px; }
.pay-detail-header {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pay-detail-logo { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; flex-shrink: 0; }
.pay-detail-name { font-family: 'Orbitron', sans-serif; font-size: 15px; font-weight: 700; color: #fff; }
.pay-detail-desc { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; text-align: center; }
.pay-detail-total {
  background: rgba(255,255,255,0.04); border-radius: 10px;
  padding: 10px 12px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.pay-detail-total b { color: #fff; }
.pay-confirm-btn {
  background: #25d366; border: none; border-radius: 14px;
  color: #fff; font-weight: 900; font-size: 15px;
  font-family: 'Nunito', sans-serif; padding: 14px; cursor: pointer;
  transition: opacity 150ms;
}
.pay-confirm-btn:hover { opacity: .88; }

/* Contenido copiable */
.pay-content-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.pay-content-pre {
  white-space: pre-wrap; word-break: break-word;
  font-family: 'Nunito', sans-serif; font-size: 13px;
  color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0;
}
.pay-copy-btn {
  background: rgba(0,224,255,0.1); border: 1px solid rgba(0,224,255,0.25);
  color: #00e0ff; border-radius: 8px; padding: 6px 12px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  align-self: flex-start; font-family: 'Nunito', sans-serif;
}

/* Badge condición */
.pay-cond-badge {
  background: rgba(255,165,0,0.12);
  border: 1px solid rgba(255,165,0,0.3);
  color: #ffb347; border-radius: 8px;
  padding: 6px 12px; font-size: 12px; font-weight: 700;
  text-align: center;
}

/* Question (PayPal) */
.pay-question-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.pay-question-text {
  font-size: 14px; font-weight: 700; color: #fff;
  text-align: center; line-height: 1.4;
}
.pay-question-btns { display: flex; gap: 10px; }
.pay-option-btn {
  flex: 1; padding: 10px; border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff; font-size: 14px; font-weight: 800;
  cursor: pointer; font-family: 'Nunito', sans-serif;
  transition: all 150ms;
}
.pay-option-btn:hover { border-color: rgba(0,224,255,0.4); background: rgba(0,224,255,0.08); }
.pay-option-active { border-color: #00e0ff !important; background: rgba(0,224,255,0.15) !important; }

/* Form fields */
.pay-fields { display: flex; flex-direction: column; gap: 10px; }
.pay-field-wrap { display: flex; flex-direction: column; gap: 4px; }
.pay-field-label {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px;
}
.pay-field-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: #fff;
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 600;
  padding: 9px 12px; outline: none; transition: border-color 150ms;
}
.pay-field-input:focus { border-color: rgba(0,224,255,0.5); }

/* Warning box (Tarjeta) */
.pay-warning-box {
  background: rgba(255,60,60,0.1);
  border: 1px solid rgba(255,60,60,0.3);
  border-radius: 10px; padding: 12px;
  font-size: 13px; color: #ff8080; line-height: 1.5;
}

/* QR */
.pay-detail-qr-wrap { display: flex; justify-content: center; }
.pay-detail-qr {
  width: 200px; height: 200px; object-fit: contain;
  border-radius: 12px; background: #fff; padding: 6px;
  border: 3px solid rgba(255,255,255,0.12);
}

@media (max-width: 380px) {
  .pay-methods-grid { grid-template-columns: repeat(2,1fr); }
  .pay-total-num { font-size: 24px; }
  .pay-question-btns { flex-direction: column; }
}

/* Items de copia individuales */
.pay-copy-items-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pay-copy-item {
  background: rgba(0,224,255,0.05);
  border: 1px solid rgba(0,224,255,0.15);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pay-copy-item-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pay-copy-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pay-copy-item-value {
  font-size: 15px;
  font-weight: 800;
  color: #00e0ff;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.3px;
  word-break: break-all;
  flex: 1;
}
.pay-copy-btn-sm {
  background: rgba(0,224,255,0.12);
  border: 1px solid rgba(0,224,255,0.25);
  color: #00e0ff;
  border-radius: 7px;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 150ms;
}
.pay-copy-btn-sm:hover { background: rgba(0,224,255,0.22); }

/* ── Animación de compra exitosa ── */
#purchaseSuccessAnim {
  position: fixed; inset: 0;
  z-index: 30000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 300ms;
}
#purchaseSuccessAnim.show {
  background: rgba(0,0,0,0.6);
}
.psa-box {
  background: #13131e;
  border: 1px solid rgba(46,204,113,0.4);
  border-radius: 20px;
  padding: 32px 40px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transform: scale(0.7) translateY(30px);
  opacity: 0;
  transition: transform 350ms cubic-bezier(.34,1.56,.64,1), opacity 300ms;
  box-shadow: 0 0 40px rgba(46,204,113,0.2);
}
#purchaseSuccessAnim.show .psa-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.psa-icon {
  font-size: 52px;
  line-height: 1;
  animation: psaPop 0.4s ease 0.2s both;
}
@keyframes psaPop {
  0%   { transform: scale(0); }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.psa-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px; font-weight: 900;
  color: #2ecc71; letter-spacing: 0.5px;
}
.psa-sub {
  font-size: 13px; color: rgba(255,255,255,0.55);
  font-family: 'Nunito', sans-serif;
}

/* ── EFECTO NEÓN LLAMATIVO en CODIGO CREADOR ── */
#subBarRight .creator-btn {
  position: relative;
  color: rgba(255,255,255,0.7) !important;
  animation: creatorNeon 4s ease-in-out infinite;
}
#subBarRight .creator-btn b {
  animation: creatorNeonB 4s ease-in-out infinite;
  position: relative;
}

/* Bucle: apagado → enciende cyan → burst blanco → multi-color → apagado */
@keyframes creatorNeon {
  0%,  40% { color: rgba(255,255,255,0.55) !important; text-shadow: none; }
  55%       { color: rgba(255,255,255,0.95) !important; text-shadow: 0 0 6px rgba(0,224,255,0.4); }
  65%       { color: #fff !important; text-shadow: 0 0 12px rgba(0,224,255,0.6), 0 0 2px #fff; }
  75%       { color: rgba(255,255,255,0.8) !important; text-shadow: none; }
  100%      { color: rgba(255,255,255,0.55) !important; text-shadow: none; }
}

@keyframes creatorNeonB {
  0%,  40% { color: rgba(0,180,210,0.7) !important; text-shadow: none; }
  50%       { color: #00e0ff !important; text-shadow: 0 0 8px rgba(0,224,255,0.8); }
  58%       { color: #fff !important;
               text-shadow:
                 0 0 6px #fff,
                 0 0 14px #00e0ff,
                 0 0 28px rgba(0,224,255,0.6),
                 0 0 40px rgba(0,180,255,0.3); }
  68%       { color: #00ffcc !important;
               text-shadow: 0 0 10px rgba(0,255,200,0.8), 0 0 20px rgba(0,224,255,0.4); }
  78%       { color: #00e0ff !important; text-shadow: 0 0 6px rgba(0,224,255,0.5); }
  100%      { color: rgba(0,180,210,0.7) !important; text-shadow: none; }
}

.page-subtitle {
  font-size: 12px;
  font-weight: 700;
  color: #ffcc00;
  background: rgba(255,200,0,0.08);
  border: 1px solid rgba(255,200,0,0.2);
  border-radius: 8px;
  padding: 7px 12px;
  margin: -4px 0 12px;
  text-align: center;
  letter-spacing: 0.3px;
}
/* =====================================================
   FORTNITE AUTO
===================================================== */
.fa-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 16px 14px 60px;
}

/* Header */
.fa-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fa-vb-icon { width: 48px; height: 48px; }
.fa-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px; font-weight: 900; color: #fff;
  letter-spacing: 1px; margin-bottom: 3px;
}
.fa-subtitle { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600; }

/* Steps */
.fa-steps { display: flex; flex-direction: column; gap: 16px; }

.fa-step {
  display: flex; gap: 14px;
  background: #13131e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px;
}
.fa-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #00e0ff, #0055ff);
  color: #000; font-weight: 900; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Orbitron', sans-serif;
}
.fa-step-body { flex: 1; min-width: 0; }
.fa-step-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px; font-weight: 700; color: #fff;
  letter-spacing: 0.5px; margin-bottom: 6px;
}
.fa-step-desc {
  font-size: 12px; color: rgba(255,255,255,0.55);
  line-height: 1.5; margin-bottom: 12px;
}

/* Calculadora */
.fa-calc { display: flex; flex-direction: column; gap: 10px; }

.fa-calc-input-wrap {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 10px 14px;
  transition: border-color 150ms;
}
.fa-calc-input-wrap:focus-within { border-color: rgba(0,224,255,0.5); }
.fa-calc-vb { width: 22px; height: 22px; flex-shrink: 0; }
.fa-calc-input {
  flex: 1; background: transparent; border: none;
  color: #fff; font-family: 'Nunito', sans-serif;
  font-size: 18px; font-weight: 800; outline: none;
  width: 100%; min-width: 0;
}
.fa-calc-input::placeholder { color: rgba(255,255,255,0.25); font-size: 15px; }
.fa-calc-input::-webkit-outer-spin-button,
.fa-calc-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.fa-calc-label {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

.fa-calc-result {
  background: rgba(0,224,255,0.07);
  border: 1px solid rgba(0,224,255,0.18);
  border-radius: 10px; padding: 10px 14px;
  display: flex; align-items: baseline; gap: 8px;
  min-height: 44px;
}
.fa-calc-price {
  font-family: 'Nunito', sans-serif;
  font-size: 26px; font-weight: 900; color: #00e0ff;
  transition: all 200ms;
}
.fa-calc-code {
  font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 700;
}

/* Buttons */
.fa-btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #00e0ff, #0055ff);
  border: none; border-radius: 12px;
  color: #000; font-weight: 900; font-size: 14px;
  font-family: 'Orbitron', sans-serif; letter-spacing: 0.5px;
  padding: 13px; cursor: pointer;
  transition: opacity 150ms, transform 100ms;
}
.fa-btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.fa-btn-primary:active { transform: translateY(0); }

.fa-btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; color: #fff;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px;
  padding: 9px 16px; cursor: pointer;
  transition: background 150ms;
  text-decoration: none;
}
.fa-btn-ghost:hover { background: rgba(255,255,255,0.12); }

.fa-btn-store {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid rgba(0,224,255,0.3);
  border-radius: 12px; color: #00e0ff;
  font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.5px;
  padding: 13px 16px; cursor: pointer;
  text-decoration: none;
  transition: border-color 150ms, background 150ms, transform 100ms;
  box-shadow: 0 0 20px rgba(0,224,255,0.08);
}
.fa-btn-store:hover {
  border-color: rgba(0,224,255,0.6);
  background: linear-gradient(135deg, #1e1e3a, #1a2a4e);
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(0,224,255,0.18);
}

/* ── Lista de bots paso 2 ── */
.fa-bots-label {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.fa-bots-list {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 12px;
}
.fa-bot-tag {
  background: rgba(0,224,255,0.08);
  border: 1px solid rgba(0,224,255,0.2);
  color: #00e0ff;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12px; font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.3px;
}

/* ── Modal tienda LIMX ── */
#faStoreOverlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 20000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 250ms;
  padding: 12px;
}
#faStoreOverlay.show { opacity: 1; pointer-events: all; }

#faStorePanel {
  background: #0d0d14;
  border: 1px solid rgba(0,224,255,0.2);
  border-radius: 16px;
  width: 100%; max-width: 900px;
  height: 90vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,224,255,0.1);
  transform: scale(0.96);
  transition: transform 250ms;
}
#faStoreOverlay.show #faStorePanel { transform: scale(1); }

#faStoreHead {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
#faStoreTitle {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px; font-weight: 700; color: #00e0ff;
}
#faStoreClose {
  background: rgba(255,255,255,0.08);
  border: none; border-radius: 8px;
  color: #fff; width: 32px; height: 32px;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms;
}
#faStoreClose:hover { background: rgba(255,60,60,0.3); }

#faStoreFrame {
  flex: 1; width: 100%; border: none;
  background: #fff;
}

/* =====================================================
   BYPASSX
===================================================== */
.bx-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 14px 60px;
}
.bx-header { margin-bottom: 20px; }
.bx-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px; font-weight: 900;
  color: #fff; letter-spacing: 1px;
}

.bx-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

.bx-step {
  display: flex; align-items: flex-start; gap: 12px;
  background: #13131e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 14px;
}
.bx-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #00e0ff, #0055ff);
  color: #000; font-weight: 900; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Orbitron', sans-serif;
}
.bx-step-body { flex: 1; min-width: 0; }
.bx-label {
  display: block;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.bx-muted { color: rgba(255,255,255,0.4); font-weight: 600; }

.bx-input-row { display: flex; gap: 6px; }
.bx-input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: #fff;
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 600;
  padding: 8px 10px; outline: none; transition: border-color 150ms;
  width: 100%;
}
.bx-input:focus { border-color: rgba(0,224,255,0.5); }
.bx-input::placeholder { color: rgba(255,255,255,0.25); font-weight: 400; }
.bx-input::-webkit-outer-spin-button,
.bx-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.bx-paste-btn {
  background: rgba(0,224,255,0.1);
  border: 1px solid rgba(0,224,255,0.2);
  border-radius: 8px; color: #00e0ff;
  padding: 0 10px; font-size: 16px; cursor: pointer;
  flex-shrink: 0; transition: background 150ms;
}
.bx-paste-btn:hover { background: rgba(0,224,255,0.2); }

.bx-select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: #fff;
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 600;
  padding: 8px 10px; outline: none; cursor: pointer;
  transition: border-color 150ms;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300e0ff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}
.bx-select:focus { border-color: rgba(0,224,255,0.5); }
.bx-select option { background: #13131e; }

/* Output */
.bx-output-wrap { margin-bottom: 14px; }
.bx-output-label {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;
}
.bx-output-box {
  background: #0d0d14;
  border: 1px solid rgba(0,224,255,0.2);
  border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column;
  gap: 10px;
}
.bx-command-wrap {
  position: relative;
}
.bx-command {
  font-family: 'Courier New', monospace;
  font-size: 12px; color: #00e0ff;
  word-break: break-all;
  display: block;
  max-height: calc(1.5em * 10); /* 10 líneas */
  overflow: hidden;
  transition: max-height 300ms ease;
  line-height: 1.5;
}
.bx-command.expanded {
  max-height: 2000px;
}
/* Fade al final cuando está colapsado */
.bx-command-wrap::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(transparent, #0d0d14);
  pointer-events: none;
  opacity: 1;
  transition: opacity 200ms;
}
.bx-command-wrap.expanded::after {
  opacity: 0;
}
.bx-see-more {
  background: none;
  border: none;
  color: rgba(0,224,255,0.7);
  font-size: 12px; font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  text-align: left;
  transition: color 150ms;
}
.bx-see-more:hover { color: #00e0ff; }
.bx-output-actions {
  display: flex; align-items: center; justify-content: space-between;
}
.bx-copy-btn {
  background: rgba(0,224,255,0.1);
  border: 1px solid rgba(0,224,255,0.25);
  color: #00e0ff; border-radius: 8px;
  padding: 6px 12px; font-size: 12px; font-weight: 700;
  cursor: pointer; flex-shrink: 0;
  font-family: 'Nunito', sans-serif;
  transition: background 150ms;
  white-space: nowrap;
}
.bx-copy-btn:hover { background: rgba(0,224,255,0.2); }

/* WhatsApp button */
.bx-wa-btn {
  width: 100%;
  background: #25d366;
  border: none; border-radius: 14px;
  color: #fff; font-weight: 900; font-size: 15px;
  font-family: 'Nunito', sans-serif;
  padding: 14px; cursor: pointer;
  transition: opacity 150ms;
}
.bx-wa-btn:hover { opacity: .88; }

/* =====================================================
   FORTNITE AUTO — Paso 2 rediseñado
===================================================== */
.fa-bots-panels {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

/* Panel izquierdo — lista de bots */
.fa-bots-left {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px;
  min-width: 0;
}
.fa-bots-label {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: 0.3px;
}
.fa-bots-list {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.fa-bot-tag {
  background: rgba(255,200,0,0.12);
  border: 1px solid rgba(255,200,0,0.35);
  color: #ffcc00;
  border-radius: 7px;
  padding: 3px 8px;
  font-size: 11px; font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.2px;
}

/* Panel derecho — solicitar */
.fa-bots-right {
  width: 130px;
  flex-shrink: 0;
  background: rgba(0,224,255,0.05);
  border: 1px solid rgba(0,224,255,0.2);
  border-radius: 12px;
  padding: 12px 10px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Efecto brillo animado en el panel derecho */
.fa-bots-right::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 30%,
    rgba(0,224,255,0.12) 0%,
    transparent 60%);
  animation: botsPanelGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes botsPanelGlow {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

.fa-bots-right-title {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  position: relative; z-index: 1;
}
.fa-bots-auto {
  color: #00e0ff;
  font-size: 10px; font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
  animation: autoGlow 2s ease-in-out infinite;
  display: inline-block;
}
@keyframes autoGlow {
  0%, 100% { text-shadow: none; opacity: 0.8; }
  50%       { text-shadow: 0 0 8px rgba(0,224,255,0.8), 0 0 16px rgba(0,224,255,0.4); opacity: 1; }
}

.fa-add-btn {
  width: 100%;
  font-size: 11px !important;
  padding: 7px 8px !important;
  text-align: center;
  justify-content: center;
  position: relative; z-index: 1;
}

/* Nota informativa */
.fa-bots-note {
  background: rgba(255,100,0,0.08);
  border: 1px solid rgba(255,120,0,0.25);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.fa-bots-note b { color: #ffaa44; }

@media (max-width: 380px) {
  .fa-bots-panels { flex-direction: column; }
  .fa-bots-right { width: 100%; flex-direction: row; flex-wrap: wrap; }
}