/* ═══════════════════════════════════════════════════════════════
   POKE LEGENDS IDLE — LANDING PAGE
   Tema oscuro + detalles dorados (estilo poke.idleworld.online)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --lp-bg: #060810;
  --lp-bg-2: #0a0d18;
  --lp-panel: rgba(15, 23, 42, 0.85);
  --lp-panel-2: rgba(30, 27, 75, 0.9);
  --lp-gold-1: #ffffff;
  --lp-gold-2: #fbbf24;
  --lp-gold-3: #c084fc;
  --lp-gold-4: #a855f7;
  --lp-cyan-1: #38bdf8;
  --lp-cyan-2: #0284c7;
  --lp-text: #f8fafc;
  --lp-text-dim: #e2e8f0;
  --lp-text-faint: #94a3b8;
  --lp-line: rgba(168, 85, 247, 0.35);
  --lp-line-strong: rgba(192, 132, 252, 0.65);
  --font-body: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-title: 'Outfit', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

::selection { background: rgba(200, 170, 110, 0.35); color: #fff; }

/* ── Scrollbar oscuro ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0d16; }
::-webkit-scrollbar-thumb { background: #2a2f40; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #3a4055; }

.lp { position: relative; }

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 16px 22px 0;
  pointer-events: none;
}
.lp-nav > * { pointer-events: auto; }

.lp-nav-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 68px;
  padding: 0 42px;
  background: linear-gradient(180deg, rgba(16, 19, 31, 0.94), rgba(9, 11, 18, 0.9));
  border: 1px solid var(--lp-line-strong);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(244, 226, 168, 0.08);
  backdrop-filter: blur(12px);
}

/* rieles dorados superior e inferior */
.lp-nav-frame::before,
.lp-nav-frame::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lp-gold-3), transparent);
}
.lp-nav-frame::before { top: 4px; }
.lp-nav-frame::after { bottom: 4px; }

/* brillo que recorre la barra */
.lp-nav-sheen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 10px;
  pointer-events: none;
}
.lp-nav-sheen::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(105deg, transparent, rgba(244, 226, 168, 0.09), transparent);
  animation: lp-sheen 7s linear infinite;
}
@keyframes lp-sheen {
  0% { left: -140px; }
  55%, 100% { left: 110%; }
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-link {
  position: relative;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--lp-text-dim);
  padding: 6px 2px;
  transition: color 0.2s;
}
.lp-link:hover { color: var(--lp-gold-1); }
.lp-link.on { color: var(--lp-gold-1); }
.lp-link.on::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lp-gold-2), transparent);
}

.lp-nav-actions { display: flex; align-items: center; gap: 14px; }

.lp-lang-btns {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 9px;
  background: rgba(10, 8, 24, 0.45);
  border: 1px solid rgba(244, 226, 168, 0.16);
}
.lp-lang-btn {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--lp-text-dim);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-title);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lp-lang-flag {
  width: 17px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  display: inline-block;
  flex: 0 0 auto;
}
.lp-lang-btn:hover {
  color: #fff;
  background: rgba(0, 229, 255, 0.1);
}
.lp-lang-btn.active {
  color: #221a08;
  background: linear-gradient(180deg, #e8cf8f, #c8a24e 55%, #9c7a34);
  border-color: #f0dca0;
  box-shadow: 0 0 12px rgba(200, 162, 78, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.lp-entrar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #e8cf8f, #c8a24e 55%, #9c7a34);
  border: 1px solid #f0dca0;
  color: #221a08;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  box-shadow: 0 3px 14px rgba(200, 162, 78, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
  cursor: pointer;
}
.lp-entrar-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 6px 22px rgba(200, 162, 78, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Emblema flotante (logo) */
.lp-emblem {
  position: fixed;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 61;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.85));
  transition: transform 0.25s, filter 0.25s;
}
.lp-emblem:hover { transform: translateX(-50%) scale(1.03); filter: drop-shadow(0 10px 40px rgba(200, 162, 78, 0.5)); }
.lp-emblem-logo {
  display: block;
  width: auto;
  height: 195px;
  object-fit: contain;
}
.lp-emblem-halo {
  position: fixed;
  top: 0px; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 210px;
  background: radial-gradient(ellipse at center, rgba(244, 226, 168, 0.34), transparent 70%);
  filter: blur(12px);
  z-index: 60;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL RAIL (barra lateral)
   ═══════════════════════════════════════════════════════════════ */
.lp-social {
  position: fixed;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lp-social-cap {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, transparent, var(--lp-gold-3));
}
.lp-social-cap:last-child { background: linear-gradient(0deg, transparent, var(--lp-gold-3)); }
.lp-social-btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 19, 31, 0.85);
  border: 1px solid var(--lp-line);
  color: var(--lp-text-dim);
  font-size: 1.05rem;
  transition: all 0.2s;
}
.lp-social-btn:hover {
  color: var(--lp-gold-1);
  border-color: var(--lp-gold-2);
  transform: translateX(2px);
  box-shadow: 0 0 16px rgba(200, 162, 78, 0.25);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 16px 190px;
  overflow: hidden;
  text-align: center;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(78, 62, 24, 0.55), transparent 60%),
    radial-gradient(900px 500px at 85% 110%, rgba(30, 58, 94, 0.35), transparent 60%),
    radial-gradient(700px 500px at 8% 90%, rgba(94, 38, 26, 0.3), transparent 60%),
    url('../assets/landing/background.png?v=5') center / cover no-repeat,
    linear-gradient(180deg, #0a0d16 0%, #07090f 55%, #0a0c14 100%);
}
/* franjas hexagonales sutiles */
.lp-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(244, 226, 168, 0.025) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(244, 226, 168, 0.02) 0 1px, transparent 1px 64px);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9), transparent 75%);
}
.lp-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 15, 0.55) 0%, rgba(7, 9, 15, 0.25) 30%, rgba(7, 9, 15, 0.35) 70%, var(--lp-bg) 100%),
    radial-gradient(ellipse at center, rgba(7, 9, 15, 0.2), transparent 70%);
}

