 
/* ============================================
   L2 DIABOLICAL HIGHLUDE — SHARED STYLES
   ============================================ */

:root {
  --bg-void: #07060a;
  --bg-deep: #0c0a10;
  --bg-panel: #11101a;
  --bg-panel-2: #181620;
  --line: #2a2330;
  --line-soft: #1a1620;
  --gold: #c9a661;
  --gold-bright: #e8c87f;
  --gold-dim: #8a7340;
  --blood: #8b1a1a;
  --blood-bright: #b62828;
  --blood-deep: #5a0e0e;
  --bone: #e8e1d3;
  --ash: #aaa094;
  --smoke: #6e6557; 
  --green-glow: #4ade80;
  --header-h: 72px;
  --status-h: 0px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-void);
  color: var(--bone);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== ATMOSPHERIC BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(139, 26, 26, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(201, 166, 97, 0.08), transparent 60%),
    radial-gradient(ellipse 100% 80% at 0% 50%, rgba(139, 26, 26, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.32;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}


/* ===== TYPOGRAPHY ===== */
.font-display { font-family: 'Cinzel', serif; letter-spacing: 0.04em; }
.font-body { font-family: 'Cormorant Garamond', serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

h1, h2, h3, h4 { font-family: 'Cinzel', serif; font-weight: 700; letter-spacing: 0.05em; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Page wrapper – fills viewport between header+status and bottom */
.page {
  min-height: calc(100vh - var(--header-h) - var(--status-h));
  display: flex;
  align-items: center;
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
  animation: fadeInPage 0.6s ease-out;
}

@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(7, 6, 10, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  height: var(--header-h);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--bone);
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.brand-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--smoke);
  letter-spacing: 0.15em;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--ash);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover { color: var(--gold-bright); }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s, left 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; left: 0; }

.nav-links a.active { color: var(--gold-bright); }

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

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector { position: relative; }

.lang-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ash);
  padding: 8px 14px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  transition: all 0.25s;
}

.lang-btn:hover { border-color: var(--gold-dim); color: var(--gold-bright); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s;
  z-index: 100;
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--ash);
  padding: 12px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--line-soft);
  transition: all 0.2s;
}

.lang-dropdown button:last-child { border-bottom: none; }
.lang-dropdown button:hover { background: var(--bg-panel-2); color: var(--gold-bright); }
.lang-dropdown button.active { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blood) 0%, var(--blood-bright) 100%);
  color: var(--bone);
  border: 1px solid var(--blood-bright);
  box-shadow: 0 0 0 1px rgba(201, 166, 97, 0.15), 0 4px 24px rgba(139, 26, 26, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(139, 26, 26, 0.6);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(232, 200, 127, 0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-ghost {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--gold-dim);
}

.btn-ghost:hover {
  background: rgba(201, 166, 97, 0.06);
  border-color: var(--gold);
  color: var(--bone);
}

.btn-sm { padding: 10px 18px; font-size: 11px; }
.btn-lg { padding: 18px 36px; font-size: 13px; }


.copy-flash {
  animation: copyFlash 0.6s ease;
}

@keyframes copyFlash {
  0%, 100% { color: inherit; }
  50% { color: var(--green-glow); }
}

/* Push pages below header + status bar */
.has-fixed-header {
  padding-top: calc(var(--header-h) + var(--status-h));
}

/* ============================================
   PAGE: INDEX (Hero)
   ============================================ */

.hero-page {
  min-height: calc(100vh - var(--header-h) - var(--status-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background: url("/images/bg/dragon.jpg") no-repeat center center;
  background-size: cover;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(139, 26, 26, 0.35), transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(0, 0, 0, 0.6), transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(0, 0, 0, 0.6), transparent 60%);
  pointer-events: none;
}
 
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
 
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182, 40, 40, 0); }
  50% { box-shadow: 0 0 24px 0 rgba(182, 40, 40, 0.3); }
}

