/* ══ SERVERS GRID ══ */
.servers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.server-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans);
}
.server-card:hover {
  border-color: rgba(255,106,0,0.5);
  transform: translateY(-2px);
}
.server-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,106,0,0.04);
}
.server-icon { font-size: 1.5rem; flex-shrink: 0; }
.server-card-header > div { flex: 1; }
.server-card-header h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.server-card-header p {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.1rem;
}
.server-modes { display: flex; gap: 0.4rem; flex-shrink: 0; }
.mode-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  text-transform: uppercase;
}
.mode-badge.pve { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.mode-badge.pvp { background: rgba(255,61,0,0.15); color: var(--ember); border: 1px solid rgba(255,61,0,0.3); }
.server-ips { padding: 0.75rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.server-ip-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ip-platform {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  width: 56px;
  flex-shrink: 0;
}
.server-ip-row code {
  flex: 1;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  color: var(--fire);
  background: rgba(255,106,0,0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  border: 1px solid rgba(255,106,0,0.15);
}
.copy-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.3rem 0.45rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.copy-btn:hover { border-color: var(--fire); color: var(--fire); }

/* ══ SCHEDULE ══ */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.schedule-card {
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid;
}
.pve-card {
  background: rgba(34,197,94,0.05);
  border-color: rgba(34,197,94,0.2);
}
.pvp-card {
  background: rgba(255,61,0,0.05);
  border-color: rgba(255,61,0,0.2);
}
.schedule-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.schedule-icon { font-size: 2rem; }
.schedule-header h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: var(--white);
}
.pve-card .schedule-header h3 { color: #22c55e; }
.pvp-card .schedule-header h3 { color: var(--fire); }
.schedule-header p { font-size: 0.82rem; color: var(--text-dim); margin-top: 0.2rem; }
.schedule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.schedule-list li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.schedule-list strong { color: var(--white); }

/* ══ TIMEZONE ══ */
.timezone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.timezone-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color var(--trans);
}
.timezone-card:hover { border-color: var(--fire); }
.tz-flag { font-size: 1.8rem; flex-shrink: 0; }
.tz-info { flex: 1; }
.tz-info strong { display: block; font-size: 0.85rem; color: var(--white); }
.tz-info span { font-size: 0.72rem; color: var(--text-dim); font-family: 'Share Tech Mono', monospace; }
.tz-time {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--fire);
  text-align: right;
  line-height: 1.5;
}

/* ══ RATES & CONFIG ══ */
.rates-config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.info-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}
.info-panel-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fire);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.rates-list { display: flex; flex-direction: column; gap: 0; }
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 1rem;
}
.rate-row:last-child { border-bottom: none; }
.rate-label { font-size: 0.88rem; color: var(--text); }
.rate-value {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
  flex-shrink: 0;
}


/* ── GALERÍA COMPLETA (comunidad) ── */
.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid-full .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
}
.gallery-grid-full .gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-grid-full .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1), filter 0.6s;
  filter: brightness(0.75) saturate(0.9);
}
.gallery-grid-full .gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1.1);
}

/* ============================================================
   ARK Our Hell — Stylesheet
   Dark survival aesthetic | Cinzel + Exo 2
   ============================================================ */