/* motas ambientales */
.lp-hero-ambient { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.lp-mote {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 226, 168, 0.9), rgba(244, 226, 168, 0));
  opacity: 0;
  animation: lp-mote-float linear infinite;
  pointer-events: none;
}
.lp-mote:nth-child(1)  { left: 8%;  top: 20%; animation-duration: 13s; animation-delay: 0s; }
.lp-mote:nth-child(2)  { left: 16%; top: 64%; animation-duration: 16s; animation-delay: 1.5s; }
.lp-mote:nth-child(3)  { left: 24%; top: 34%; animation-duration: 12s; animation-delay: 3s; }
.lp-mote:nth-child(4)  { left: 33%; top: 76%; animation-duration: 18s; animation-delay: 0.6s; }
.lp-mote:nth-child(5)  { left: 41%; top: 15%; animation-duration: 14s; animation-delay: 2.2s; }
.lp-mote:nth-child(6)  { left: 52%; top: 70%; animation-duration: 15s; animation-delay: 4s; }
.lp-mote:nth-child(7)  { left: 61%; top: 28%; animation-duration: 11s; animation-delay: 1s; }
.lp-mote:nth-child(8)  { left: 70%; top: 80%; animation-duration: 17s; animation-delay: 3.4s; }
.lp-mote:nth-child(9)  { left: 78%; top: 40%; animation-duration: 13.5s; animation-delay: 0.3s; }
.lp-mote:nth-child(10) { left: 86%; top: 62%; animation-duration: 15.5s; animation-delay: 2.8s; }
.lp-mote:nth-child(11) { left: 92%; top: 22%; animation-duration: 12.5s; animation-delay: 5s; }
.lp-mote:nth-child(12) { left: 47%; top: 48%; animation-duration: 19s; animation-delay: 1.8s; }
@keyframes lp-mote-float {
  0%   { transform: translateY(40px) scale(0.6); opacity: 0; }
  20%  { opacity: 0.8; }
  60%  { opacity: 0.5; }
  100% { transform: translateY(-80px) scale(1.1); opacity: 0; }
}

.lp-hero-content { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   HERO SPLIT: Texto izquierda + Slider derecha
   ═══════════════════════════════════════════════════════════════ */
.lp-hero-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.lp-hero-split .lp-hero-content {
  flex: 1;
  max-width: 580px;
  margin: 0;
  text-align: left;
}

.lp-hero-split .lp-hero-content .lp-hero-eyebrow {
  justify-content: flex-start;
  animation: lp-fade-up 0.8s ease-out both;
}

.lp-hero-split .lp-hero-content .lp-hero-eyebrow::before {
  display: none;
}

.lp-hero-split .lp-hero-content .lp-hero-title {
  animation: lp-fade-up 0.8s 0.15s ease-out both;
}

.lp-hero-split .lp-hero-content .lp-hero-sub {
  animation: lp-fade-up 0.8s 0.3s ease-out both;
}

.lp-hero-split .lp-hero-content .lp-hero-btns {
  animation: lp-fade-up 0.8s 0.45s ease-out both;
}

@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-hero-split .lp-hero-content .lp-hero-sub {
  margin: 0 0 36px;
  text-align: left;
}

.lp-hero-split .lp-hero-content .lp-hero-btns {
  justify-content: flex-start;
}

/* ═══════════════════════════════════════════════════════════════
   SLIDER DE GAMEPLAY
   ═══════════════════════════════════════════════════════════════ */
.lp-hero-slider {
  flex: 1.5;
  max-width: 800px;
  position: relative;
}

.lp-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 27, 75, 0.9));
  border: 1px solid var(--lp-line-strong);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(168, 85, 247, 0.2);
}

.lp-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.lp-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.lp-slide-img {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: lp-slide-float 3s ease-in-out infinite;
}

.lp-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
}

@keyframes lp-slide-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.lp-slide-info {
  text-align: center;
}

.lp-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.lp-slide-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,8,16,0.1) 0%, rgba(6,8,16,0.85) 100%);
  border-radius: 16px;
  pointer-events: none;
}

.lp-slide-info h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #ffffff, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-slide-info p {
  font-size: 1.05rem;
  color: var(--lp-text-dim);
  margin: 0;
  line-height: 1.5;
}

/* Controles del slider */
.lp-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.lp-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--lp-line-strong);
  background: rgba(15, 23, 42, 0.8);
  color: var(--lp-text);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-slider-btn:hover {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #0b0f19;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.lp-slider-dots {
  display: flex;
  gap: 8px;
}

.lp-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lp-slider-dot.active {
  background: linear-gradient(135deg, #38bdf8, #fbbf24);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.lp-slider-dot:hover {
  background: rgba(148, 163, 184, 0.7);
}

.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #c084fc;
  margin-bottom: 18px;
  padding: 6px 16px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 30px;
  backdrop-filter: blur(8px);
}
.lp-hero-eyebrow::before,
.lp-hero-eyebrow::after {
  display: none;
}

.lp-hero-title .lp-hero-title-accent {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  letter-spacing: 12px;
  margin-top: 4px;
  background: linear-gradient(180deg, #e2d5b0, #a8894a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.lp-hero-title {
  font-family: var(--font-title), serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: 1px;
  margin: 0 0 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 25%, #38bdf8 50%, #c084fc 75%, #fbbf24 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 20px rgba(56, 189, 248, 0.3));
  animation: lp-title-shimmer 4s ease-in-out infinite;
}

@keyframes lp-title-shimmer {
  0%, 100% { background-position: 0% 50%; filter: drop-shadow(0 2px 15px rgba(56, 189, 248, 0.25)); }
  50% { background-position: 100% 50%; filter: drop-shadow(0 2px 25px rgba(192, 132, 252, 0.5)); }
}

.lp-hero-sub {
  max-width: 520px;
  margin: 0 0 32px;
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 400;
  line-height: 1.7;
  line-height: 1.6;
}

.lp-hero-btns {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-imgbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
}

.lp-imgbtn.primary {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 40%, #c084fc 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.2);
}
.lp-imgbtn.primary:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.7), 0 0 50px rgba(168, 85, 247, 0.35);
}
.lp-imgbtn.primary i {
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.5));
}
.lp-imgbtn.ghost {
  background: transparent;
  border: 1.5px solid rgba(192, 132, 252, 0.4);
  color: #c084fc;
  box-shadow: none;
}
.lp-imgbtn.ghost:hover {
  border-color: #c084fc;
  color: #ffffff;
  background: rgba(168, 85, 247, 0.15);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.3);
}

