/* ============================================
   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-online: #2ea84a;
  --green-glow: #4ade80;
  --header-h: 72px;
  --status-h: 44px;
}

* { 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; }

/* ===== STATUS BAR (visible on every page) ===== */
.status-bar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: var(--status-h);
  z-index: 99;
  background: linear-gradient(180deg, rgba(7, 6, 10, 0.92), rgba(12, 10, 16, 0.86));
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
}

.status-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.status-cluster {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--smoke);
}

.status-item .lbl {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  color: var(--smoke);
}

.status-item .val { color: var(--bone); font-weight: 500; }
.status-item .val.gold { color: var(--gold-bright); }
.status-item .val.blood { color: var(--blood-bright); }

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border: 1px solid var(--green-online);
  background: rgba(46, 168, 74, 0.08);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-glow);
  font-weight: 500;
}

.live-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-glow);
  box-shadow: 0 0 8px var(--green-glow);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.live-pill.offline {
  border-color: var(--blood-deep);
  background: rgba(139, 26, 26, 0.1);
  color: var(--blood-bright);
}
.live-pill.offline .dot {
  background: var(--blood-bright);
  box-shadow: 0 0 8px var(--blood-bright);
}

/* BETA badge variant inside status bar */
.live-pill.beta {
  border-color: var(--blood-bright);
  background: rgba(139, 26, 26, 0.14);
  color: var(--blood-bright);
  letter-spacing: 0.22em;
  animation: pulse-glow 2.4s ease-in-out infinite;
}
.live-pill.beta .dot {
  background: var(--blood-bright);
  box-shadow: 0 0 8px var(--blood-bright);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}

.status-bar .copyable {
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}

.status-bar .copyable:hover { color: var(--gold-bright); }
.status-bar .copyable:hover::after {
  content: 'Click para copiar';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 4px 10px;
  font-size: 10px;
  white-space: nowrap;
  color: var(--ash);
  z-index: 1000;
}

.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;
}

.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-ornament {
  position: absolute;
  width: 100%;
  z-index: 1;
  opacity: 0.45;
  color: var(--gold-dim);
  pointer-events: none;
}

.hero-ornament-top { top: 80px; }
.hero-ornament-bottom { bottom: 30px; transform: rotate(180deg); }

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border: 1px solid var(--blood-bright);
  background: rgba(139, 26, 26, 0.12);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--blood-bright);
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: pulse-glow 2.4s ease-in-out infinite;
}

.beta-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blood-bright);
  box-shadow: 0 0 12px var(--blood-bright);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@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-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-style: italic;
  font-size: clamp(26px, 3.4vw, 44px);
  color: var(--gold-bright);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(201, 166, 97, 0.25);
}

.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;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 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;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin: 0 auto 40px;
  width: fit-content;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--ash);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  padding: 14px 28px;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tab-btn:hover { color: var(--gold-bright); }

.tab-btn.active { color: var(--gold-bright); }

.tab-btn.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.tab-btn svg { width: 14px; height: 14px; }

.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: 64px; }
  .status-bar-inner { flex-direction: column; align-items: flex-start; gap: 6px; padding: 8px 0; }
  .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; }
  .tabs-nav { flex-wrap: wrap; }
  .tab-btn { padding: 10px 16px; font-size: 11px; }
}

/* 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);
}
