:root {
  --bg: #07111d;
  --bg2: #0a1728;
  --panel: rgba(12, 23, 41, 0.84);
  --panel-soft: rgba(17, 29, 51, 0.78);
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(241, 198, 109, 0.22);
  --text: #eef4ff;
  --muted: #b5c6e1;
  --gold: #f1c66d;
  --gold-light: #ffefb0;
  --blue: #65b8ff;
  --blue-light: #b9ebff;
  --violet: #8b7cff;
  --success: #69e0ae;
  --danger: #ff8ea3;
  --shadow: 0 24px 65px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(91,132,221,.19), transparent 28%),
    linear-gradient(180deg, #091321 0%, #07111d 50%, #050c15 100%);
}
.skyfx { position: fixed; inset: 0; pointer-events: none; }
.skyfx-a { background: radial-gradient(circle at 15% 20%, rgba(101,184,255,.08), transparent 22%); }
.skyfx-b { background: radial-gradient(circle at 85% 18%, rgba(241,198,109,.09), transparent 18%); }
.skyfx-c { background: radial-gradient(circle at 70% 68%, rgba(139,124,255,.08), transparent 25%); }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topline {
  position: relative;
  z-index: 35;
  background: rgba(4, 9, 16, .82);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topline-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  color: #cfdcf2;
  font-size: .83rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(6, 12, 22, 0.56);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  padding: 16px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13,24,43,.86), rgba(9,17,31,.9));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}
.brand-logo-banner,
.footer-logo-banner {
  display: block;
  width: min(330px, 48vw);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.nav-links a,
.footer-links a,
.inline-link {
  text-decoration: none;
  color: var(--muted);
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.nav-links a:hover,
.footer-links a:hover,
.inline-link:hover {
  color: var(--text);
}
.nav-links a:hover {
  border-color: rgba(241,198,109,.24);
  background: rgba(241,198,109,.08);
}
.main-content { position: relative; z-index: 1; padding: 34px 0 64px; }
.panel, .panel-soft { border: 1px solid var(--line); box-shadow: var(--shadow); }
.panel {
  background: linear-gradient(180deg, rgba(13,24,43,.92), rgba(9,17,31,.94));
  border-radius: 30px;
}
.panel-soft {
  background: linear-gradient(180deg, rgba(16,29,51,.86), rgba(12,22,38,.86));
  border-radius: 24px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(241,198,109,.09);
  color: #ffe5a4;
  border: 1px solid rgba(241,198,109,.21);
  font-size: .88rem;
}
.pill.small { font-size: .82rem; padding: 8px 13px; }
.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  padding: 38px;
}
.hero-copy h1,
.register-copy h1,
.status-page h1 {
  margin: 16px 0 14px;
  font-family: 'Cinzel', serif;
  line-height: 1.08;
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.hero-copy h1 span,
.register-copy h1 span,
.status-page h1 span { color: var(--gold-light); }
.lead,
.hero-card p,
.section-head p,
.feature p,
.showcase-copy p,
.info-tile p,
.faq-item p,
.register-copy p,
.status-page p,
.site-footer p,
.hero-card-copy p {
  color: var(--muted);
  line-height: 1.75;
}
.hero-actions,
.hero-counters,
.cta-actions,
.side-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions { margin-top: 24px; }
.hero-counters { margin-top: 24px; }
.counter-box {
  min-width: 138px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.counter-box span { display: block; font-size: .83rem; color: var(--muted); margin-bottom: 4px; }
.counter-box strong { font-size: 1rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 15px;
  font-weight: 800;
  transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  color: #241701;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 14px 28px rgba(241,198,109,.2);
}
.btn-blue {
  color: #03111f;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  box-shadow: 0 14px 28px rgba(101,184,255,.2);
}
.btn-soft {
  color: var(--text);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
}
.btn-block { width: 100%; }
.hero-with-loading {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,10,18,.95) 0%, rgba(8,15,28,.88) 46%, rgba(8,15,28,.78) 100%),
    url('assets/loading01.jpg') center/cover no-repeat;
}
.hero-with-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 15%, rgba(241,198,109,.18), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(101,184,255,.16), transparent 24%);
  pointer-events: none;
}
.hero-with-loading > * { position: relative; z-index: 1; }
.hero-banner-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(8,16,30,.72);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.banner-stage {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.hero-banner-logo {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.hero-card-copy h3 { margin: 0; font-family: 'Cinzel', serif; font-size: 1.45rem; }
.quick-access-bar {
  margin-top: 22px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.quick-access-bar a {
  text-decoration: none;
  color: var(--text);
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.quick-access-bar strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Cinzel', serif;
}
.quick-access-bar span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
}
.section-block { margin-top: 28px; }
.section-head { margin-bottom: 16px; }
.section-head.center { text-align: center; }
.section-head h2,
.showcase-copy h2,
.cta-band h2 {
  font-family: 'Cinzel', serif;
  margin: 12px 0 10px;
}
.cards-grid { display: grid; gap: 18px; }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.cards-grid.two { grid-template-columns: repeat(2, 1fr); }
.feature,
.faq-item,
.info-tile { padding: 24px; }
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 1.15rem;
  background: linear-gradient(145deg, rgba(241,198,109,.15), rgba(101,184,255,.12));
  border: 1px solid var(--line-strong);
  color: #fff1c7;
}
.gallery-section {
  margin-top: 28px;
  padding: 30px;
  overflow: hidden;
}
.loading-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.loading-gallery figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
}
.loading-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .22s ease;
}
.loading-gallery figure:hover img { transform: scale(1.04); }
.loading-gallery figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: .92rem;
}
.showcase {
  margin-top: 28px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}