/* ── Stats del hero ── */
.lp-hero-stats {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1020px, 94vw);
}
.lp-stats-head {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
}
.lp-stats-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-text-dim);
}
.hexline {
  width: 60px; height: 14px;
  background: linear-gradient(135deg, transparent 30%, var(--lp-gold-3) 30% 70%, transparent 70%);
  opacity: 0.6;
}
.hexline.l { transform: scaleX(-1); }

.lp-stats-frame {
  position: relative;
  background: linear-gradient(180deg, rgba(16, 19, 31, 0.92), rgba(9, 11, 18, 0.92));
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 16px 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(244, 226, 168, 0.06);
  backdrop-filter: blur(8px);
}
.lp-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lp-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 20px;
}
.lp-stat-img {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}
.lp-stat-txt { display: flex; flex-direction: column; text-align: left; }
.lp-stat-txt b {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 1px;
  color: var(--lp-gold-1);
}
.lp-stat-txt small {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-text-faint);
}
.lp-stat-sep {
  width: 1px; height: 38px;
  background: linear-gradient(180deg, transparent, var(--lp-line-strong), transparent);
}

/* ═══════════════════════════════════════════════════════════════
   SECCIONES GENÉRICAS
   ═══════════════════════════════════════════════════════════════ */
.lp-sec {
  position: relative;
  padding: 96px 24px;
  background: linear-gradient(180deg, var(--lp-bg), var(--lp-bg-2));
}
.lp-sec.dark { background: linear-gradient(180deg, #080a11, #0b0e17); }

.lp-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lp-gold-2);
  margin-bottom: 10px;
}
.lp-eyebrow.center { text-align: center; }

.lp-h2 {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lp-text);
}
.lp-h2.center { text-align: center; }
.lp-h2 em {
  font-style: normal;
  color: var(--lp-gold-2);
}

.lp-lead {
  max-width: 720px;
  margin: 0 0 26px;
  font-size: 1rem;
  color: var(--lp-text-dim);
}
.lp-lead.center { margin-left: auto; margin-right: auto; text-align: center; }
.lp-lead.wide { max-width: 860px; }

/* ═══════════════════════════════════════════════════════════════
   SECCIÓN BROWSER
   ═══════════════════════════════════════════════════════════════ */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.lp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.lp-chips span {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--lp-line);
  background: rgba(16, 19, 31, 0.6);
  color: var(--lp-text-dim);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  transition: all 0.2s;
}
.lp-chips span:hover {
  border-color: var(--lp-gold-2);
  color: var(--lp-gold-1);
}

.lp-browser {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--lp-line-strong);
  background: #0a0d16;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 0, 0, 0.6);
}
.lp-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #171b29, #10131f);
  border-bottom: 1px solid var(--lp-line);
}
.lp-browser-bar i {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: block;
}
.lp-browser-bar i:nth-child(1) { background: #ff5f57; }
.lp-browser-bar i:nth-child(2) { background: #febc2e; }
.lp-browser-bar i:nth-child(3) { background: #28c840; }
.lp-browser-bar span {
  margin-left: 14px;
  padding: 4px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--lp-text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  font-family: monospace;
}
.lp-browser-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 70% 20%, rgba(40, 60, 40, 0.5), transparent 60%),
    radial-gradient(500px 300px at 20% 80%, rgba(30, 40, 60, 0.5), transparent 60%),
    linear-gradient(180deg, #0d121c, #090c14);
}
/* mini-mundo con sprites del juego */
.lp-browser-shot .lp-mini-ground {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(34, 46, 28, 0.9), rgba(20, 30, 20, 0.95));
  clip-path: polygon(0 22%, 8% 8%, 20% 20%, 32% 5%, 46% 18%, 60% 4%, 74% 16%, 88% 6%, 100% 18%, 100% 100%, 0 100%);
}
.lp-browser-shot .lp-mini-poke {
  position: absolute;
  bottom: 8%;
  image-rendering: pixelated;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.6));
  animation: lp-bob 3.4s ease-in-out infinite;
}
.lp-mini-poke:nth-child(3)  { left: 8%;  animation-delay: 0.4s; }
.lp-mini-poke:nth-child(4)  { left: 24%; animation-delay: 1.1s; }
.lp-mini-poke:nth-child(5)  { left: 46%; animation-delay: 0s;   }
.lp-mini-poke:nth-child(6)  { left: 64%; animation-delay: 1.8s; }
.lp-mini-poke:nth-child(7)  { left: 82%; animation-delay: 0.9s; }
@keyframes lp-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════ */
.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 38px auto 0;
}
.lp-feat {
  position: relative;
  background: linear-gradient(180deg, rgba(21, 25, 45, 0.88), rgba(12, 15, 28, 0.92));
  border: 1.5px solid var(--lp-line);
  border-radius: 16px;
  padding: 28px 24px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.lp-feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--lp-cyan-1), var(--lp-gold-2), var(--lp-gold-3), transparent);
  opacity: 0.6;
}
.lp-feat:hover {
  transform: translateY(-7px) scale(1.02);
  border-color: var(--lp-cyan-1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(56, 189, 248, 0.25);
}
.lp-feat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.lp-feat-ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.15), rgba(15, 23, 42, 0.8));
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  font-size: 1.65rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 12px rgba(56, 189, 248, 0.2);
}
.lp-feat-ico img { width: 42px; height: 42px; object-fit: contain; image-rendering: pixelated; }
.lp-feat-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-gold-2);
}
.lp-feat-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--lp-gold-1);
}
.lp-feat-desc { font-size: 0.92rem; color: var(--lp-text-dim); margin-bottom: 18px; line-height: 1.55; }
.lp-feat-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-feat-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--lp-text-dim);
}
.lp-feat-bullets li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.65rem;
  color: var(--lp-cyan-1);
  top: 3px;
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.8));
}

/* ═══════════════════════════════════════════════════════════════
   STARTERS
   ═══════════════════════════════════════════════════════════════ */
