:root {
  --bg: #070a12;
  --bg-2: #0c1120;
  --surface: #111827;
  --surface-2: #161f33;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf6;
  --muted: #93a1b8;
  --primary: #6d5efc;
  --primary-2: #a855f7;
  --accent: #22d3ee;
  --gold: #f5b942;
  --radius: 16px;
  --shadow: 0 20px 50px -20px rgba(109, 94, 252, 0.45);
  --maxw: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 54px; height: 54px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--primary);
  animation: spin .8s linear infinite;
}
.loader-text {
  font-family: "Orbitron", sans-serif; font-weight: 800; letter-spacing: 3px;
  font-size: 15px; color: var(--muted);
}
.loader-text span { color: var(--primary); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 10, 18, 0.8);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-family: "Orbitron", sans-serif; font-weight: 900; color: #fff;
  box-shadow: var(--shadow);
}
.brand-logo { width: 38px; height: 38px; border-radius: 9px; object-fit: contain; display: block; }
.brand-name { font-family: "Orbitron", sans-serif; font-size: 15px; letter-spacing: 1px; }
.brand-name em { color: var(--primary); font-style: normal; }

.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; gap: 10px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: 10px; font-weight: 600; font-size: 14px;
  cursor: pointer; border: 1px solid transparent; transition: transform .15s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; box-shadow: var(--shadow);
}
.btn-ghost { background: rgba(255,255,255,.04); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.09); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn.sm { padding: 8px 14px; font-size: 13px; }
.btn.full { width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 160px 0 90px; text-align: center; overflow: hidden; }
.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; pointer-events: none;
  background:
    radial-gradient(circle at 50% 40%, rgba(109,94,252,.35), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(34,211,238,.18), transparent 55%);
  filter: blur(20px);
  animation: auroraPulse 8s ease-in-out infinite;
}
@keyframes auroraPulse {
  0%, 100% { opacity: .85; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

/* Animated grid floor */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image:
    linear-gradient(rgba(109,94,252,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,94,252,.12) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 75%);
  animation: gridScroll 20s linear infinite;
}
@keyframes gridScroll {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 46px, 46px 0; }
}

/* Floating orbs */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(8px);
  mix-blend-mode: screen;
}
.orb-1 {
  width: 120px; height: 120px; top: 22%; left: 14%;
  background: radial-gradient(circle, rgba(109,94,252,.6), transparent 70%);
  animation: float1 11s ease-in-out infinite;
}
.orb-2 {
  width: 90px; height: 90px; top: 30%; right: 12%;
  background: radial-gradient(circle, rgba(34,211,238,.55), transparent 70%);
  animation: float2 9s ease-in-out infinite;
}
.orb-3 {
  width: 70px; height: 70px; bottom: 18%; left: 26%;
  background: radial-gradient(circle, rgba(168,85,247,.5), transparent 70%);
  animation: float1 13s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(24px, -34px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 26px); }
}

.hero-inner { position: relative; z-index: 2; }

