/* ════════════════════════════════════════════
   BASE RESET & VARIABLES — El Bloque RP
   Orange/Amber theme inspired by NightLifeRP
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:     #f97316;
  --accent-d:   #ea580c;
  --accent-l:   #fb923c;
  --green:      #4ade80;
  --bg:         #0a0a0d;
  --bg-2:       #0f0f12;
  --bg-card:    #ffffff08;
  --text:       #e4e4e7;
  --muted:      #a1a1aa;
  --dim:        #71717a;
  --border:     rgba(255,255,255,0.08);
  --border-p:   rgba(249,115,22,0.3);
  --fd: 'Bebas Neue', sans-serif;
  --fb: 'Outfit', system-ui, sans-serif;
  --nav-h: 72px;
  --mw: 1600px;
}

::selection { color: #fff !important; background: var(--accent) !important; text-shadow: none; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--fb); color: var(--text);
  background: var(--bg); min-height: 100vh;
  line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 80rem; margin: 0 auto; padding: 0 24px; }

/* ════════════════════════════════════════════
   ANIMATED BACKGROUND SYSTEM
════════════════════════════════════════════ */
.animated-bg {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; contain: strict;
  overflow: hidden;
}
.animated-bg::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(circle at 20% 80%, rgba(249,115,22,0.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(249,115,22,0.08), transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(234,88,12,0.06), transparent 40%);
  animation: bgFloat 20s ease-in-out infinite;
}
@keyframes bgFloat {
  0%,100% { transform: translate(0) rotate(0); }
  50% { transform: translate(5%,-5%) rotate(-5deg); }
}

/* Noise texture overlay */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  transform: translateZ(0);
}

/* Subtle grid pattern */
.grid-pattern-bg {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: translateZ(0);
}

/* Site wrapper sits above bg */
.site-wrapper { position: relative; z-index: 10; }

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
  color: #fff; border: none; border-radius: 12px;
  padding: 14px 32px; font-family: var(--fb); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(249,115,22,0.45); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.2); border-radius: 12px;
  padding: 14px 32px; font-family: var(--fb); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.btn-secondary:hover { background: rgba(249,115,22,0.1); border-color: var(--accent); transform: translateY(-2px); }

.btn-discord {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(88,101,242,0.15); color: #8b97ff;
  border: 1px solid rgba(88,101,242,0.28); border-radius: 9px;
  padding: 9px 18px; font-family: var(--fb); font-weight: 600;
  font-size: 0.88rem; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-discord:hover { background: rgba(88,101,242,0.28); }
.btn-discord svg, .btn-primary svg, .btn-secondary svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ════════════════════════════════════════════
   GLASS & CARD
════════════════════════════════════════════ */
.glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
}
.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 1.75rem;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(249,115,22,0.45);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 30px rgba(249,115,22,0.12);
}
.tilt-card { transform-style: preserve-3d; perspective: 1000px; }
.tilt-shine { border-radius: inherit; transition: background 0.2s; }

/* ════════════════════════════════════════════
   GRADIENT TEXT
════════════════════════════════════════════ */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-l), var(--accent), var(--accent-d));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════
   BADGES
════════════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.28);
  color: var(--accent-l); border-radius: 100px;
  padding: 5px 14px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ════════════════════════════════════════════
   SECTION HELPERS
════════════════════════════════════════════ */
.section-title {
  font-family: var(--fd); font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05; letter-spacing: 0.02em; margin-bottom: 14px;
  font-weight: 800;
}
.section-sub {
  color: var(--muted); font-size: 1.05rem;
  max-width: 600px; line-height: 1.8;
  margin-left: auto; margin-right: auto;
}
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head .badge { margin-bottom: 18px; }
.sec-head .section-title { margin-bottom: 18px; }