.lp-starters {
  display: grid;
  grid-template-columns: repeat(3, 240px);
  gap: 40px;
  justify-content: center;
  margin: 44px auto 0;
}
.lp-starter {
  --accent: #3ddc84;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 20px 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(21, 25, 39, 0.9), rgba(12, 15, 24, 0.9));
  border: 1px solid var(--lp-line);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.lp-starter:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 34px color-mix(in srgb, var(--accent) 30%, transparent);
}
.lp-starter-halo {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 190px; height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 32%, transparent), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.lp-starter-sprite {
  position: relative;
  width: 120px; height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.55));
}
.lp-starter-sprite img {
  width: 96px; height: 96px;
  object-fit: contain;
  image-rendering: pixelated;
  animation: lp-starter-bob 2.8s ease-in-out infinite;
}
@keyframes lp-starter-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.lp-starter-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 1px;
  color: var(--lp-text);
}
.lp-starter-tag {
  margin-top: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   SYSTEMS / TABS
   ═══════════════════════════════════════════════════════════════ */
.lp-systems {
  max-width: 980px;
  margin: 40px auto 0;
}
.lp-sys-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 26px;
}
.lp-sys-tab {
  padding: 10px 20px;
  border-radius: 9px;
  border: 1px solid var(--lp-line);
  background: rgba(16, 19, 31, 0.6);
  color: var(--lp-text-dim);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.lp-sys-tab:hover {
  border-color: var(--lp-gold-2);
  color: var(--lp-gold-1);
}
.lp-sys-tab.on {
  background: linear-gradient(180deg, #e8cf8f, #c8a24e 55%, #9c7a34);
  border-color: #f0dca0;
  color: #221a08;
  box-shadow: 0 4px 18px rgba(200, 162, 78, 0.35);
}
.lp-sys-panel {
  background: linear-gradient(180deg, rgba(21, 25, 39, 0.9), rgba(12, 15, 24, 0.9));
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  padding: 34px 40px;
  text-align: center;
  min-height: 190px;
  animation: lp-fade-up 0.35s ease;
}
@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.lp-sys-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lp-gold-1);
}
.lp-sys-panel p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--lp-text-dim);
  font-size: 0.98rem;
}
.lp-sys-panel .lp-sys-chiprow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}
.lp-sys-panel .lp-sys-chip {
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(200, 170, 110, 0.3);
  color: var(--lp-gold-2);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  background: rgba(200, 162, 78, 0.06);
}

/* ═══════════════════════════════════════════════════════════════
   FORGE BAR (progreso hacia meta de entrenadores)
   ═══════════════════════════════════════════════════════════════ */
.lp-forge-sec {
  padding: 34px 24px 60px;
  background: linear-gradient(180deg, var(--lp-bg-2), var(--lp-bg));
}
.forge-wrap { max-width: 760px; margin: 0 auto; }
.forge-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--lp-text-faint);
}
.forge-label span:last-child { color: var(--lp-gold-2); font-weight: 700; }
.forge-bar {
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 170, 110, 0.15);
  overflow: hidden;
}
.forge-fill {
  position: relative;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #8a6a2e, #c8a24e 60%, #f4e2a8);
  box-shadow: 0 0 18px rgba(200, 162, 78, 0.5);
  transition: width 1.4s ease;
}
.forge-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  animation: lp-sheen 2.8s linear infinite;
}

/* ═══════════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════════ */
.lp-cta {
  position: relative;
  padding: 110px 24px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(200, 162, 78, 0.14), transparent 65%),
    linear-gradient(180deg, var(--lp-bg), #0a0c14);
}
.lp-cta-veil {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(244, 226, 168, 0.02) 0 1px, transparent 1px 54px);
}
.lp-cta-inner { position: relative; z-index: 2; }
.lp-cta .lp-imgbtn { margin-top: 22px; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.lp-foot {
  padding: 64px 24px 30px;
  border-top: 1px solid rgba(200, 170, 110, 0.14);
  background: #05070c;
}
.lp-foot-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 44px;
}
.lp-foot-brand {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lp-gold-1);
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.lp-foot-col h3 {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lp-gold-2);
}
.lp-foot-col p { margin: 0 0 12px; color: var(--lp-text-faint); font-size: 0.88rem; }
.lp-foot-col a {
  display: block;
  padding: 4px 0;
  color: var(--lp-text-faint);
  font-size: 0.88rem;
  transition: color 0.2s, padding-left 0.2s;
}
.lp-foot-col a:hover { color: var(--lp-gold-1); padding-left: 4px; }
.lp-foot-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.lp-foot-social a {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lp-line);
  color: var(--lp-text-dim);
  transition: all 0.2s;
}
.lp-foot-social a:hover {
  color: var(--lp-gold-1);
  border-color: var(--lp-gold-2);
  transform: translateY(-2px);
}
.lp-foot-legal {
  border-top: 1px solid rgba(200, 170, 110, 0.1);
  padding-top: 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.lp-foot-legal p {
  margin: 0 0 4px;
  font-size: 0.74rem;
  color: #5c5648;
}/* ══════════════ MODALES (Ranking / Reglas / Pokédex / FAQ) ══════════════ */
.lp-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.lp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 7, 12, 0.78);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lp-modal-overlay[hidden] { display: none; }
.lp-modal {
  position: relative;
  width: min(680px, 100%);
  max-height: 84vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #131726, #0b0e18 60%);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7), 0 0 30px rgba(168, 85, 247, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: lp-modal-pop 0.28s ease;
}
@keyframes lp-modal-pop {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.lp-modal::-webkit-scrollbar { width: 8px; }
.lp-modal::-webkit-scrollbar-thumb { background: #2a2f40; border-radius: 4px; }
.lp-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(192, 132, 252, 0.45);
  background: rgba(16, 19, 31, 0.9);
  color: #c084fc;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s, color 0.2s;
}
.lp-modal-close:hover { background: #a855f7; color: #fff; box-shadow: 0 0 14px rgba(168, 85, 247, 0.5); }
.lp-modal-body { padding: 30px 28px 34px; }
.lp-modal-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--lp-gold-1);
  margin: 0 0 6px;
}
.lp-modal-sub { color: var(--lp-text-dim); font-size: 0.9rem; margin: 0 0 20px; }
.lp-modal-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--lp-gold-3);
  background: rgba(168, 85, 247, 0.1);
  border-radius: 0 12px 12px 0;
  color: var(--lp-text-faint);
  font-size: 0.82rem;
}

