/* ZHUVRY — Arcade Pop (home + Park Up - Car) */
:root {
  --cream: #FFF3DF;
  --ink: #1a1a1a;
  --red: #FF4B33;
  --yellow: #FFD23F;
  --pink: #FF6B9D;
  --green: #B4E33D;
  --text-2: #3a3a3a;
  --text-3: #6a6a6a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  font-family: Outfit, sans-serif;
  color: var(--ink);
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--red); }
img, video { max-width: 100%; height: auto; }

/* i18n: ES por defecto, EN al alternar */
html[data-lang="es"] .i-en { display: none !important; }
html[data-lang="en"] .i-es { display: none !important; }

.bungee { font-family: Bungee, cursive; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 64px 48px 72px; }

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 4px solid var(--ink);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav-logo { font-family: Bungee, cursive; font-size: 26px; letter-spacing: 1px; }
.nav-logo .dot { color: var(--red); }
.nav-links { display: flex; gap: 26px; align-items: center; font-weight: 700; font-size: 15px; }
.lang-btn {
  background: var(--ink);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: Outfit, sans-serif;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}
.lang-btn:hover { color: var(--cream); background: #3a3a3a; }

/* ---------- Botones arcade ---------- */
.btn {
  --btn-shadow: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 13px 24px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 4px 4px 0 var(--btn-shadow);
  display: inline-block;
  transition: transform .08s ease, box-shadow .08s ease;
}
.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--btn-shadow);
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { color: #fff; }
.btn-white { background: #fff; }
.btn-green { background: var(--green); color: var(--ink); --btn-shadow: rgba(255, 255, 255, .35); }
.btn-green:hover { color: var(--ink); }

/* CTA planos (sin borde) */
.btn-flat {
  background: var(--ink);
  color: var(--cream);
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  transition: background .12s ease, color .12s ease;
}
.btn-flat:hover { background: var(--red); color: #fff; }

/* ---------- Badges y chips ---------- */
.badge {
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 5px 14px;
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
}
.badge-sm { padding: 4px 12px; font-size: 11px; }
.badge-xs { border-width: 2px; padding: 3px 10px; font-size: 11px; }
.chip {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: hidden; }
.hero-circle-yellow {
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--yellow); border: 4px solid var(--ink);
}
.hero-circle-pink {
  position: absolute; bottom: -100px; left: -70px;
  width: 250px; height: 250px; border-radius: 50%;
  background: var(--pink); border: 4px solid var(--ink);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px 80px;
}
.hero-copy { display: flex; flex-direction: column; gap: 20px; }
.hero-copy .badge { align-self: flex-start; background: var(--green); transform: rotate(-2deg); }
.hero h1 { margin: 0; font-family: Bungee, cursive; font-size: 56px; line-height: 1.05; }
.hero h1 .accent { color: var(--red); }
.hero-copy p { margin: 0; font-size: 17px; line-height: 1.55; color: var(--text-2); max-width: 400px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stack { position: relative; height: 350px; }
.hero-stack .capsule {
  position: absolute;
  border: 4px solid var(--ink);
  border-radius: 14px;
  box-shadow: 8px 8px 0 var(--ink);
}
.hero-stack .capsule-jelly { top: 8px; right: 0; width: 330px; transform: rotate(3deg); }
.hero-stack .capsule-park { bottom: 0; left: 0; width: 310px; transform: rotate(-4deg); }
.hero-stack .badge-soon {
  position: absolute; top: -4px; left: 13%;
  background: var(--yellow); transform: rotate(-6deg); z-index: 2;
}
.hero-stack .badge-out {
  position: absolute; bottom: 36%; left: 46%;
  background: var(--green); transform: rotate(4deg); z-index: 2;
}

/* ---------- Catálogo ---------- */
.catalog { background: #fff; border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }
.catalog .wrap { display: flex; flex-direction: column; gap: 36px; }
.catalog h2 { margin: 0; font-family: Bungee, cursive; font-size: 36px; }
.catalog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.game-card {
  border: 4px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
  display: flex;
  flex-direction: column;
}
.game-card > a img { width: 100%; display: block; border-bottom: 4px solid var(--ink); }
.game-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; }
.game-card-title { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.game-card-title h3 { margin: 0; font-family: Bungee, cursive; font-size: 22px; }
.game-card-title .badge-out { background: var(--green); }
.game-card-title .badge-soon { background: var(--yellow); }
.game-card p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--text-2); }
.game-card-cta { display: flex; gap: 12px; align-items: center; margin-top: 4px; }
.game-card-cta .price { font-weight: 800; font-size: 16px; }
.game-card-cta .wishlist { font-weight: 800; font-size: 14px; color: var(--text-2); }

/* ---------- Prensa ---------- */
.press { background: var(--ink); color: var(--cream); }
.press .wrap { display: flex; flex-direction: column; gap: 32px; }
.press h2 { margin: 0; font-family: Bungee, cursive; font-size: 36px; color: var(--yellow); }
.press-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.press-card {
  border: 3px solid var(--cream);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.press-card-title { font-family: Bungee, cursive; font-size: 16px; }
.press-card .body { font-size: 14px; line-height: 1.7; color: rgba(255, 243, 223, .85); }
.press-card p { margin: 0; font-size: 14px; line-height: 1.6; color: rgba(255, 243, 223, .85); }
.press-card .asset-link { color: var(--cream); font-size: 14px; text-decoration: underline; }
.press-card .asset-link:hover { color: var(--yellow); }
.press-card .muted { font-size: 13px; color: rgba(255, 243, 223, .55); }
.press-card .mail { color: var(--pink); font-weight: 700; font-size: 15px; }
.press-card .mail:hover { color: var(--yellow); }

/* ---------- Bandas CTA ---------- */
.cta-band { border-bottom: 4px solid var(--ink); }
.cta-band-yellow { background: var(--yellow); }
.cta-band-red { background: var(--red); border-top: 4px solid var(--ink); }
.cta-band .wrap {
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band-red .wrap { padding: 52px 48px; }
.cta-copy { display: flex; flex-direction: column; gap: 8px; max-width: 520px; }
.cta-band h2 { margin: 0; font-family: Bungee, cursive; font-size: 30px; }
.cta-band-red h2 { font-size: 28px; color: #fff; max-width: none; }
.cta-band p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--text-2); }
.cta-big {
  background: var(--ink);
  color: var(--yellow);
  border-radius: 14px;
  padding: 16px 28px;
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
  display: inline-block;
  transition: background .12s ease, color .12s ease;
}
.cta-band-yellow .cta-big { box-shadow: 6px 6px 0 rgba(26, 26, 26, .25); }
.cta-band-yellow .cta-big:hover { background: var(--red); color: #fff; }
.cta-band-red .cta-big:hover { background: #fff; color: var(--ink); }

/* ---------- Footer ---------- */
.footer {
  background: var(--cream);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo { font-family: Bungee, cursive; font-size: 16px; }
.footer .copyright { font-size: 13px; color: var(--text-3); }
.footer-links { display: flex; gap: 16px; font-size: 13px; font-weight: 700; }
.footer-links a, .footer .next-game { text-decoration: underline; }
.footer .next-game { font-size: 13px; font-weight: 700; }

/* ---------- Park Up - Car ---------- */
.phero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 4px solid var(--ink);
}
.phero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
}
.phero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px 72px;
}
.phero-copy { display: flex; flex-direction: column; gap: 18px; }
.phero .back-link { color: rgba(255, 243, 223, .7); font-size: 13px; font-weight: 700; }
.phero h1 { margin: 0; font-family: Bungee, cursive; font-size: 52px; line-height: 1.05; color: #fff; }
.phero h1 .accent { color: var(--yellow); }
.phero .badge {
  align-self: flex-start;
  background: var(--red);
  border-color: #fff;
  color: #fff;
  transform: rotate(-2deg);
}
.phero-copy p { margin: 0; font-size: 16px; line-height: 1.6; color: rgba(255, 243, 223, .85); max-width: 420px; }
.phero-buttons { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.phero .platforms { font-size: 13px; color: rgba(255, 243, 223, .6); }
.phero-capsule {
  width: 100%;
  border: 4px solid #fff;
  border-radius: 16px;
  box-shadow: 10px 10px 0 rgba(255, 210, 63, .9);
  transform: rotate(2deg);
}

.gameplay { background: #fff; border-bottom: 4px solid var(--ink); }
.gameplay-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.gameplay video {
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: 16px;
  box-shadow: 8px 8px 0 var(--ink);
  display: block;
}
.gameplay-copy { display: flex; flex-direction: column; gap: 16px; }
.gameplay h2 { margin: 0; font-family: Bungee, cursive; font-size: 32px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature { display: flex; gap: 12px; align-items: flex-start; }
.feature .num {
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: 14px;
  flex: none;
}
.feature .num-1 { background: var(--yellow); }
.feature .num-2 { background: var(--pink); }
.feature .num-3 { background: var(--green); }
.feature p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--text-2); }
.gameplay .chips { margin-top: 4px; }
.gameplay .chip { padding: 4px 12px; }

.specs { background: var(--cream); }
.specs .wrap { padding: 56px 48px 64px; display: flex; flex-direction: column; gap: 24px; }
.specs h2 { margin: 0; font-family: Bungee, cursive; font-size: 26px; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.spec-card {
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 20px 24px;
  background: #fff;
}
.spec-card .label { font-weight: 800; font-size: 14px; }
.spec-card .label-min { color: var(--red); }
.spec-card .label-rec { color: #B4A000; }
.spec-card p { margin: 8px 0 0; font-size: 14px; line-height: 1.7; color: var(--text-2); }
.specs .note { margin: 0; font-size: 13px; color: var(--text-3); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .wrap { padding: 48px 24px 56px; }
  .nav { padding: 14px 20px; }
  .nav-links { gap: 16px; font-size: 14px; }
  .nav-logo { font-size: 22px; }

  .hero-grid { grid-template-columns: 1fr; padding: 48px 24px 64px; gap: 40px; }
  .hero h1 { font-size: 42px; }
  .hero-stack { height: 320px; max-width: 460px; width: 100%; margin: 0 auto; }
  .hero-stack .capsule-jelly { width: min(330px, 72%); }
  .hero-stack .capsule-park { width: min(310px, 68%); }
  .hero-circle-yellow { width: 220px; height: 220px; top: -70px; right: -70px; }
  .hero-circle-pink { width: 180px; height: 180px; bottom: -80px; left: -60px; }

  .catalog-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .footer { padding: 24px 20px; }

  .phero-grid { grid-template-columns: 1fr; padding: 48px 24px 56px; }
  .phero h1 { font-size: 42px; }
  .gameplay-grid { grid-template-columns: 1fr; padding: 48px 24px; }
  .specs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 34px; }
  .phero h1 { font-size: 34px; }
  .catalog h2, .press h2 { font-size: 28px; }
  .cta-band h2, .cta-band-red h2 { font-size: 24px; }
  .gameplay h2 { font-size: 26px; }
  .hero-stack { height: 260px; }
  .btn, .cta-big { font-size: 14px; padding: 12px 18px; }
  .footer { flex-direction: column; align-items: flex-start; gap: 8px; }
}