/* Staggered entrance */
.hero-inner > * { opacity: 0; animation: heroUp .8s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-inner > .pill { animation-delay: .15s; }
.hero-inner > .hero-title { animation-delay: .3s; }
.hero-inner > .hero-sub { animation-delay: .5s; }
.hero-inner > .hero-cta { animation-delay: .7s; }
.hero-inner > .stats { animation-delay: .9s; }
@keyframes heroUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

.pill {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255,255,255,.03);
  font-size: 13px; color: var(--muted); margin-bottom: 26px;
  animation: pillGlow 3s ease-in-out infinite alternate;
}
@keyframes pillGlow {
  from { box-shadow: 0 0 0 rgba(109,94,252,0); border-color: var(--border); }
  to { box-shadow: 0 0 22px rgba(109,94,252,.35); border-color: rgba(109,94,252,.5); }
}
.hero-title {
  font-family: "Orbitron", sans-serif; font-weight: 800;
  font-size: clamp(40px, 7vw, 78px); line-height: 1.02; letter-spacing: -1px;
}
.grad {
  background: linear-gradient(120deg, var(--primary), var(--accent), var(--primary-2), var(--accent), var(--primary));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 6s linear infinite;
}
@keyframes gradShift {
  from { background-position: 0% 50%; }
  to { background-position: 300% 50%; }
}
.hero-sub { max-width: 620px; margin: 22px auto 0; color: var(--muted); font-size: 18px; }
.hero-sub strong { color: var(--text); }
.hero-cta { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero-cta .btn-primary { position: relative; }
.hero-cta .btn-primary::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(109,94,252,.6); animation: ctaPulse 2.4s ease-out infinite;
}
@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(109,94,252,.5); }
  70% { box-shadow: 0 0 0 16px rgba(109,94,252,0); }
  100% { box-shadow: 0 0 0 0 rgba(109,94,252,0); }
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 760px; margin: 60px auto 0;
}
.stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 14px; transition: transform .2s, border-color .2s;
}
.stat:hover { transform: translateY(-4px); border-color: rgba(109,94,252,.5); }
.stat b { display: block; font-family: "Orbitron", sans-serif; font-size: 28px; color: #fff; }
.stat span { font-size: 13px; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .hero-glow, .hero-grid, .orb, .grad, .pill,
  .hero-cta .btn-primary::after { animation: none !important; }
  .hero-inner > * { opacity: 1; animation: none !important; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700;
  color: var(--primary);
}
.section-head h2 {
  font-family: "Orbitron", sans-serif; font-size: clamp(28px, 4vw, 42px);
  margin: 12px 0 10px; letter-spacing: -.5px;
}
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Grid & cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(109,94,252,.5); box-shadow: var(--shadow); }
.ficon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  font-size: 24px; background: rgba(109,94,252,.12); border: 1px solid rgba(109,94,252,.25);
  margin-bottom: 16px;
}
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-text { order: 2; }
.split-text h2 {
  font-family: "Orbitron", sans-serif; font-size: clamp(26px, 3.5vw, 38px);
  margin: 12px 0 14px; letter-spacing: -.5px;
}
.split-text > p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }

.check-list { list-style: none; margin: 0 0 26px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--text); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.seasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.season-chip {
  aspect-ratio: 1; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px;
  font-family: "Orbitron", sans-serif; font-weight: 700; font-size: 18px; color: var(--text);
  transition: transform .2s, border-color .2s;
}
.season-chip:hover { transform: scale(1.06); border-color: var(--primary); }
.season-chip.hot { color: var(--gold); border-color: rgba(245,185,66,.4); }

/* ---------- Versiones Soportadas ---------- */
.versions-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
.version-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  overflow: hidden;
}
.version-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0; transition: opacity .25s;
}
.version-card:hover { transform: translateY(-4px); border-color: rgba(109,94,252,.5); box-shadow: var(--shadow); }
.version-card:hover::before { opacity: 1; }
.version-card.featured { border-color: var(--primary); box-shadow: var(--shadow); }
.version-card.featured::before { opacity: 1; }