/* Ranking */
.lp-rank-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.lp-rank-tab {
  flex: 1;
  min-width: 120px;
  padding: 9px 12px;
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.88);
  color: var(--lp-text);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.lp-rank-tab:hover { border-color: #c084fc; background: rgba(168, 85, 247, 0.15); }
.lp-rank-tab.active {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.32), rgba(30, 27, 75, 0.8));
  border-color: #c084fc;
  color: #fff;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.35);
}
.lp-rank-list { display: flex; flex-direction: column; gap: 6px; }
.lp-rank-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(30, 27, 75, 0.75));
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease-in-out;
}
.lp-rank-row:hover { border-color: #c084fc; transform: translateY(-3px); box-shadow: 0 8px 22px rgba(168, 85, 247, 0.28); }
.lp-rank-pos {
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 800;
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--rk, #c084fc);
  border: 1px solid currentColor;
  flex-shrink: 0;
}
.lp-rank-avatar {
  width: 40px; height: 40px;
  border-radius: 8px;
  background-size: 160px 160px; /* 4× el avatar: muestra SOLO el primer frame del sheet (mirando abajo) */
  background-position: 0 0;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  border: 1px solid rgba(192, 132, 252, 0.4);
  flex-shrink: 0;
  background-color: rgba(30, 27, 75, 0.7);
}
.lp-rank-poke { border-radius: 8px; background-position: 0 0; background-size: 160px 160px; background-repeat: no-repeat; }
.lp-rank-name { flex: 1; font-weight: 600; font-size: 0.95rem; color: var(--lp-text); }
.lp-rank-name .lp-rank-dim { color: var(--lp-text-dim); font-weight: 500; font-size: 0.82rem; }
.lp-rank-name .lp-rank-wl {
  display: block;
  color: var(--lp-text-dim);
  font-weight: 500;
  font-size: 0.76rem;
  margin-top: 2px;
}
.lp-rank-clan { font-weight: 600; font-size: 0.78rem; }
.lp-rank-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.12);
  vertical-align: middle;
}
.lp-rank-staff { color: #38bdf8; border-color: rgba(56, 189, 248, 0.5); background: rgba(56, 189, 248, 0.12); }
.lp-rank-val { color: var(--lp-gold-2); font-size: 0.88rem; font-weight: 700; }
.lp-rank-loading, .lp-rank-empty {
  padding: 22px;
  text-align: center;
  color: var(--lp-text-dim);
  font-size: 0.9rem;
  border: 1px dashed rgba(168, 85, 247, 0.4);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.5);
}

/* Reglas */
.lp-rule-sec {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-gold-3);
  margin: 22px 0 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(200, 170, 110, 0.18);
}
.lp-rule-sec:first-of-type { margin-top: 0; }
.lp-rule {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  color: var(--lp-text);
  line-height: 1.45;
}
.lp-rule:last-of-type { border-bottom: none; }
.lp-rule-n {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #e8cf8f, #9c7a34);
  color: #221a08;
  font-weight: 800;
  font-size: 0.8rem;
}
.lp-rule strong { color: var(--lp-gold-1); }

/* Pokédex */
.lp-dex-search { margin-bottom: 16px; }
.lp-dex-search input {
  width: 100%;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid rgba(200, 170, 110, 0.25);
  background: rgba(9, 11, 18, 0.85);
  color: var(--lp-text);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
}
.lp-dex-search input:focus { border-color: var(--lp-gold-3); }
.lp-dex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 8px;
  max-height: 46vh;
  overflow-y: auto;
  padding: 2px;
}
.lp-dex-grid::-webkit-scrollbar { width: 8px; }
.lp-dex-grid::-webkit-scrollbar-thumb { background: #2a2f40; border-radius: 4px; }
.lp-dex-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, background 0.2s;
}
.lp-dex-cell:hover { border-color: rgba(200, 170, 110, 0.45); background: rgba(200, 170, 110, 0.08); }
.lp-dex-cell img { width: 52px; height: 52px; image-rendering: pixelated; }
.lp-dex-cell span { font-size: 0.66rem; color: var(--lp-text-faint); text-align: center; line-height: 1.15; }
.lp-dex-cell .lp-dex-num { color: var(--lp-gold-3); font-size: 0.6rem; }

/* FAQ */
.lp-faq { display: flex; flex-direction: column; gap: 10px; }
.lp-faq-item {
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(30, 27, 75, 0.75));
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.lp-faq-item:hover { border-color: #c084fc; box-shadow: 0 8px 24px rgba(168, 85, 247, 0.25); }
.lp-faq-item summary {
  cursor: pointer;
  padding: 13px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--lp-gold-1);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}
.lp-faq-item summary::after { content: '+'; color: #c084fc; font-size: 1.1rem; text-shadow: 0 0 8px rgba(192, 132, 252, 0.6); }
.lp-faq-item[open] summary::after { content: '−'; }
.lp-faq-item summary:hover { background: rgba(168, 85, 247, 0.12); }
.lp-faq-item p { padding: 0 16px 14px; margin: 0; color: var(--lp-text-dim); font-size: 0.88rem; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
  RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* ── HAMBURGER MENU ── */
.lp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  cursor: pointer;
  z-index: 70;
  flex-shrink: 0;
}
.lp-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--lp-text-dim);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.lp-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lp-hamburger.open span:nth-child(2) { opacity: 0; }
.lp-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  .lp-feat-grid { grid-template-columns: 1fr 1fr; }
  .lp-social { display: none; }
  .lp-nav-frame { padding: 0 20px; }
}