:root {
  --fire:    #ff6a00;
  --ember:   #ff3d00;
  --gold:    #d4a017;
  --dark:    #080a0f;
  --dark2:   #0d1117;
  --dark3:   #131920;
  --panel:   rgba(13,17,23,0.92);
  --border:  rgba(255,106,0,0.25);
  --text:    #c8cdd6;
  --text-dim:#6b7585;
  --white:   #f0ede8;
  --radius:  6px;
  --trans:   0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Particle canvas */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* All content above canvas */
nav, main, footer { position: relative; z-index: 1; }

/* ── CONTAINER ── */
.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: linear-gradient(180deg, rgba(8,10,15,0.97) 0%, rgba(8,10,15,0) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans), background var(--trans);
}
.navbar.scrolled {
  background: rgba(8,10,15,0.97);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo img { display: block; transition: filter var(--trans); }
.nav-logo:hover img { filter: drop-shadow(0 0 8px var(--fire)); }
.nav-brand {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}
.nav-brand .brand-ark {
  color: var(--white);
  transition: color var(--trans);
}
.nav-brand .brand-hell {
  color: var(--fire);
  transition: color var(--trans);
}
.nav-logo:hover .brand-ark { color: var(--fire); }
.nav-logo:hover .brand-hell { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--fire);
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-discord {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  background: #5865F2 !important;
  color: #fff !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 4px;
  width: auto !important;
  transition: background var(--trans), transform var(--trans) !important;
}
.nav-discord::after { display: none !important; }
.nav-discord:hover { background: #4752c4 !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--trans);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: pointer;
  border: none;
}
.btn-fire {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,106,0,0.35);
}
.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,106,0,0.55);
}
.btn-outline {
  background: transparent;
  color: var(--fire);
  border: 2px solid var(--fire);
}
.btn-outline:hover {
  background: var(--fire);
  color: #fff;
  transform: translateY(-2px);
}

/* ── SECTION HEADER ── */
.section-tag {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fire);
  border: 1px solid var(--border);
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.section-title span { color: var(--fire); }
.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), transparent);
  margin: 1.2rem 0;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(255,106,0,0.06) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 9rem 0 5rem;
}
.hero-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--fire);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--fire);
}
.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  max-width: 780px;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 60px rgba(255,106,0,0.15);
}
.hero-title .fire-word {
  color: var(--fire);
  position: relative;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero-badge strong {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.6rem;
  color: var(--fire);
  line-height: 1;
}
.hero-badge span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { color: var(--fire); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── ABOUT SECTION ── */
.section { padding: 6rem 0; }
.section.alt { background: var(--dark2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: 8px;
  display: block;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.about-img-badge .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.about-img-badge p { font-size: 0.82rem; color: var(--text); }
.about-img-badge strong { display: block; color: var(--white); font-size: 0.9rem; }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--ember));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(255,106,0,0.5); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,106,0,0.1);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.feature-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feature-card p { font-size: 0.9rem; line-height: 1.65; color: var(--text-dim); }

/* ── MAPS SECTION ── */
.maps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.map-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: var(--trans);
  cursor: default;
}
.map-card:hover {
  border-color: var(--fire);
  background: rgba(255,106,0,0.05);
  transform: translateY(-3px);
}
.map-card .map-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.map-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.map-card p { font-size: 0.78rem; color: var(--text-dim); }
.map-badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-top: 0.6rem;
  background: rgba(255,106,0,0.15);
  color: var(--fire);
  border: 1px solid rgba(255,106,0,0.3);
}

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin: 4rem 0;
}
.stat-item {
  background: var(--dark2);
  padding: 2rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.4rem;
  color: var(--fire);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1), filter 0.6s;
  filter: brightness(0.7) saturate(0.8);
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(0.9) saturate(1.1); }
.gallery-item.tall { grid-row: span 2; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: 'Cinzel Decorative', serif;
  font-size: 4rem;
  color: var(--fire);
  opacity: 0.15;
  line-height: 1;
}
.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-card blockquote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-author img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  object-fit: cover;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--white); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-dim); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 9rem 0 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,106,0,0.1) 0%, transparent 70%),
    var(--dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ff6a00' stroke-width='0.3' stroke-opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p { font-size: 1.1rem; color: var(--text-dim); max-width: 560px; margin: 0 auto; }

/* ── ACCORDION ── */
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  transition: color var(--trans);
  gap: 1rem;
}
.accordion-btn:hover { color: var(--fire); }
.accordion-btn svg {
  flex-shrink: 0;
  transition: transform var(--trans);
  color: var(--fire);
}
.accordion-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ── CTA BAND ── */
.cta-band {
  background:
    linear-gradient(135deg, rgba(255,106,0,0.12) 0%, rgba(255,61,0,0.06) 100%),
    var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-band p { color: var(--text-dim); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--fire), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; color: var(--text-dim); margin: 1rem 0; line-height: 1.6; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-dim);
  transition: var(--trans);
}
.footer-social a:hover { border-color: var(--fire); color: var(--fire); }
.footer-nav h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fire);
  margin-bottom: 1.25rem;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--white); }