.hero-eyebrow {
  font-size: 13 px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8b8b8;
  opacity: 0.8;
  margin-bottom: 6px;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--bone);
  text-shadow: 0 4px 60px rgba(139, 26, 26, 0.4);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif; 
  font-size: clamp(28px, 3.6vw, 36px);
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 40px; 
}

.hero-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.7;
  color: var(--ash);
  max-width: 640px;
  margin: 0 auto 36px;
  font-style: italic;
  font-weight: 400;
}

.hero-description em {
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  max-width: 720px;
  margin: 0 auto;
}

.hero-meta-item { text-align: center; }

.hero-meta-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-meta-value {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ============================================
   PAGE: GUIA (How to play)
   ============================================ */

.guia-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--header-h) - var(--status-h));
  padding: 40px 0;
}

.page-header {
  text-align: center;
  margin-bottom: 48px;
}

.page-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--blood-bright);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.page-eyebrow::before,
.page-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blood-deep), transparent);
  width: 60px;
  display: block;
}

.page-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--bone);
}

.page-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ash);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  margin-bottom: 80px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  margin-bottom: 56px;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), var(--gold-dim), transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 36px 24px;
  transition: all 0.3s;
}

.step:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  background: var(--bg-panel-2);
}

.step-circle {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold-dim);
  background: var(--bg-void);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -68px auto 24px;
  color: var(--gold-bright);
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  transition: all 0.3s;
}

.step-circle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--line);
  pointer-events: none;
  transition: all 0.3s;
}

.step:hover .step-circle {
  border-color: var(--gold);
  background: var(--blood-deep);
  color: var(--bone);
}

.step:hover .step-circle::before {
  inset: -10px;
  border-color: var(--gold-dim);
}

.step-icon {
  margin: 0 auto 16px;
  color: var(--gold-bright);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.step-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--ash);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-action {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.25s;
}

.step-action:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

/* Connection box */
.connection-box {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 28px 32px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.connection-box::before,
.connection-box::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
}
.connection-box::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.connection-box::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.connection-title {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.connection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.connection-cell {
  background: var(--bg-void);
  padding: 14px 16px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}

.connection-cell:hover { background: var(--bg-panel-2); }

.connection-cell .lbl {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.connection-cell .val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--gold-bright);
  font-weight: 500;
}

/* ============================================
   PAGE: FEATURES (with tabs)
   ============================================ */

.features-page {
  min-height: calc(100vh - var(--header-h) - var(--status-h));
  display: flex;
  flex-direction: column;
  padding: 40px 0;
}

.tab-content { display: none; animation: fadeInTab 0.4s ease-out; }
.tab-content.active { display: block; }

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----- Tab: Rates ----- */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--bg-panel);
}

.rate-card {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s;
}

.rate-card:last-child { border-right: none; }
.rate-card:hover { background: var(--bg-panel-2); }

.rate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: width 0.4s;
}

.rate-card:hover::before { width: 100%; }

.rate-tier {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.rate-range {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--gold-dim);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.rate-value {
  font-family: 'Cinzel', serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 0.9;
  margin-bottom: 4px;
  text-shadow: 0 0 40px rgba(232, 200, 127, 0.2);
}

.rate-value .x {
  font-size: 28px;
  color: var(--gold-dim);
  font-weight: 400;
  margin-right: 4px;
}

.rate-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ash);
  margin-bottom: 18px;
}

.rate-bar {
  width: 100%;
  height: 4px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.rate-bar-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--blood-deep), var(--blood-bright), var(--gold));
  transform-origin: left;
  transform: scaleX(var(--fill, 0.4));
  transition: transform 1s ease-out;
}

.rates-footnote {
  text-align: center;
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--smoke);
  font-size: 15px;
}

.rates-footnote strong {
  font-style: normal;
  color: var(--gold-bright);
  font-weight: 500;
}