@media (max-width: 760px) {
  /* ── NAVBAR ── */
  .lp-hamburger { display: flex; }
  .lp-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(10, 13, 24, 0.97);
    border: 1px solid var(--lp-line-strong);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
    z-index: 65;
    max-height: 70vh;
    overflow-y: auto;
  }
  .lp-nav-links.open { display: flex; }
  .lp-nav-links .lp-link {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.82rem;
  }
  .lp-nav-actions {
    gap: 8px;
    flex-shrink: 0;
  }
  .lp-lang-btns { gap: 3px; padding: 3px 4px; }
  .lp-lang-btn { padding: 3px 6px; font-size: 0.65rem; }
  .lp-lang-flag { width: 14px; height: 11px; }
  .lp-entrar-btn { padding: 6px 12px !important; font-size: 0.68rem !important; letter-spacing: 1px !important; }
  .lp-nav-frame { height: 56px; padding: 0 12px; }

  /* ── LOGO / EMBLEM ── */
  .lp-nav { padding: 80px 16px 0; }
  .lp-emblem { top: 4px; }
  .lp-emblem-logo { height: 80px; }
  .lp-emblem-halo { display: none; }

  /* ── HERO ── */
  .lp-hero {
    padding: 80px 16px 160px;
    min-height: auto;
  }
  .lp-hero-split {
    flex-direction: column;
    gap: 24px;
    padding: 0;
  }
  .lp-hero-split .lp-hero-content {
    max-width: 100%;
    text-align: center;
  }
  .lp-hero-split .lp-hero-content .lp-hero-eyebrow { justify-content: center; }
  .lp-hero-split .lp-hero-content .lp-hero-sub { text-align: center; font-size: 0.9rem; }
  .lp-hero-split .lp-hero-content .lp-hero-btns { justify-content: center; }
  .lp-hero-split .lp-hero-content .lp-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  /* ── SLIDER ── */
  .lp-hero-slider { max-width: 100%; width: 100%; }
  .lp-slider-track { aspect-ratio: 16/10; border-radius: 12px; }
  .lp-slide { padding: 20px; }
  .lp-slide-img { width: 70px; height: 70px; margin-bottom: 12px; }
  .lp-slide-info h3 { font-size: 1rem; }
  .lp-slide-info p { font-size: 0.82rem; }
  .lp-slider-controls { gap: 10px; margin-top: 10px; }
  .lp-slider-btn { width: 32px; height: 32px; font-size: 0.7rem; }
  .lp-slider-dot { width: 8px; height: 8px; }

  /* ── STATS ── */
  .lp-hero-stats { position: relative; bottom: auto; margin-top: 40px; }
  .lp-stats-row { gap: 2px; flex-wrap: wrap; justify-content: center; }
  .lp-stat { padding: 8px 12px; }
  .lp-stat-img { width: 30px; height: 30px; font-size: 1.4rem !important; }
  .lp-stat-txt b { font-size: 0.72rem; }
  .lp-stat-txt small { font-size: 0.6rem; }
  .lp-stats-title { font-size: 0.6rem; letter-spacing: 2px; }

  /* ── SECCIONES ── */
  .lp-sec { padding: 50px 16px; }
  .lp-h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .lp-lead { font-size: 0.88rem; }

  /* ── BROWSER SECTION ── */
  .lp-split { grid-template-columns: 1fr; gap: 24px; }
  .lp-split-text { order: 1; }
  .lp-split-visual { order: 2; }
  .lp-chips { flex-wrap: wrap; gap: 6px; }
  .lp-chips span { font-size: 0.7rem; padding: 5px 10px; }

  /* ── FEATURES ── */
  .lp-feat-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-feat { padding: 20px 16px; }
  .lp-feat-title { font-size: 1.05rem; }
  .lp-feat-desc { font-size: 0.82rem; }
  .lp-feat-bullets li { font-size: 0.78rem; }

  /* ── STARTERS ── */
  .lp-starters { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .lp-starter { padding: 16px 8px; }
  .lp-starter-sprite { width: 80px; height: 80px; }
  .lp-starter-sprite img { width: 64px; height: 64px; }
  .lp-starter-name { font-size: 0.85rem; }
  .lp-starter-tag { font-size: 0.55rem; padding: 3px 6px; letter-spacing: 0.5px; }

  /* ── SYSTEMS ── */
  .lp-sys-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
    padding-bottom: 8px;
  }
  .lp-sys-tab { white-space: nowrap; font-size: 0.72rem; padding: 8px 14px; }
  .lp-sys-panel { padding: 20px 16px; }
  .lp-sys-panel h3 { font-size: 1.1rem; }
  .lp-sys-panel p { font-size: 0.82rem; }

  /* ── CTA ── */
  .lp-cta { padding: 60px 16px; }
  .lp-cta-inner .lp-imgbtn { padding: 14px 28px; font-size: 0.85rem; }

  /* ── FOOTER ── */
  .lp-foot { padding: 40px 16px 24px; }
  .lp-foot-cols { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .lp-foot-col h3 { font-size: 0.85rem; }
  .lp-foot-col p { font-size: 0.78rem; }
  .lp-foot-legal p { font-size: 0.65rem; }

  /* ── FORGE BAR ── */
  .forge-wrap { padding: 16px; }
  .forge-label { font-size: 0.72rem; flex-direction: column; gap: 4px; }
}