.footer-contact h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fire);
  margin-bottom: 1.25rem;
}
.footer-contact a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; }
.footer-contact a:hover { color: var(--white); }
.footer-newsletter { margin-top: 1.25rem; }
.footer-newsletter p { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 0.6rem; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 0.6rem 0.9rem;
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--trans);
}
.newsletter-form input:focus { border-color: var(--fire); }
.newsletter-form button {
  background: var(--fire);
  color: #fff;
  border: none;
  padding: 0 1rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background var(--trans);
}
.newsletter-form button:hover { background: var(--ember); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-dim); }
.footer-tags { display: flex; gap: 0.5rem; }
.footer-tags span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-dim);
}

/* ── FADE IN ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 1024px) {
  .features-grid     { grid-template-columns: 1fr 1fr; }
  .maps-grid         { grid-template-columns: repeat(2, 1fr); }
  .stats-row         { grid-template-columns: 1fr 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .servers-grid      { grid-template-columns: 1fr; }
  .rates-config-grid { grid-template-columns: 1fr !important; }
  .timezone-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  .container { width: 100%; padding: 0 1.25rem; box-sizing: border-box; }
  .section { padding: 4rem 0; }

  /* Navbar */
  .navbar { padding: 0 1rem; }
  .nav-inner { height: 64px; }
  .nav-brand { font-size: 0.78rem; }
  .nav-toggle { display: flex !important; flex-shrink: 0; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(8,10,15,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    z-index: 100;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    visibility: hidden;
  }
  .nav-links.open { transform: translateY(0) !important; visibility: visible !important; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.9rem 1.5rem; font-size: 1rem; color: var(--text); width: 100%; box-sizing: border-box; }
  .nav-links a::after { display: none; }
  .nav-links .nav-discord { margin: 0.75rem 1.5rem 0 !important; width: calc(100% - 3rem) !important; justify-content: center !important; box-sizing: border-box !important; }

  /* Hero */
  .hero-content { padding: 7rem 0 4rem; }
  .hero-cta { flex-direction: column; gap: 0.75rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-badges { gap: 1.25rem; flex-wrap: wrap; }

  /* Layouts */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .page-hero { padding: 7rem 0 3rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-grid-full { grid-template-columns: 1fr 1fr; }
  .gallery-grid-full .gallery-item.tall { grid-row: span 1; }

  /* Características - todo 1 columna */
  .servers-grid { grid-template-columns: 1fr !important; }
  .maps-grid { grid-template-columns: 1fr !important; }
  .schedule-grid { grid-template-columns: 1fr; }
  .timezone-grid { grid-template-columns: 1fr !important; }
  .rates-config-grid { grid-template-columns: 1fr !important; }

  /* IPs completas */
  .server-ip-row code { font-size: 0.75rem; white-space: nowrap; overflow: visible; text-overflow: clip; }
  .server-card-header { flex-wrap: wrap; }
  .server-modes { margin-left: auto; }

  /* Map cards */
  .map-card { padding: 1rem; }

  /* Timezone */
  .timezone-card { flex-wrap: wrap; gap: 0.5rem; }
  .tz-time { width: 100%; text-align: left; font-size: 0.7rem; }

  /* Info panels */
  .info-panel { padding: 1.25rem; }

  /* Footer compacto */
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 1.5rem !important; margin-bottom: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { height: 48px; }
  .footer-brand p { font-size: 0.82rem; margin: 0.5rem 0; }
  .footer-contact { grid-column: 1 / -1; }

  /* Menos padding en mobile */
  .cta-band { padding: 3rem 0; }
  .cta-band h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section { padding: 3rem 0; }
  .stats-row { margin: 1.5rem 0; }
}

@media (max-width: 480px) {
  .hero-badges { gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid-full { grid-template-columns: 1fr; }
  .maps-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .schedule-card { padding: 1.25rem; }
  .server-card-header h3 { font-size: 0.85rem; }
}

/* ══ SERVER STATUS WIDGET ══ */
.status-section { background: var(--dark2); }

.status-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.status-total {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}
.status-total strong {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  color: var(--fire);
  line-height: 1;
}
.status-pulse {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-pulse.online {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: statusPulse 2s infinite;
}
.status-pulse.offline { background: #6b7280; }
@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.status-meta { font-size: 0.88rem; color: var(--text-dim); }
.status-updated { font-family: 'Share Tech Mono', monospace; font-size: 0.72rem; color: var(--text-dim); }

.status-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.status-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  transition: border-color var(--trans);
}
.status-card:hover { border-color: rgba(255,106,0,0.4); }
.status-card.server-offline { opacity: 0.5; }

.status-card-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}
.status-card-header strong {
  flex: 1;
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.online  { background: #22c55e; box-shadow: 0 0 4px #22c55e; }
.status-dot.offline { background: #6b7280; }

.status-card-players {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.6rem;
}
.status-card-players span:first-child {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.4rem;
  color: var(--fire);
  line-height: 1;
}
.status-slash { color: var(--text-dim); font-size: 0.8rem; }
.status-card-players #maxplayers- { font-size: 0.8rem; color: var(--text-dim); }
.status-label { font-size: 0.7rem; color: var(--text-dim); margin-left: 0.2rem; }

.status-bar-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  height: 4px;
  overflow: hidden;
}
.status-bar {
  height: 100%;
  border-radius: 2px;
  transition: width 0.8s ease, background 0.8s ease;
}

@media (max-width: 1024px) {
  .status-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .status-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .status-summary { flex-direction: column; gap: 0.75rem; text-align: center; }
}
@media (max-width: 480px) {
  .status-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ── Hero players live dot ── */
.hero-players-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #6b7280;
  margin-right: 0.4rem;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.hero-players-dot.online {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: statusPulse 2s infinite;
}

/* ── Hero players counter size ── */
#heroPlayers {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.6rem;
  color: var(--fire);
  line-height: 1;
}

/* ── Hero live players badge ── */
.hero-badge-live { position: relative; }
.hero-live-number {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}
#heroPlayers {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.8rem;
  color: var(--fire);
  line-height: 1;
  text-shadow: 0 0 30px rgba(255,106,0,0.8), 0 0 60px rgba(255,106,0,0.3);
}
.hero-live-label {
  font-size: 0.72rem !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #22c55e !important;
  font-weight: 700;
  display: block;
}
.hero-players-dot {
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #6b7280;
  flex-shrink: 0;
}
.hero-players-dot.online {
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e, 0 0 16px rgba(34,197,94,0.4);
  animation: statusPulse 2s infinite;
}

/* ── Map card player counter ── */
.map-players {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
  font-size: 0.78rem;
}
.map-players-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6b7280;
  flex-shrink: 0;
}
.map-players-dot.online  { background: #22c55e; box-shadow: 0 0 5px #22c55e; }
.map-players-dot.offline { background: #6b7280; }
.map-players-count {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.9rem;
  color: var(--fire);
  line-height: 1;
}
.map-players-label { color: var(--text-dim); font-size: 0.75rem; }

/* ── Server card online badge ── */
.server-online-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.server-online-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.server-online-dot.online {
  background: #22c55e;
  box-shadow: 0 0 5px #22c55e;
  animation: statusPulse 2s infinite;
}
.server-online-dot.offline { background: #4b5563; }
.server-online-count {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  color: var(--fire);
  line-height: 1;
}
.server-online-max {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.server-online-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* ── Server card player count ── */
.server-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
}
.server-player-count {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,106,0,0.08);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}
.spc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.spc-dot.online  { background: #22c55e; box-shadow: 0 0 5px #22c55e; }
.spc-dot.offline { background: #6b7280; }
.spc-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: var(--fire);
  font-weight: 700;
}
.spc-max {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-dim);
}