/* ----- Tab: Características ----- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature {
  background: var(--bg-deep);
  padding: 32px 24px;
  position: relative;
  transition: background 0.3s;
}

.feature:hover { background: var(--bg-panel); }

.feature-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 0.2em;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-bright);
  transition: all 0.3s;
}

.feature:hover .feature-icon {
  border-color: var(--gold);
  background: rgba(201, 166, 97, 0.05);
  transform: rotate(45deg);
}

.feature:hover .feature-icon svg { transform: rotate(-45deg); }

.feature-icon svg { transition: transform 0.3s; width: 22px; height: 22px; }

.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bone);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ash);
}

/* ----- Tab: PvP & Eventos ----- */
.pvp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pvp-card {
  background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-deep) 100%);
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.pvp-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}

.pvp-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(139, 26, 26, 0.2), transparent 70%);
  pointer-events: none;
}

.pvp-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.pvp-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--blood-bright);
  background: rgba(139, 26, 26, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blood-bright);
}

.pvp-card-icon svg { width: 22px; height: 22px; }

.pvp-card-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bone);
  text-transform: uppercase;
}

.pvp-card-when {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.pvp-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ash);
}

/* ----- Tab: Economía ----- */
.eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.eco-block {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 28px 32px;
}

.eco-block h3 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eco-block h3 svg { width: 18px; height: 18px; }

.eco-list {
  list-style: none;
}

.eco-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--ash);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.eco-list li:last-child { border-bottom: none; }

.eco-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 10px;
  margin-top: 5px;
}

.eco-list li strong { color: var(--gold-bright); font-weight: 500; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .rates-grid { grid-template-columns: repeat(2, 1fr); }
  .rate-card:nth-child(2n) { border-right: none; }
  .rate-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 24px; }
  .steps-grid::before { display: none; }
  .connection-grid { grid-template-columns: repeat(2, 1fr); }
  .pvp-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr; gap: 20px; }
  .status-cluster { gap: 18px; }
  .hero-page, .guia-page, .features-page {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  :root { --header-h: 64px; --status-h: 0px; }
  .status-cluster { gap: 14px; }
  .rates-grid { grid-template-columns: 1fr; }
  .rate-card { border-right: none !important; border-bottom: 1px solid var(--line); }
  .rate-card:last-child { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 56px; }
  .connection-grid { grid-template-columns: 1fr 1fr; }
  .nav-right { gap: 8px; }
  .lang-btn { padding: 8px 10px; }
  .rate-value { font-size: 52px; }
  .hero-meta { gap: 24px; }
}

/* Toast (copied feedback) */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-panel);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: 12px 24px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  padding: 56px 0 28px;
  border-top: 1px solid var(--line-soft);
  background: #07060a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-col h5 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand-row img { width: 32px; height: 32px; }

.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ash);
  font-size: 15px;
  line-height: 1.5;
  max-width: 260px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ash);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-list a:hover { color: var(--gold-bright); }

.footer-discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(88, 101, 242, 0.05);
  color: var(--bone);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.footer-discord:hover {
  border-color: #5865f2;
  background: rgba(88, 101, 242, 0.12);
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--smoke);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: var(--gold-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ============================================
   MOBILE MENU TOGGLE (hamburguesa)
   ============================================ */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.25s;
}

.menu-toggle:hover { border-color: var(--gold-dim); }

.menu-toggle svg { width: 20px; height: 20px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle.is-open .icon-open { display: none; }
.menu-toggle.is-open .icon-close { display: block; }

@media (max-width: 1024px) {
  .menu-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(7, 6, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 32px 24px;
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 90;
  }

  .nav-links.is-open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 13px;
  }

  .nav-links a::after { display: none; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================
   FEATURES — TABS NUEVAS (HighLude / Sistemas / NPC)
   ============================================ */

/* ---- Lore / Manifesto block ---- */
.lore-block {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
  padding: 48px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lore-block::before,
.lore-block::after {
  content: '✦';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-dim);
  font-size: 14px;
  background: var(--bg);
  padding: 0 16px;
}
.lore-block::before { top: -8px; }
.lore-block::after  { bottom: -8px; }

.lore-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lore-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 0.06em;
  color: var(--bone);
  margin-bottom: 18px;
  line-height: 1.1;
}

.lore-title .accent {
  color: var(--gold-bright);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.lore-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--ash);
  line-height: 1.7;
  font-weight: 400;
}