@media (max-width: 420px) {
  .lp-hero-split .lp-hero-title { font-size: 1.6rem; }
  .lp-hero-sub { font-size: 0.82rem; }
  .lp-hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .lp-hero-btns .lp-imgbtn { width: 100%; max-width: 260px; justify-content: center; padding: 12px 20px; font-size: 0.8rem; }
  .lp-starters { gap: 6px; }
  .lp-starter { padding: 12px 4px; }
  .lp-starter-sprite { width: 68px; height: 68px; }
  .lp-starter-sprite img { width: 54px; height: 54px; }
  .lp-starter-name { font-size: 0.78rem; }
  .lp-starter-tag { font-size: 0.5rem; padding: 2px 5px; }
  .lp-slide-img { width: 56px; height: 56px; }
  .lp-slide-info h3 { font-size: 0.9rem; }
  .lp-slide-info p { font-size: 0.75rem; }
  .lp-stat { padding: 6px 8px; }
  .lp-stat-txt b { font-size: 0.65rem; }
  .lp-sys-tab { font-size: 0.65rem; padding: 6px 10px; }

  /* ── MOBILE TOUCH & OVERFLOW FIXES ── */
  /* Prevent horizontal overflow from large fixed elements */
  .lp { overflow-x: hidden; }
  html, body { overflow-x: hidden; max-width: 100vw; }

  /* Logo: scale down for small phones */
  .lp-emblem { top: 2px; }
  .lp-emblem-logo { height: 60px; }

  /* Navbar: tighter fit */
  .lp-nav { padding: 60px 8px 0; }
  .lp-nav-frame { height: 48px; padding: 0 8px; border-radius: 8px; }
  .lp-entrar-btn { padding: 5px 10px !important; font-size: 0.6rem !important; letter-spacing: 0.5px !important; gap: 4px !important; }
  .lp-lang-btns { gap: 2px; padding: 2px 3px; }
  .lp-lang-btn { padding: 2px 4px; font-size: 0.58rem; }
  .lp-lang-flag { width: 12px; height: 9px; }
  .lp-hamburger { width: 32px; height: 32px; padding: 5px; }

  /* Hero: less padding, no min-height forcing scroll */
  .lp-hero { padding: 60px 12px 120px; min-height: auto; }

  /* Stats section: ensure it doesn't get clipped */
  .lp-hero-stats { width: 100%; margin-top: 24px; }
  .lp-stats-frame { padding: 10px 6px; }
  .lp-stat-sep { display: none; }
  .lp-stats-row { flex-direction: column; gap: 4px; }
  .lp-stat { justify-content: center; padding: 4px 8px; }

  /* Sections: tighter padding */
  .lp-sec { padding: 36px 12px; }

  /* Browser mockup */
  .lp-browser-bar { padding: 8px 10px; gap: 5px; }
  .lp-browser-bar i { width: 8px; height: 8px; }
  .lp-browser-bar span { font-size: 0.6rem; padding: 2px 8px; margin-left: 8px; }
  .lp-mini-poke { width: 48px !important; height: 48px !important; }

  /* Features */
  .lp-feat { padding: 16px 12px; }
  .lp-feat-ico { width: 42px; height: 42px; font-size: 1.2rem; border-radius: 10px; }
  .lp-feat-title { font-size: 0.95rem; }
  .lp-feat-desc { font-size: 0.78rem; margin-bottom: 12px; }
  .lp-feat-bullets li { font-size: 0.74rem; padding-left: 18px; }

  /* Chips */
  .lp-chips span { font-size: 0.62rem; padding: 4px 8px; }

  /* Systems tabs: horizontal scroll */
  .lp-sys-tabs { gap: 4px; padding-bottom: 6px; }
  .lp-sys-panel { padding: 16px 12px; }
  .lp-sys-panel h3 { font-size: 0.95rem; }
  .lp-sys-panel p { font-size: 0.78rem; }
  .lp-sys-chip { font-size: 0.68rem; }

  /* CTA */
  .lp-cta { padding: 40px 12px; }
  .lp-cta-inner .lp-imgbtn { padding: 12px 24px; font-size: 0.78rem; }

  /* Footer */
  .lp-foot { padding: 30px 12px 20px; }
  .lp-foot-brand { font-size: 1rem; }
  .lp-foot-col p { font-size: 0.72rem; }
  .lp-foot-legal p { font-size: 0.58rem; }

  /* Forge bar */
  .forge-wrap { padding: 12px 10px; }
  .forge-label { font-size: 0.65rem; }

  /* Modal: full-width on small screens */
  .lp-modal-overlay { padding: 12px 8px; }
  .lp-modal { border-radius: 12px; max-height: 90vh; }
  .lp-modal-body { padding: 20px 14px 24px; }
  .lp-modal-title { font-size: 1.1rem; }
  .lp-modal-sub { font-size: 0.78rem; }
  .lp-modal-close { width: 30px; height: 30px; font-size: 1rem; top: 8px; right: 8px; }

  /* Ranking */
  .lp-rank-tabs { gap: 4px; }
  .lp-rank-tab { min-width: 0; padding: 7px 8px; font-size: 0.68rem; }
  .lp-rank-row { padding: 7px 8px; gap: 8px; border-radius: 10px; }
  .lp-rank-pos { width: 24px; height: 24px; font-size: 0.78rem; }
  .lp-rank-avatar { width: 32px; height: 32px; background-size: 128px 128px; }
  .lp-rank-poke { background-size: 128px 128px; }
  .lp-rank-name { font-size: 0.78rem; }
  .lp-rank-val { font-size: 0.72rem; }
  .lp-rank-name .lp-rank-wl { font-size: 0.62rem; }

  /* Rules modal */
  .lp-rule { font-size: 0.78rem; padding: 8px 2px; gap: 8px; }
  .lp-rule-sec { font-size: 0.72rem; }

  /* Touch targets: ensure all buttons meet 44px minimum */
  .lp-slider-btn { width: 36px; height: 36px; min-width: 44px; min-height: 44px; }
  .lp-slider-dot { width: 10px; height: 10px; min-width: 10px; min-height: 10px; }
}