.v-flag {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 999px;
}
.v-top { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.v-num {
  font-family: "Orbitron", sans-serif; font-weight: 800; font-size: 46px;
  color: rgba(255,255,255,.12); line-height: 1;
}
.v-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.v-tags .tag {
  padding: 4px 11px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  background: rgba(109,94,252,.15); border: 1px solid rgba(109,94,252,.4); color: #c9c0ff;
}
.version-card h3 { font-size: 22px; margin: 10px 0 8px; line-height: 1.2; }
.version-card > p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

.v-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.v-meta span {
  font-size: 12px; color: var(--muted); background: rgba(255,255,255,.04);
  border: 1px solid var(--border); border-radius: 8px; padding: 5px 9px;
}
.check-list.mini { gap: 9px; margin-bottom: 18px; }
.check-list.mini li { font-size: 14px; padding-left: 26px; }
.check-list.mini li::before { width: 18px; height: 18px; font-size: 11px; }

.v-actions { margin-top: auto; display: grid; gap: 8px; }

.versions-cta { text-align: center; margin-top: 40px; }

.host-games { gap: 16px; }
.game {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 26px 10px; font-size: 30px; text-align: center;
}
.game span { font-size: 14px; font-family: "Inter", sans-serif; color: var(--muted); font-weight: 600; }
.game-ic { color: var(--primary); display: grid; place-items: center; }
.game-ic svg { width: 34px; height: 34px; }
.game:hover { border-color: var(--accent); transform: translateY(-3px); }
.game:hover .game-ic { color: var(--accent); }

/* ---------- Gallery ---------- */
.gallery { columns: 4; column-gap: 16px; }
.shot {
  display: block; width: 100%; height: auto;
  break-inside: avoid; margin-bottom: 16px; border-radius: 14px;
  border: 1px solid var(--border); overflow: hidden;
  background: var(--surface-2);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.shot:hover {
  transform: translateY(-3px); box-shadow: var(--shadow);
  border-color: rgba(109,94,252,.5);
}

/* ---------- Pricing ---------- */
.pricing { align-items: stretch; }
.pricing-2 { max-width: 760px; margin: 0 auto; }
.price { display: flex; flex-direction: column; position: relative; }
.price h3 { font-size: 18px; color: var(--muted); font-weight: 600; }
.amount { font-family: "Orbitron", sans-serif; font-size: 46px; font-weight: 800; margin: 8px 0 4px; }
.amount .cur { font-size: 16px; color: var(--muted); vertical-align: super; margin-right: 4px; font-family: "Inter"; }
.amount small { font-size: 15px; color: var(--muted); font-weight: 500; font-family: "Inter"; }
.price-desc { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.price .check-list { flex: 1; }
.price .check-list li { font-size: 14px; }
.price.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(109,94,252,.12), var(--surface));
  box-shadow: var(--shadow);
}
.badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--primary); font-size: 22px; font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); padding-bottom: 18px; }

/* ---------- CTA band ---------- */
.cta-band {
  padding: 80px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(109,94,252,.3), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-inner { text-align: center; }
.cta-inner h2 { font-family: "Orbitron", sans-serif; font-size: clamp(26px, 4vw, 40px); }
.cta-inner p { color: var(--muted); font-size: 17px; margin: 12px 0 26px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); padding: 60px 0 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { font-size: 14px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-grid a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 9px; transition: color .2s; }
.footer-grid a:hover { color: var(--text); }
.footer .brand { margin-bottom: 12px; }
.muted { color: var(--muted); font-size: 14px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted);
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 6, 12, 0.72); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; animation: fade .25s ease; }
.modal {
  width: 100%; max-width: 440px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow); animation: pop .28s ease;
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  background: rgba(109, 94, 252, 0.12);
}
.modal-head h3 { font-family: "Orbitron", sans-serif; font-size: 20px; }
.modal-close {
  background: none; border: 0; color: var(--muted); font-size: 26px; cursor: pointer;
  line-height: 1; transition: color .2s;
}
.modal-close:hover { color: var(--text); }
.modal-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.modal-body label { font-size: 14px; font-weight: 600; margin-top: 8px; }
.modal-body input {
  width: 100%; padding: 13px 15px; border-radius: 10px; margin-bottom: 6px;
  background: #eef1fb; border: 1px solid transparent; color: #0c1120; font-size: 15px;
}
.modal-body input:focus { outline: 2px solid var(--primary); }
.modal-body select {
  width: 100%; padding: 13px 15px; border-radius: 10px; margin-bottom: 6px;
  background: #eef1fb; border: 1px solid transparent; color: #0c1120; font-size: 15px; cursor: pointer;
}
.modal-body select:focus { outline: 2px solid var(--primary); }
.modal-body .btn { margin-top: 10px; }
.modal .modal-body { max-height: 82vh; overflow-y: auto; }