.lore-text strong { color: var(--bone); font-weight: 600; }
.lore-text em { color: var(--gold); font-style: italic; }

/* ---- Removed list (qué hemos eliminado) ---- */
.removed-section { margin-top: 56px; }

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--blood-bright);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--bone);
}

.removed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.removed-grid-wide {
  grid-template-columns: 1fr;
}

.removed-item {
  position: relative;
  padding: 28px 28px 28px 56px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.04), transparent);
  transition: all 0.25s ease;
}

.removed-item-wide {
  padding: 36px 36px 36px 64px;
}

.removed-item::before {
  content: '✕';
  position: absolute;
  left: 22px;
  top: 26px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--blood-bright);
  border: 1px solid var(--blood-deep);
  background: rgba(139, 26, 26, 0.1);
  border-radius: 50%;
}

.removed-item:hover {
  border-color: var(--blood-deep);
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.08), transparent);
}

.removed-item-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--bone);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.removed-item-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--ash);
  line-height: 1.6;
}

.removed-item-desc em { color: var(--gold); font-style: italic; }

/* Sub-grupos de skills dentro de un removed-item-wide */
.skill-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.skill-group {
  padding: 20px 24px;
  background: rgba(7, 6, 10, 0.45);
  border-left: 2px solid var(--blood-deep);
}

.skill-group-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.skill-group ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.skill-group ul li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--bone);
  padding: 4px 0 4px 18px;
  position: relative;
  letter-spacing: 0.02em;
}

.skill-group ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--blood-bright);
  font-size: 11px;
}

.skill-group ul li strong { color: var(--bone); font-weight: 500; }

.skill-group-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--ash);
  line-height: 1.6;
  margin: 0;
}

.skill-group-note em { color: var(--gold); font-style: italic; }

/* ---- Sistemas únicos cards ---- */
.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.system-card {
  position: relative;
  padding: 40px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 12, 20, 0.6), rgba(7, 6, 10, 0.3));
  overflow: hidden;
  transition: all 0.3s ease;
}

.system-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.5;
}

.system-card:hover {
  border-color: var(--gold-dim);
  background: linear-gradient(180deg, rgba(15, 12, 20, 0.8), rgba(7, 6, 10, 0.5));
}

.system-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid var(--gold-dim);
  background: rgba(201, 166, 97, 0.06);
}

.system-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--bone);
  margin-bottom: 8px;
}

.system-name .system-suffix {
  color: var(--blood-bright);
  font-weight: 800;
}

.system-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 22px;
}

.system-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 22px;
}

.system-desc strong { color: var(--bone); font-weight: 600; }
.system-desc em { color: var(--gold); font-style: italic; }

.system-rules {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
}

.system-rules li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--ash);
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.5;
}

.system-rules li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 1px;
  background: var(--gold-dim);
}

.system-rules li.deny::before { background: var(--blood-bright); }
.system-rules li strong { color: var(--bone); }

/* ---- NPC ---- */
.npc-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--ash);
  line-height: 1.7;
}

.npc-intro strong { color: var(--bone); }
.npc-intro em { color: var(--gold); font-style: italic; }

.npc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.npc-card {
  padding: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 12, 20, 0.5), transparent);
  transition: all 0.25s ease;
}

.npc-card:hover { border-color: var(--gold-dim); }

.npc-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dim);
  background: rgba(201, 166, 97, 0.05);
  color: var(--gold-bright);
  margin-bottom: 22px;
}

.npc-card-icon svg { width: 22px; height: 22px; }

.npc-card-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.12em;
  color: var(--bone);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.npc-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--ash);
  line-height: 1.6;
  margin-bottom: 18px;
}