/* ════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════════ */
.reveal      { opacity: 0; transform: translateY(40px);    transition: opacity 0.8s, transform 0.8s; }
.reveal-left { opacity: 0; transform: translateX(-50px);   transition: opacity 0.8s, transform 0.8s; }
.reveal-right{ opacity: 0; transform: translateX(50px);    transition: opacity 0.8s, transform 0.8s; }
.scroll-scale{ opacity: 0; transform: scale(0.82);         transition: all 0.8s cubic-bezier(.4,0,.2,1); }
.scroll-blur { opacity: 0; filter: blur(10px); transform: translateY(20px); transition: all 0.8s cubic-bezier(.4,0,.2,1); }
.reveal.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: none; }
.scroll-scale.active { opacity: 1; transform: scale(1); }
.scroll-blur.active  { opacity: 1; filter: blur(0); transform: translateY(0); }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h); transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(10,10,13,0.88);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--mw); margin: 0 auto; padding: 0 32px;
  height: 100%; display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-logo { display: flex; align-items: center; gap: 10px; justify-self: start; }
.nav-logo:hover .logo-icon { transform: scale(1.05); }
.logo-icon { transition: transform 0.3s; }
.logo-text {
  font-family: var(--fd); font-size: 1.3rem;
  letter-spacing: 0.08em; color: #fff;
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; justify-self: center; }
.nav-links a {
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--muted);
  transition: all 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px;
  left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-l));
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 70%; }
.nav-links a:hover { background: rgba(255,255,255,0.05); }

.nav-actions { display: flex; align-items: center; gap: 10px; justify-self: end; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.28s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,13,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px 24px; z-index: 999;
  flex-direction: column; gap: 3px;
}
.mob-menu.open { display: flex; }
.mob-menu a { padding: 12px 16px; border-radius: 8px; font-weight: 500; color: var(--muted); transition: all 0.18s; }
.mob-menu a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.mob-actions { display: flex; gap: 10px; margin-top: 12px; }
.mob-actions .btn-primary, .mob-actions .btn-discord { flex: 1; justify-content: center; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.60) 0%,
      rgba(0,0,0,0.38) 35%,
      rgba(0,0,0,0.55) 65%,
      rgba(0,0,0,0.92) 100%
    );
}
/* Orange brand glow at top */
.hero-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%,
    rgba(249,115,22,0.18) 0%, transparent 62%);
}

/* Floating orbs over hero */
.hero-orb-1 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(249,115,22,0.15); filter: blur(150px);
  top: -10%; left: -10%; animation: orb1 15s ease-in-out infinite;
  pointer-events: none; z-index: 1;
}
.hero-orb-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(249,115,22,0.10); filter: blur(150px);
  bottom: -10%; right: -10%; animation: orb2 18s ease-in-out infinite;
  pointer-events: none; z-index: 1;
}
@keyframes orb1 { 0%,100%{transform:translate(0)scale(1);opacity:.18} 50%{transform:translate(30px,-30px)scale(1.1);opacity:.28} }
@keyframes orb2 { 0%,100%{transform:translate(0)scale(1);opacity:.12} 50%{transform:translate(-30px,20px)scale(1.05);opacity:.22} }

/* Hero CSS particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; z-index: 1; pointer-events: none; }
.p-dot {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: pFloat 20s linear infinite;
}
.p-dot:nth-child(1){left:15%;width:3px;height:3px;animation-delay:0s;animation-duration:25s}
.p-dot:nth-child(2){left:30%;width:2px;height:2px;animation-delay:-5s;animation-duration:20s}
.p-dot:nth-child(3){left:50%;width:3px;height:3px;animation-delay:-10s;animation-duration:28s}
.p-dot:nth-child(4){left:70%;width:4px;height:4px;animation-delay:-15s;animation-duration:22s}
.p-dot:nth-child(5){left:85%;width:2px;height:2px;animation-delay:-8s;animation-duration:24s}
@keyframes pFloat {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  width: 90%; max-width: 1000px; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(12px);
  border: 1px solid rgba(249,115,22,0.4);
  color: rgba(255,255,255,0.85);
  font-size: 0.65rem; font-weight: 700;
  padding: 5px 16px; border-radius: 100px; margin-bottom: 24px;
  letter-spacing: 0.13em; text-transform: uppercase;
  animation: fadeUp 0.55s ease both;
}
.pulse-green {
  width: 7px; height: 7px; background: var(--green);
  border-radius: 50%; flex-shrink: 0;
  animation: pulseG 2s infinite;
}
@keyframes pulseG {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.45); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1; margin-bottom: 0; color: #fff;
  text-shadow: 0 3px 40px rgba(0,0,0,0.9);
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-h1 .red {
  color: var(--accent); display: block;
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: 0.85;
  text-shadow: 0 0 80px rgba(249,115,22,0.55), 0 0 30px rgba(249,115,22,0.35), 0 6px 50px rgba(0,0,0,0.95);
  position: relative; cursor: default;
  /* CSS vars driven by JS */
  --ga-x: 0px; --ga-clip: inset(0 0 100% 0);
  --gb-x: 0px; --gb-clip: inset(0 0 100% 0);
}
.hero-h1 .red .life {
  color: #fff;
  text-shadow: 0 0 30px rgba(255,255,255,1), 0 0 70px rgba(255,255,255,0.55), 0 0 120px rgba(249,115,22,0.4), 0 4px 30px rgba(0,0,0,0.95);
}