/* ── EXTRA SMALL (320px-360px phones) ── */
@media (max-width: 360px) {
  .lp-emblem-logo { height: 50px; }
  .lp-nav { padding: 52px 6px 0; }
  .lp-nav-frame { height: 44px; padding: 0 6px; }
  .lp-entrar-btn { padding: 4px 8px !important; font-size: 0.55rem !important; }
  .lp-lang-btn { padding: 2px 3px; font-size: 0.5rem; }
  .lp-lang-flag { width: 10px; height: 8px; }

  .lp-hero { padding: 52px 8px 100px; }
  .lp-hero-split .lp-hero-content .lp-hero-title { font-size: 1.35rem; }
  .lp-hero-sub { font-size: 0.75rem !important; }
  .lp-hero-eyebrow { font-size: 0.52rem; letter-spacing: 2px; padding: 4px 10px; }
  .lp-hero-btns .lp-imgbtn { max-width: 100%; font-size: 0.72rem; }

  .lp-starters { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .lp-starter { padding: 10px 2px; }
  .lp-starter-sprite { width: 56px; height: 56px; }
  .lp-starter-sprite img { width: 44px; height: 44px; }
  .lp-starter-name { font-size: 0.68rem; }
  .lp-starter-tag { font-size: 0.45rem; }

  .lp-h2 { font-size: 1.2rem; }
  .lp-lead { font-size: 0.78rem; }
  .lp-sec { padding: 28px 8px; }
}


/* ═══════════════════════════════════════════════════════════════
   MEJORAS ESTILO MOCHILA / TURN OFF (WIN-HEADER THEME)
   ═══════════════════════════════════════════════════════════════ */

/* Botón Entrar / Jugar en Navbar (Estilo Mochila) */
.lp-entrar-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #1e1b4b 0%, #2e1065 100%) !important;
  border: 1px solid rgba(168, 85, 247, 0.6) !important;
  color: #f8fafc !important;
  font-family: var(--font-body), sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.2s ease-in-out !important;
  cursor: pointer !important;
}
.lp-entrar-btn i {
  color: #c084fc !important;
  filter: drop-shadow(0 0 8px #c084fc) !important;
}
.lp-entrar-btn:hover {
  transform: translateY(-2px) scale(1.02) !important;
  background: linear-gradient(135deg, #2e1065 0%, #3b0764 100%) !important;
  border-color: #c084fc !important;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
}

/* Nav links estilo pastillas de control */
.lp-link {
  padding: 6px 12px !important;
  border-radius: 6px !important;
  background: rgba(15, 23, 42, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.2s ease-in-out !important;
}
.lp-link:hover, .lp-link.on {
  background: rgba(30, 27, 75, 0.8) !important;
  border-color: rgba(168, 85, 247, 0.5) !important;
  color: #fbbf24 !important;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.3) !important;
}

/* Hero CTA Primary (Estilo Mochila Principal) */
.lp-imgbtn.primary {
  background: linear-gradient(135deg, #1e1b4b 0%, #2e1065 50%, #422006 100%) !important;
  border: 2px solid #c084fc !important;
  color: #ffffff !important;
  font-family: 'Outfit', var(--font-body), sans-serif !important;
  font-weight: 800 !important;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.45), 0 6px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transition: all 0.2s ease-in-out !important;
}
.lp-imgbtn.primary i {
  color: #fbbf24 !important;
  filter: drop-shadow(0 0 8px #fbbf24) !important;
}
.lp-imgbtn.primary:hover {
  transform: translateY(-3px) scale(1.03) !important;
  background: linear-gradient(135deg, #2e1065 0%, #3b0764 50%, #78350f 100%) !important;
  border-color: #fbbf24 !important;
  box-shadow: 0 0 35px rgba(251, 191, 36, 0.6), 0 8px 30px rgba(0, 0, 0, 0.7) !important;
}

/* Hero CTA Ghost (Estilo Turn Off / Apagar Botón Red Glow) */
.lp-imgbtn.ghost {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  border: 2px solid rgba(239, 68, 68, 0.6) !important;
  color: #fca5a5 !important;
  font-family: 'Outfit', var(--font-body), sans-serif !important;
  font-weight: 800 !important;
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  transition: all 0.2s ease-in-out !important;
}
.lp-imgbtn.ghost i {
  color: #f87171 !important;
  filter: drop-shadow(0 0 8px #ef4444) !important;
}
.lp-imgbtn.ghost:hover {
  transform: translateY(-3px) scale(1.03) !important;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.35) 0%, rgba(127, 29, 29, 0.9) 100%) !important;
  border-color: #f87171 !important;
  color: #ffffff !important;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.55), 0 8px 30px rgba(0, 0, 0, 0.7) !important;
}

/* Social Buttons con halo de mochila */
.lp-social-btn {
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(168, 85, 247, 0.3) !important;
  color: #c084fc !important;
  transition: all 0.2s !important;
}
.lp-social-btn:hover {
  transform: scale(1.15) !important;
  border-color: #c084fc !important;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.6) !important;
  color: #fbbf24 !important;
}


/* ═══════════════════════════════════════════════════════════════
   OVERHAUL MODERNO — TIPOGRAFÍA HIGH-CONTRAST Y CRISTAL NEÓN
   ═══════════════════════════════════════════════════════════════ */

body, html {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif !important;
  color: #f8fafc !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  letter-spacing: -0.5px !important;
}

p, span, li, td {
  color: #e2e8f0 !important;
}

.lp-hero-eyebrow {
  color: #fbbf24 !important;
  font-weight: 800 !important;
  letter-spacing: 4px !important;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.4) !important;
}

.lp-hero-sub {
  color: #cbd5e1 !important;
  font-size: 1.15rem;
  line-height: 1.6 !important;
}

/* Tarjetas y Contenedores de Cristal Neón (Estilo Mochila) */
.lp-stat, .lp-card, .lp-feature-card, .lp-system-card, .lp-browser-wrap, .lp-modal-content {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(30, 27, 75, 0.75)) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(168, 85, 247, 0.35) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  border-radius: 14px !important;
  transition: all 0.25s ease-in-out !important;
}

.lp-stat:hover, .lp-card:hover, .lp-feature-card:hover, .lp-system-card:hover {
  transform: translateY(-4px) !important;
  border-color: #c084fc !important;
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4), 0 0 20px rgba(192, 132, 252, 0.2) !important;
}

/* Iconos Neón con resplandor estilo Mochila */
.lp-stat-img i, .lp-card-icon i, .lp-feature-icon i, .lp-system-icon i {
  filter: drop-shadow(0 0 10px currentColor) drop-shadow(0 0 20px currentColor) !important;
}

/* Barra Nav Superior estilo Cristal */
.lp-nav-frame {
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.92), rgba(15, 23, 42, 0.95)) !important;
  border-color: rgba(192, 132, 252, 0.5) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(16px) !important;
}

/* ═══════════════════════════════════════════════════════════════
   NUEVAS ANIMACIONES 3D Y EFECTOS DE RESPLANDOR NEÓN
   ═══════════════════════════════════════════════════════════════ */



/* Animación de Pulso Neón en el Logo / Emblema Principal */
.lp-emblem-logo {
  animation: emblemPulseGlow 4s ease-in-out infinite;
}
@keyframes emblemPulseGlow {
  0%, 100% { filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 15px rgba(251, 191, 36, 0.3)); }
  50% { filter: drop-shadow(0 10px 35px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 30px rgba(56, 189, 248, 0.7)); }
}

/* Animación de Pulso de Anillo en el Botón Principal "Jugar Ahora" */
.lp-imgbtn.primary::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  background: linear-gradient(135deg, #38bdf8, #fbbf24, #c084fc);
  z-index: -1;
  opacity: 0.6;
  animation: btnRingPulse 2.5s ease-in-out infinite;
}
@keyframes btnRingPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

/* Animación de Entrada Suave (Fade Up) para Tarjetas */
.lp-feat, .lp-starter, .lp-stat, .lp-sys-card {
  animation: cardFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes cardFadeUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