.npc-card-desc strong { color: var(--bone); }
.npc-card-desc em { color: var(--gold); font-style: italic; }

.npc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.npc-stat-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.26em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.npc-stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: var(--bone);
  font-weight: 500;
}

.npc-stat-value .accent { color: var(--gold-bright); }

@media (max-width: 768px) {
  .system-grid, .npc-grid { grid-template-columns: 1fr; }
  .skill-list { grid-template-columns: 1fr; }
  .removed-item-wide { padding: 28px 24px 28px 56px; }
  .lore-title { font-size: 32px; }
  .lore-text { font-size: 17px; }
}
 
/* ============================================
   FEATURES — LAYOUT FIJO con scroll interno (v2.3)
   Header global + Status bar fijos
   Sidebar izquierdo fijo · Solo content scrollea
   Sin mini-header, sin sidebar header (minimalista)
   ============================================ */

/* Layout principal: features-page se convierte en container fijo bajo header+status */
.features-page-fixed {
  position: fixed;
  top: calc(var(--header-h) + var(--status-h));
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: transparent;
  z-index: 1;
  overflow: hidden;
}

/* Sidebar fijo (no scrollea con la página, pero scrollea internamente si hay muchas tabs) */
.features-sidebar-fixed {
  background: linear-gradient(180deg, rgba(15, 12, 20, 0.6), rgba(7, 6, 10, 0.4));
  border-right: 1px solid var(--line);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
  padding: 28px 0;
}

.features-sidebar-fixed::-webkit-scrollbar { width: 4px; }
.features-sidebar-fixed::-webkit-scrollbar-thumb { background: var(--gold-dim); }

.features-sidebar-fixed .sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-sidebar-fixed .sidebar-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  text-align: left;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ash);
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.features-sidebar-fixed .sidebar-tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold-dim);
  transition: color 0.2s;
}

.features-sidebar-fixed .sidebar-tab:hover {
  color: var(--bone);
  background: rgba(201, 166, 97, 0.04);
}
.features-sidebar-fixed .sidebar-tab:hover svg { color: var(--gold); }

.features-sidebar-fixed .sidebar-tab.active {
  color: var(--gold-bright);
  background: linear-gradient(90deg, rgba(201, 166, 97, 0.10), transparent);
  border-left-color: var(--gold-bright);
}
.features-sidebar-fixed .sidebar-tab.active svg { color: var(--gold-bright); }

.features-sidebar-fixed .sidebar-tab .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--smoke);
  letter-spacing: 0;
  margin-left: auto;
  font-weight: 400;
}
.features-sidebar-fixed .sidebar-tab.active .num { color: var(--gold-dim); }

.features-content-scroll {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
  padding: 48px 56px 0;
  display: flex;
  flex-direction: column;
}

.features-content-scroll::-webkit-scrollbar { width: 6px; }
.features-content-scroll::-webkit-scrollbar-thumb { background: var(--gold-dim); }
.features-content-scroll::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.features-content-scroll > .content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  flex: 1 0 auto;
  padding-bottom: 80px;
}

/* Tab title block (se renderiza al inicio de cada tab) */
.tab-title-block {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.tab-title-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tab-title-h1 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--bone);
  margin: 0 0 10px;
  line-height: 1.15;
}

.tab-title-h1 .accent {
  color: var(--gold-bright);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.tab-title-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--ash);
  line-height: 1.6; 
  margin: 0;
  font-weight: 400;
}

.tab-title-lead strong { color: var(--bone); font-weight: 600; }
.tab-title-lead em { color: var(--gold); font-style: italic; }

/* Body con layout fijo: sin scroll del body, solo content scrollea */
body.has-fixed-features {
  overflow: hidden;
  height: 100vh;
}
body.has-fixed-features > .site-footer { display: none; }

/* Footer dentro del scroll del content */
.features-content-scroll .site-footer {
  margin-top: auto;
}