/* Ghost layers — driven entirely by JS via CSS vars */
.hero-h1 .red::before,
.hero-h1 .red::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  display: block;
  pointer-events: none;
  font-family: inherit; font-size: inherit;
  line-height: inherit; font-weight: inherit;
  opacity: 0;
  clip-path: var(--ga-clip);
}
.hero-h1 .red::before {
  color: #00f5d4;
  text-shadow: 3px 0 #00f5d4, -1px 0 rgba(0,245,212,0.4);
  transform: translateX(var(--ga-x));
}
.hero-h1 .red::after {
  color: #ff6b35;
  text-shadow: -3px 0 #ff6b35, 1px 0 rgba(255,107,53,0.4);
  transform: translateX(var(--gb-x));
  clip-path: var(--gb-clip);
}
/* Active state reveals the layers */
.hero-h1 .red.glitch-on::before,
.hero-h1 .red.glitch-on::after { opacity: 1; }
.hero-h2 {
  font-family: var(--fb); font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.7); margin-top: 12px; margin-bottom: 24px;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,0.9);
  animation: fadeUp 0.6s ease 0.18s both;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 580px;
  margin-bottom: 36px; line-height: 1.8;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9);
  animation: fadeUp 0.6s ease 0.26s both;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.6s ease 0.34s both;
}

/* Player count bar */
.hero-online {
  position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%);
  z-index: 2; white-space: nowrap;
  display: flex; align-items: center;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 100px;
  font-size: 0.9rem; overflow: hidden;
}
.hero-online .ol {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 22px; color: var(--green); font-weight: 700;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-online .oc { padding: 12px 22px; color: rgba(255,255,255,0.9); }
.hero-online .oc strong { font-weight: 800; color: #fff; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 6px; color: var(--dim);
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px; border: 2px solid currentColor;
  border-radius: 999px; display: flex; align-items: flex-start;
  justify-content: center; padding: 5px;
}
.scroll-dot { width: 3px; height: 7px; background: currentColor; border-radius: 999px; animation: bounceY 1s infinite; }
@keyframes bounceY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

@keyframes fadeUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform:none; } }

/* ════════════════════════════════════════════
   STATS
════════════════════════════════════════════ */
#stats {
  padding: 72px 0; position: relative;
}
#stats::before, #stats::after {
  content: ''; display: block; height: 1px;
  background: linear-gradient(to right, transparent, rgba(249,115,22,0.3), transparent);
  position: absolute; left: 0; right: 0;
}
#stats::before { top: 0; }
#stats::after  { bottom: 0; }

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--fb); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  background: linear-gradient(135deg, #fff, var(--muted));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 10px;
  white-space: nowrap;
}
.stat-lbl { font-weight: 600; color: var(--text); font-size: 1rem; margin-bottom: 4px; }
.stat-sub { font-size: 0.78rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.06em; }

/* ════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════ */
#caracteristicas { padding: 96px 0; }