/* Captcha */
.captcha-row { display: flex; gap: 10px; align-items: stretch; margin-bottom: 6px; }
#captchaCanvas {
  flex: 1; height: 56px; border-radius: 10px; background: #0c1120;
  border: 1px solid var(--border); user-select: none;
}
.captcha-refresh { margin-top: 0 !important; padding: 0 18px; font-size: 20px; }
.form-error {
  color: #fda4a4; background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.35);
  border-radius: 9px; padding: 9px 12px; font-size: 13px; margin: 4px 0 0;
}
.divider {
  text-align: center; position: relative; margin: 20px 0 6px; color: var(--muted); font-size: 13px;
}
.divider::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border);
}
.divider span { background: var(--surface); padding: 0 12px; position: relative; }

/* ---------- Login con marca Genesis ---------- */
.modal-auth { max-width: 420px; position: relative; }
.auth-close { position: absolute; top: 12px; right: 16px; z-index: 3; }
.auth-head {
  text-align: center; padding: 32px 24px 6px;
  background: radial-gradient(130% 130% at 50% -30%, rgba(109,94,252,.30), transparent 68%);
  border-bottom: 1px solid var(--border);
}
.auth-logo { width: 76px; height: 76px; margin: 0 auto 12px; }
.auth-logo img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(109,94,252,.6));
  animation: authLogoIn .5s ease;
}
@keyframes authLogoIn { from { transform: translateY(-8px) scale(.9); opacity: 0; } to { transform: none; opacity: 1; } }
.auth-head h3 { font-family: "Orbitron", sans-serif; font-size: 22px; letter-spacing: .5px; }
.auth-sub { color: var(--muted); font-size: 13px; margin-top: 5px; }
.auth-body { padding-top: 20px; }

.field { position: relative; margin-bottom: 6px; }
.field input { margin-bottom: 0 !important; padding-left: 42px !important; padding-right: 44px !important; }
.field-ic {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: #7c8598; display: flex; pointer-events: none;
}
.field-ic svg { width: 18px; height: 18px; }
.field input:focus ~ .field-ic { color: var(--primary); }
.pass-toggle {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; cursor: pointer; color: #7c8598; padding: 6px; line-height: 0;
  transition: color .2s;
}
.pass-toggle:hover { color: var(--primary); }
.pass-toggle svg { width: 20px; height: 20px; display: block; }
.pass-toggle .eye-off { display: none; }
.pass-toggle.on .eye { display: none; }
.pass-toggle.on .eye-off { display: block; }

.auth-row {
  display: flex; align-items: center; justify-content: space-between;
  margin: 4px 0 8px; font-size: 13px;
}
.remember { display: flex; align-items: center; gap: 7px; color: var(--muted); cursor: pointer; margin: 0 !important; font-weight: 500; }
.remember input { width: 15px; height: 15px; accent-color: var(--primary); margin: 0; cursor: pointer; }
.forgot-link { color: var(--primary); text-decoration: none; font-weight: 600; }
.forgot-link:hover { text-decoration: underline; }
.form-info {
  color: #93c5fd; background: rgba(59,130,246,.10); border: 1px solid rgba(59,130,246,.35);
  border-radius: 9px; padding: 9px 12px; font-size: 13px; margin: 6px 0 0; line-height: 1.5;
}
.form-info a { color: #bfdbfe; }
.form-error.shake { animation: shake .4s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}

/* ---------- Success toast ---------- */
.toast-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4, 6, 12, 0.55); backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center;
}
.toast-overlay.open { display: flex; animation: fade .2s ease; }
.toast {
  background: rgba(20, 26, 40, 0.96); border: 1px solid var(--border);
  border-radius: 16px; padding: 38px 46px; text-align: center;
  animation: pop .3s ease; box-shadow: var(--shadow);
}
.toast-check {
  width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: 34px; color: #22c55e;
  border: 3px solid rgba(34, 197, 94, 0.5);
}
.toast h3 { font-family: "Orbitron", sans-serif; font-size: 24px; margin-bottom: 6px; }
.toast p { color: var(--muted); }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: scale(.94) translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 18px;
  }
  .grid-3, .versions-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-text { order: 0; }
  .gallery { columns: 2; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-3, .grid-2, .versions-grid { grid-template-columns: 1fr; }
  .seasons { grid-template-columns: repeat(4, 1fr); }
  .gallery { columns: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 130px; }
}