/* RESPONSIVE: en móvil/tablet, layout estándar (sin sidebar fijo) */
@media (max-width: 968px) {
  body.has-fixed-features {
    overflow: auto;
    height: auto;
    padding-top: calc(var(--header-h) + var(--status-h));
  }
  body.has-fixed-features > .site-footer { display: block; }

.features-page-fixed {
  position: fixed;
  top: calc(var(--header-h) + var(--status-h));
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
}

  .features-sidebar-fixed {
    border-right: none;
    border-bottom: 1px solid var(--line);
    overflow: visible;
    padding: 12px 0;
  }
  .features-sidebar-fixed .sidebar-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 4px;
    padding: 8px 12px;
  }
  .features-sidebar-fixed .sidebar-tab {
    padding: 12px 16px;
    border-left: none;
    border-bottom: 2px solid transparent;
  }
  .features-sidebar-fixed .sidebar-tab.active {
    border-left: none;
    border-bottom-color: var(--gold-bright);
  }
  .features-sidebar-fixed .sidebar-tab .num { display: none; }

  .features-content-scroll {
    overflow: visible;
    padding: 32px 24px 48px;
  }

  .features-content-scroll .site-footer {
    margin-top: 56px;
  }

  .tab-title-h1 { font-size: 28px; }
  .tab-title-lead { font-size: 16px; }
}

@media (max-width: 480px) {
  .features-sidebar-fixed .sidebar-list { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER ANCHO COMPLETO (dentro de scroll content)
   El footer rompe el max-width del .content-wrap
   y ocupa todo el ancho del .features-content-scroll
   ============================================ */
.features-content-scroll .site-footer-fullwidth {
  margin-left: -56px;   /* contrarresta el padding-left del content-scroll */
  margin-right: -56px;  /* contrarresta el padding-right */
  margin-top: auto;
  padding: 56px 56px 28px;
  border-top: 1px solid var(--line);
  background: #07060a;
}

@media (max-width: 968px) {
  .features-content-scroll .site-footer-fullwidth {
    margin-left: -24px;
    margin-right: -24px;
    padding: 40px 24px 24px;
  }
}

/* ============================================
   SCROLL UNIFICADO (index y guia) — v4
   ============================================
   Replica el comportamiento de features.html:
   - Body sin scroll → header siempre fijo en su sitio (sin desfase)
   - El <main class="page-content-scroll"> es la zona scrolleable
   - Scrollbar dorado pegado a la derecha, idéntico al de features
   - Footer al final del scroll (dentro del main)
   - NO toca .hero-page ni .guia-page (mantienen su layout original)
   ============================================ */

/* Body con scroll unificado: bloquea scroll del body */
body.has-fixed-scroll {
  overflow: hidden;
  height: 100vh;
  /* anulamos el padding-top que añadía .has-fixed-header
     porque ahora la zona scrolleable empieza con su propio top */
  padding-top: 0;
}

/* Zona scrolleable: ocupa desde debajo del header hasta el bottom */
.page-content-scroll {
  position: fixed;
  top: calc(var(--header-h) + var(--status-h));
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
  /* z-index bajo para que header (z:100) siempre quede encima */
  z-index: 1;
}

/* Scrollbar estilizado — clavado al de features */
.page-content-scroll::-webkit-scrollbar {
  width: 6px;
}
.page-content-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.page-content-scroll::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
}
.page-content-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* RESPONSIVE: en móvil/tablet, scroll natural del body */
@media (max-width: 968px) {
  body.has-fixed-scroll {
    overflow: auto;
    height: auto;
    padding-top: calc(var(--header-h) + var(--status-h));
  }
  .page-content-scroll {
    position: static;
    overflow: visible;
  }
}

/* ============================================
   CURSORES TEMÁTICOS L2
   Cursores personalizados de Lineage 2.
   Aplican solo en desktop (móvil/touch los ignora).
   El segundo valor es el fallback si el .cur no carga.
   ============================================ */

/* Cursor por defecto en toda la web */
body {
  cursor: url('/images/cur/l2.cur'), auto;
}

/* Cursor "click" en elementos interactivos */
a,
button,
.btn,
.sidebar-tab,
.lang-btn,
.menu-toggle,
.step-action,
.lang-dropdown button {
  cursor: url('/images/cur/select.cur'), pointer;
}

/* Cursor "ataque" en elementos copiables (IPs, puertos en la guía) */
[data-copy],
.connection-cell {
  cursor: url('/images/cur/attack.cur'), copy;
}

/* Cursor "ayuda" en el botón Discord (es soporte/comunidad) */
.footer-discord {
  cursor: url('/images/cur/help.cur'), help;
}


/* =========================
   LEGAL PAGE
========================= */

.legal-page{
    padding:140px 0 100px;
    position:relative;
}

.legal-header{
    margin-bottom:50px;
    text-align:center;
}

.legal-content{
    max-width:900px;
    margin:0 auto;
    padding:40px;
    border:1px solid rgba(255,255,255,0.06);
    background:rgba(10,10,14,0.72);
    backdrop-filter:blur(10px);
    border-radius:18px;
    box-shadow:0 0 40px rgba(0,0,0,0.35);
}

.legal-content h2{
    margin-top:40px;
    margin-bottom:16px;
    color:#d6b98c;
    font-size:24px;
    font-family:'Cinzel', serif;
}

.legal-content p,
.legal-content li{
    color:rgba(255,255,255,0.82);
    line-height:1.9;
    font-size:15px;
}

.legal-content ul{
    padding-left:22px;
}

.legal-content a{
    color:#d6b98c;
    text-decoration:none;
}

.legal-content a:hover{
    text-decoration:underline;
}



.vote-hero {
  padding: 5rem 0 3rem;
  text-align: center;
}
.vote-hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blood-red, #8b0000);
  margin-bottom: 1rem;
}
.vote-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.vote-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  opacity: 0.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.vote-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 0 0 4rem;
}
.vote-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.vote-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(139,0,0,0.2);
  border: 1px solid rgba(139,0,0,0.4);
  color: #c0392b;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.vote-step h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
}
.vote-step p {
  font-size: 0.85rem;
  opacity: 0.6;
  margin: 0;
  line-height: 1.5;
}