.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.feat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  cursor: default; position: relative; overflow: hidden;
}
.feat-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(249,115,22,0.45);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 30px rgba(249,115,22,0.1);
}
.feat-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  transition: all 0.3s;
}
.feat-card:hover .feat-icon {
  background: rgba(249,115,22,0.2);
  box-shadow: 0 0 20px rgba(249,115,22,0.2);
}
.feat-title { font-weight: 700; font-size: 1rem; margin-bottom: 10px; color: #fff; }
.feat-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

.feat-title-hl { color: var(--accent); font-style: italic; }

/* ════════════════════════════════════════════
   LIFESTYLES
════════════════════════════════════════════ */
#estilos { padding: 96px 0; }
.lifestyle-rows { display: flex; flex-direction: column; gap: 96px; }
.ls-row {
  display: flex; align-items: center; gap: 56px;
}
.ls-row.reverse { flex-direction: row-reverse; }
.ls-img-wrap {
  flex: 1; border-radius: 24px; overflow: hidden;
  aspect-ratio: 16/10; position: relative;
  border: 1px solid rgba(255,255,255,0.12); padding: 4px;
  animation: borderGlow 3s ease-in-out infinite;
}
@keyframes borderGlow { 0%,100%{border-color:rgba(249,115,22,0.3)} 50%{border-color:rgba(249,115,22,0.6)} }
.ls-img-inner { width: 100%; height: 100%; border-radius: 20px; overflow: hidden; background: #131318; }
.ls-img-inner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.5s, transform 0.6s cubic-bezier(.4,0,.2,1); }
.ls-img-wrap:hover .ls-img-inner img { opacity: 1; transform: scale(1.08); }
.ls-img-label {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  color: #fff; font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
}
.ls-img-ph {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 4rem;
}
.ls-ph-civil    { background: linear-gradient(135deg,#0b1a0b,#1a3a1a); }
.ls-ph-criminal { background: linear-gradient(135deg,#1a0404,#3a0808); }
.ls-ph-police   { background: linear-gradient(135deg,#04071a,#0a1640); }

.ls-body { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.ls-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-l); }
.ls-title { font-family: var(--fd); font-size: clamp(1.8rem, 3.5vw, 3rem); color: #fff; line-height: 1.1; }
.ls-desc { color: var(--muted); line-height: 1.8; font-size: 0.95rem; }
.ls-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ls-tag {
  padding: 6px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem; color: var(--muted);
  transition: all 0.3s; cursor: default;
}
.ls-tag:hover { border-color: rgba(249,115,22,0.5); background: rgba(249,115,22,0.08); color: var(--text); }
.ls-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-l); font-weight: 600; font-size: 0.9rem;
  transition: all 0.3s;
}
.ls-link:hover { color: var(--accent); gap: 10px; }

/* ════════════════════════════════════════════
   FACTIONS
════════════════════════════════════════════ */
#facciones { padding: 96px 0; }
.fac-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 40px; }

.fac-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.3s;
}
.fac-card:hover { border-color: rgba(249,115,22,0.35); box-shadow: 0 0 30px rgba(249,115,22,0.08); }

.fac-icon-box {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
}
.fac-body { flex: 1; min-width: 0; }
.fac-type { font-size: 0.7rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.fac-name { font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.fac-slots { font-size: 0.8rem; color: var(--muted); }

.fac-cta {
  text-align: center; padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}
.fac-cta h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.fac-cta p { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }

/* ════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════ */
#comunidad { padding: 96px 0; }
.rev-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 40px; }

.rev-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px;
}
.rev-quote-icon { margin-bottom: 16px; }
.rev-quote-icon svg { width: 36px; height: 36px; color: rgba(249,115,22,0.25); }
.rev-text { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.rev-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.rev-stars svg { width: 18px; height: 18px; color: #f59e0b; fill: #f59e0b; }
.rev-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.rev-av { width: 44px; height: 44px; border-radius: 50%; background: rgba(249,115,22,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.rev-name { font-weight: 600; font-size: 0.9rem; color: #fff; }
.rev-role { font-size: 0.75rem; color: var(--dim); margin-top: 2px; }

.rev-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.met-item {
  text-align: center; padding: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
}
.met-num { font-family: var(--fd); font-size: 2.2rem; margin-bottom: 5px; }
.met-lbl { font-size: 0.82rem; color: var(--muted); }

/* ════════════════════════════════════════════
   STEPS
════════════════════════════════════════════ */
#conectar { padding: 96px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px; }

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px;
  text-align: center; position: relative; overflow: hidden;
  transition: all 0.4s;
  cursor: default;
}
.step-card:hover { border-color: rgba(249,115,22,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(249,115,22,0.1); }
/* Step number badge */
.step-badge {
  position: absolute; top: -1px; right: -1px;
}
.step-badge-inner {
  position: relative; padding: 6px 14px 7px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
  border-radius: 0 16px 0 16px;
  font-family: var(--fd); font-size: 0.9rem; color: #fff; font-weight: 700;
  box-shadow: 0 0 20px rgba(249,115,22,0.3);
}
.step-icon-wrap {
  width: 72px; height: 72px; margin: 12px auto 24px;
  border-radius: 16px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all 0.4s;
}
.step-card:hover .step-icon-wrap {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.3);
  color: var(--accent-l);
  box-shadow: 0 0 20px rgba(249,115,22,0.15);
}
.step-card:hover .step-icon-wrap svg { transform: scale(1.12); }
.step-icon-wrap svg { width: 30px; height: 30px; transition: transform 0.4s; }
.step-title { font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: 10px; }
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.step-link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.84rem; color: var(--accent-l); font-weight: 600; transition: all 0.3s; }
.step-link:hover { color: var(--accent); gap: 9px; }
.step-link span { position: relative; }
.step-link span::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s; }
.step-link:hover span::after { width: 100%; }

.steps-help { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); }
.steps-help p { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }

/* ════════════════════════════════════════════
   CTA
════════════════════════════════════════════ */
#cta { padding: 80px 0; }
.cta-inner {
  position: relative; border-radius: 28px; overflow: hidden;
  padding: 80px 60px; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-d), var(--accent));
}
.cta-bg-img {
  position: absolute; inset: 0; opacity: 0.15;
  background-image: url('images/hero-bg.png');
  background-size: cover; background-position: center;
  mix-blend-mode: overlay;
}
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,13,0.7), transparent); }
.cta-content { position: relative; z-index: 1; }
.cta-title { font-family: var(--fd); font-size: clamp(2.2rem, 5vw, 4rem); color: #fff; margin-bottom: 14px; }
.cta-desc { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; line-height: 1.75; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #0a0a0d; border-radius: 12px;
  padding: 14px 32px; font-family: var(--fb); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.btn-cta-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); color: #fff;
  border: 2px solid rgba(255,255,255,0.25); border-radius: 12px;
  padding: 14px 32px; font-family: var(--fb); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-cta-white svg, .btn-cta-outline svg { width: 18px; height: 18px; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer { padding: 72px 0 0; border-top: 1px solid var(--border); position: relative; overflow: hidden; }
footer::before {
  content: ''; position: absolute;
  bottom: 0; left: 25%; width: 50%; height: 400px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 48px; position: relative;
}
.f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.f-logo img { height: 36px; width: auto; }
.f-logo-text { font-family: var(--fd); font-size: 1.3rem; letter-spacing: 0.06em; }
.f-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; max-width: 300px; }
.f-socials { display: flex; gap: 10px; }
.soc-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: all 0.3s; color: var(--muted);
}
.soc-btn:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); color: var(--text); }
.f-col h4 { font-weight: 700; font-size: 1rem; margin-bottom: 18px; color: #fff; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col li a {
  font-size: 0.88rem; color: var(--muted); transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.f-col li a:hover { color: var(--text); padding-left: 4px; }
.f-discord {
  background: rgba(88,101,242,0.1); border: 1px solid rgba(88,101,242,0.22);
  border-radius: 12px; padding: 18px; margin-bottom: 14px;
}
.f-discord a { display: flex; align-items: center; gap: 10px; color: #8b97ff; font-weight: 600; font-size: 0.9rem; }
.f-discord a .f-d-sub { font-size: 0.75rem; color: var(--dim); font-weight: 400; display: block; margin-top: 2px; }
.f-discord a svg { width: 20px; height: 20px; flex-shrink: 0; }
.f-online { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--green); }
.f-status-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; display: inline-block; animation: pulseG 2s infinite; }

.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--dim); flex-wrap: wrap; gap: 10px;
  position: relative;
}
.f-legal { display: flex; gap: 16px; }
.f-legal a { color: var(--dim); transition: color 0.2s; }
.f-legal a:hover { color: var(--muted); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .ls-row, .ls-row.reverse { flex-direction: column; gap: 32px; }
  .fac-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .rev-metrics { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .hero-online { font-size: 0.78rem; bottom: 70px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .rev-metrics { grid-template-columns: 1fr 1fr; }
  .cta-inner { padding: 48px 28px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