.feature-points { display: grid; gap: 14px; margin-top: 20px; }
.feature-points div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.feature-points strong { display: block; margin-bottom: 4px; }
.feature-points span { color: var(--muted); font-size: .95rem; }
.showcase-side { display: grid; gap: 16px; }
.image-stack {
  position: relative;
  min-height: 360px;
}
.image-stack img {
  position: absolute;
  width: 76%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 38px rgba(0,0,0,.32);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.image-stack img:first-child { top: 0; left: 0; transform: rotate(-3deg); }
.image-stack img:last-child { right: 0; bottom: 0; transform: rotate(4deg); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cta-band {
  margin-top: 28px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-loading {
  background:
    linear-gradient(90deg, rgba(8,15,28,.92), rgba(8,15,28,.86)),
    url('assets/loading00.jpg') center/cover no-repeat;
}
.register-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  padding: 32px;
}
.side-links { flex-direction: column; align-items: flex-start; margin-top: 18px; }
.register-form-card { padding: 24px; }
.form-row { margin-bottom: 16px; }
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-weight: 600; margin-bottom: 8px; }
input, select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  outline: none;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  color: var(--text);
}
input:focus, select:focus { border-color: rgba(241,198,109,.32); box-shadow: 0 0 0 4px rgba(241,198,109,.08); }
option { color: #111; }
.alert {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  border: 1px solid transparent;
}
.alert.success { background: rgba(105,224,174,.12); color: #d0ffea; border-color: rgba(105,224,174,.24); }
.alert.error { background: rgba(255,142,163,.12); color: #ffd6de; border-color: rgba(255,142,163,.24); }
.status-page {
  text-align: center;
  padding: 34px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 14px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
}
.status-pill.online { background: rgba(105,224,174,.12); color: #d0ffea; border: 1px solid rgba(105,224,174,.24); }
.status-pill.offline { background: rgba(255,142,163,.12); color: #ffd6de; border: 1px solid rgba(255,142,163,.24); }
.status-dot { width: 10px; height: 10px; border-radius: 999px; background: currentColor; box-shadow: 0 0 10px currentColor; }
.centered { justify-content: center; }
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(6, 12, 22, 0.74);
  backdrop-filter: blur(12px);
}
.footer-grid {
  padding: 26px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.footer-brand-banner { margin-bottom: 10px; }
.footer-heading { font-family: 'Cinzel', serif; margin-bottom: 10px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 18px; }
@media (max-width: 1080px) {
  .quick-access-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .topline-wrap,
  .nav-wrap,
  .hero-wrap,
  .showcase,
  .register-hero,
  .cards-grid.three,
  .cards-grid.two,
  .faq-grid,
  .footer-grid,
  .form-split,
  .cta-band {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .loading-gallery { grid-template-columns: repeat(2, 1fr); }
  .image-stack { min-height: auto; display: grid; gap: 14px; }
  .image-stack img { position: static; width: 100%; transform: none !important; }
  .nav-wrap { align-items: center; }
  .nav-links { justify-content: center; }
  .brand-logo-banner,
  .footer-logo-banner { width: min(330px, 86vw); }
}
@media (max-width: 560px) {
  .loading-gallery,
  .quick-access-bar { grid-template-columns: 1fr; }
  .topline-wrap { font-size: .78rem; }
}


/* Secciones adicionales MoonshineRO */
.seo-about {
  margin-top: 28px;
  padding: 28px 30px;
}
.seo-about .section-head {
  max-width: 920px;
}
.seo-about p + p {
  margin-top: 10px;
}
.guide-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
  word-break: break-word;
}
.muted-text {
  color: var(--muted);
  line-height: 1.7;
}