.vote-reward-box {
  background: rgba(139,0,0,0.08);
  border: 1px solid rgba(139,0,0,0.25);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin: 0 0 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.vote-reward-icon {
  font-size: 2.5rem;
}
.vote-reward-text h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: #c0392b;
}
.vote-reward-text p {
  font-size: 0.875rem;
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
}
.vote-reward-cmd {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  color: #e8c49a;
  white-space: nowrap;
}

.vote-section-title {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin: 0 0 1.5rem;
}
.vote-sites {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 0 0 5rem;
}
.vote-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vote-card:hover {
  border-color: rgba(139,0,0,0.4);
  transform: translateY(-2px);
}
.vote-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.vote-card-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vote-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vote-card-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
}
.vote-card-desc {
  font-size: 0.78rem;
  opacity: 0.5;
  margin: 0;
}
.vote-card-body {
  font-size: 0.85rem;
  opacity: 0.65;
  line-height: 1.55;
  flex: 1;
}
.vote-card-reward {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  background: rgba(255,215,0,0.07);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  color: #e8c49a;
}
.vote-btn {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(139,0,0,0.15);
  border: 1px solid rgba(139,0,0,0.35);
  color: #e05555;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.vote-btn:hover {
  background: rgba(139,0,0,0.3);
  border-color: rgba(139,0,0,0.6);
  color: #ff6b6b;
}

.vote-faq {
  margin: 0 0 5rem;
}
.vote-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
}
.vote-faq-q {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.vote-faq-a {
  font-size: 0.875rem;
  opacity: 0.6;
  margin: 0;
  line-height: 1.6;
}
