/* ============================================================
   Angurius Games — Sitio oficial
   Paleta y tipografía propias del estudio
   ============================================================ */

:root {
  /* Paleta del estudio (cálida, tierra, con acento turquesa) */
  --bg-0: #1a120b;
  --bg-1: #241810;
  --bg-2: #2f1f15;
  --cream: #f4e6c6;
  --cream-soft: #e9d5a8;

  --pogona-yellow: #f5b237;
  --pogona-amber: #e88a1a;
  --pogona-brown: #4a2a14;
  --pogona-green: #5fa05a;
  --pogona-teal: #3aa6a0;

  --govo-orange: #ef6c1a;
  --govo-orange-deep: #c44d0c;
  --govo-ink: #161616;
  --govo-steel: #3a3a3a;
  --govo-white: #f3f3f0;

  --text: #f4e6c6;
  --text-dim: #c4ad84;
  --line: rgba(244, 230, 198, 0.14);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.7);

  --ff-display: "Fraunces", "Recoleta", Georgia, "Times New Roman", serif;
  --ff-brand: "Russo One", "Fraunces", system-ui, sans-serif;
  --ff-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ff-mono: "Space Mono", ui-monospace, "Consolas", monospace;
}

/* Tinta el logo PNG a cream sin tocar el archivo (de marrón oscuro → cream) */
.logo-tint {
  filter:
    brightness(0)
    saturate(100%)
    invert(94%) sepia(20%) saturate(360%) hue-rotate(354deg) brightness(101%) contrast(94%);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

/* --------- Fondo decorativo --------- */
.bg-grain {
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(245, 178, 55, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(58, 166, 160, 0.08), transparent 60%),
    linear-gradient(180deg, #1a120b 0%, #150e08 100%);
}
.bg-grain::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.bg-glow {
  position: fixed; z-index: -2; pointer-events: none;
  width: 480px; height: 480px; border-radius: 50%;
  filter: blur(120px); opacity: 0.55;
}
.bg-glow--a { background: #f5b23744; top: 18%; right: -120px; }
.bg-glow--b { background: #ef6c1a33; bottom: 10%; left: -100px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: linear-gradient(180deg, rgba(26,18,11,0.85), rgba(26,18,11,0.4) 70%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
}
.nav__logo {
  width: 42px; height: 42px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.nav__name {
  font-family: var(--ff-brand);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--cream);
  display: inline-flex;
  gap: 7px;
  line-height: 1;
}
.nav__name span {
  color: var(--pogona-amber);
  margin-left: 0;
}
.nav__links {
  display: flex; gap: 26px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--pogona-yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav__links a:hover {
  color: var(--cream);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}

/* Selector de idioma */
.lang-switch {
  display: flex;
  gap: 2px;
  margin-left: 22px;
  padding: 3px;
  background: rgba(244, 230, 198, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.lang-switch button {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 6px 12px;
  border: none;
  background: transparent;
  color: var(--text-dim);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.lang-switch button:hover { color: var(--cream); }
.lang-switch button.is-active {
  background: var(--pogona-yellow);
  color: var(--pogona-brown);
}
@media (max-width: 900px) {
  .lang-switch { margin-left: auto; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 160px;
}
.hero__inner {
  max-width: 880px;
  position: relative;
}
.hero__mascot {
  width: 220px; height: 220px;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 30px 50px rgba(245, 178, 55, 0.35))
          drop-shadow(0 6px 14px rgba(0,0,0,0.4));
  animation: float 6s ease-in-out infinite;
}
.hero__mascot img {
  width: 100%; height: 100%; object-fit: contain;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__title {
  margin: 0 0 18px;
  font-family: var(--ff-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.hero__pre {
  display: block;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--pogona-teal);
  margin-bottom: 22px;
  font-weight: 400;
}
.hero__brand {
  display: block;
  font-family: var(--ff-brand);
  font-size: clamp(56px, 12vw, 140px);
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.hero__brand-accent {
  color: var(--pogona-amber);
  letter-spacing: 0.18em;
  font-size: 0.72em;
  display: inline-block;
  margin-top: 0.18em;
}
.hero__tag {
  margin: 6px auto 36px;
  max-width: 560px;
  font-size: 17px;
  color: var(--text-dim);
}
.hero__cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-dim);
  pointer-events: none;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--pogona-yellow));
  animation: scroll-pulse 2s ease-in-out infinite;
}
@media (max-height: 720px) {
  .hero__scroll { display: none; }
}
@keyframes scroll-pulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn__arrow {
  font-style: normal;
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--pogona-yellow);
  color: var(--pogona-brown);
  border-color: var(--pogona-brown);
  box-shadow: 0 6px 0 var(--pogona-brown), 0 14px 30px -10px rgba(245,178,55,0.55);
}
.btn--primary:hover {
  background: #ffc24a;
  box-shadow: 0 4px 0 var(--pogona-brown), 0 14px 30px -10px rgba(245,178,55,0.7);
}

.btn--ghost {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn--ghost:hover {
  background: rgba(244,230,198,0.08);
}

.btn--steam {
  background: #1b2838;
  color: #fff;
  border-color: #66c0f4;
  box-shadow: 0 6px 0 #0f1a25, 0 16px 30px -10px rgba(102,192,244,0.4);
}
.btn--steam:hover { background: #2a3f5f; }

.btn--kickstarter {
  background: #05ce78;
  color: #053e1f;
  border-color: #053e1f;
  box-shadow: 0 6px 0 #053e1f, 0 16px 30px -10px rgba(5,206,120,0.5);
}
.btn--kickstarter:hover { background: #1ce088; }

.btn--orange {
  background: var(--govo-orange);
  color: #fff;
  border-color: var(--govo-orange-deep);
  box-shadow: 0 6px 0 var(--govo-orange-deep), 0 14px 30px -10px rgba(239,108,26,0.55);
  font-family: var(--ff-display);
}
.btn--orange:hover { background: #ff8030; }

/* ============================================================
   SECTION HEAD genérico
   ============================================================ */
.section-head {
  text-align: center;
  margin: 0 auto 50px;
  max-width: 760px;
  padding: 0 24px;
}
.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--pogona-teal);
  padding: 6px 14px;
  border: 1px solid rgba(58,166,160,0.4);
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-head h2 {
  margin: 0;
  font-family: var(--ff-brand);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ============================================================
   STUDIO
   ============================================================ */
.studio {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.studio__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.studio__copy p {
  font-size: 18px;
  color: var(--text);
  margin: 0 0 18px;
}
.studio__copy strong {
  color: var(--pogona-yellow);
  font-weight: 700;
}
.studio__chips {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.studio__chips li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: rgba(244,230,198,0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
}
.studio__chips span {
  color: var(--pogona-yellow);
  font-size: 18px;
}

.studio__card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 28px;
  background: linear-gradient(160deg, rgba(245,178,55,0.12), rgba(58,166,160,0.06));
  border: 1px solid rgba(245,178,55,0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.studio__stat {
  text-align: center;
  padding: 18px 4px;
  border-right: 1px dashed rgba(244,230,198,0.18);
}
.studio__stat:last-child { border-right: none; }
.studio__num {
  display: block;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 52px;
  color: var(--pogona-yellow);
  line-height: 1;
  letter-spacing: -0.03em;
}
.studio__lbl {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   CREADOR
   ============================================================ */
.creator {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.creator__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}
.creator__photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.creator__photo img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: contrast(1.05);
}
.creator__photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
}
.creator__bio p {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}
.creator__bio strong {
  color: var(--cream);
  font-weight: 600;
}
.creator__bio em {
  color: var(--pogona-yellow);
  font-style: italic;
}
.creator__role {
  font-family: var(--ff-brand);
  font-size: 14px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pogona-teal) !important;
  margin-bottom: 24px !important;
}
.creator__projects {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 4px 0 24px;
}
.creator__projects li {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  background: rgba(244,230,198,0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-dim);
}
.creator__projects li strong {
  color: var(--pogona-yellow);
  font-weight: 700;
}
.creator__quote {
  margin: 28px 0 0;
  padding: 22px 26px;
  border-left: 4px solid var(--pogona-yellow);
  background: rgba(245,178,55,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream);
}

/* Placeholder visual (sin foto aún) */
.creator__photo--placeholder img {
  filter: none;
  background: var(--bg-1);
}

/* Enlaces sociales del creador / compositor */
.creator__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.creator__link {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 16px;
  background: rgba(244,230,198,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.creator__link:hover {
  transform: translateY(-2px);
  border-color: var(--pogona-yellow);
  color: var(--pogona-yellow);
}

@media (max-width: 860px) {
  .creator__grid { grid-template-columns: 1fr; gap: 30px; }
  .creator__photo { max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   GAMES — base
   ============================================================ */
.game {
  position: relative;
  padding: 120px 24px 100px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.game__head {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}
.game__status {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.game__status--live {
  color: #6ad06a;
  background: rgba(106,208,106,0.12);
  border: 1px solid rgba(106,208,106,0.4);
}
.game__status--wip {
  color: #ffb070;
  background: rgba(239,108,26,0.12);
  border: 1px solid rgba(239,108,26,0.5);
}
.game__logo {
  display: block;
  margin: 0 auto 18px;
  max-height: 180px;
  width: auto;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.6));
}
.game__tag {
  max-width: 560px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-dim);
}
.game__tag em {
  font-style: italic;
  color: var(--pogona-yellow);
}
.game__head-cta {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}
.game__genre {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pogona-teal);
  margin: 0 0 18px;
}

.game__media {
  max-width: 1080px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}
.game__video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.9);
  background: #000;
  outline: 1px solid var(--line);
}
.game__video-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-dim);
}
.link {
  color: var(--pogona-yellow);
  border-bottom: 1px dashed currentColor;
  padding-bottom: 2px;
}
.link:hover { color: var(--cream); }

.game__features {
  max-width: 1080px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}
.feature {
  background: rgba(244,230,198,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(245,178,55,0.5);
}
.feature__ico {
  font-size: 32px;
  margin-bottom: 10px;
}
.feature h3 {
  margin: 0 0 8px;
  font-family: var(--ff-brand);
  font-weight: 400;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.feature p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
}

.game__gallery {
  max-width: 1080px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}
.game__gallery figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  aspect-ratio: 16 / 10;
  transition: transform 0.3s ease;
}
.game__gallery figure:hover { transform: scale(1.02); }
.game__gallery img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery--mini { aspect-ratio: 1 / 1 !important; background: var(--cream-soft) !important; }
.gallery--mini img { object-fit: contain !important; padding: 18px; }

.game__extra {
  max-width: 1080px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}
.game__extra h3 {
  font-family: var(--ff-brand);
  font-weight: 400;
  font-size: 26px;
  color: var(--cream);
  margin: 0 0 20px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.game__video--alt {
  max-width: 800px;
  margin: 0 auto;
}
.game__extra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.extra-video {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.extra-video figcaption {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}
.extra-video .game__video--alt { max-width: 100%; }
@media (max-width: 760px) {
  .game__extra-grid { grid-template-columns: 1fr; }
}

.game__cta {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.game__cta > .btn { display: inline-flex; }
.game__cta > .btn + .btn { margin-top: -4px; }
.game__cta-note {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ============================================================
   STEAM WIDGET
   ============================================================ */
.game__steam {
  max-width: 646px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7);
  border: 1px solid var(--line);
}
.game__steam iframe {
  display: block;
  width: 100%;
  max-width: 646px;
  height: 190px;
  background: #1b2838;
}

/* ============================================================
   ESCAMAS (easter egg en sección Pogona)
   ============================================================ */
.scales {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.scale {
  position: absolute;
  top: -20px;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  background: var(--pogona-yellow);
  opacity: 0;
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(245,178,55,0.6);
  animation: scale-fall linear infinite;
}
@keyframes scale-fall {
  0%   { transform: translateY(0) rotate(45deg); opacity: 0; }
  15%  { opacity: 0.7; }
  100% { transform: translateY(110vh) rotate(225deg); opacity: 0; }
}

/* ============================================================
   POGONA — selva cálida
   ============================================================ */
.game--pogona {
  background:
    linear-gradient(180deg, transparent, rgba(58,166,160,0.06) 30%, transparent 80%);
}
.game--pogona .game__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(1.1);
}
.game--pogona .game__bg-fade {
  position: absolute; inset: 0;
  background:
    radial-gradient(closest-side at 50% 30%, transparent, rgba(26,18,11,0.85) 70%),
    linear-gradient(180deg, var(--bg-0) 0%, transparent 25%, transparent 75%, var(--bg-0) 100%);
}
.game__logo--pogona {
  max-height: 200px;
}

/* ============================================================
   GOVO — pixel sci-fi
   ============================================================ */
.game--govo {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(239,108,26,0.12), transparent 60%),
    linear-gradient(180deg, #120c08 0%, #0c0805 100%);
  border-top: 2px solid var(--govo-orange-deep);
}
.govo__scan {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(239,108,26,0.04) 0 2px,
    transparent 2px 5px
  );
  mix-blend-mode: overlay;
  opacity: 0.6;
}
.game__head--govo .game__status {
  /* ya estilizado por .game__status--wip */
}
.game__logo--govo {
  max-height: 200px;
  width: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
.game__subtitle {
  display: block;
  margin: 0 auto 22px;
  max-height: 56px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.game__video--govo {
  outline: 2px solid var(--govo-orange);
  box-shadow:
    0 0 0 4px var(--govo-ink),
    0 30px 80px -30px rgba(239,108,26,0.5);
}

.govo__pillars {
  max-width: 1080px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}
.pillar {
  position: relative;
  padding: 28px 24px 24px;
  background: linear-gradient(180deg, rgba(239,108,26,0.08), rgba(239,108,26,0.02));
  border: 1px solid rgba(239,108,26,0.35);
  border-radius: 4px;
  font-family: var(--ff-mono);
}
.pillar::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 14px; height: 14px;
  border-top: 2px solid var(--govo-orange);
  border-left: 2px solid var(--govo-orange);
}
.pillar::after {
  content: "";
  position: absolute; bottom: 0; right: 0; width: 14px; height: 14px;
  border-bottom: 2px solid var(--govo-orange);
  border-right: 2px solid var(--govo-orange);
}
.pillar__num {
  display: block;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--govo-orange);
  margin-bottom: 10px;
}
.pillar h3 {
  margin: 0 0 8px;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--govo-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pillar p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
  font-family: var(--ff-body);
  line-height: 1.6;
}

.govo__h {
  max-width: 1080px;
  margin: 0 auto 24px;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--govo-orange);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: left;
  padding-left: 16px;
  border-left: 4px solid var(--govo-orange);
  position: relative;
  z-index: 2;
}

.govo__mockups {
  max-width: 1080px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}
.govo__mockups figure {
  margin: 0;
  border: 2px solid var(--govo-orange);
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 10;
  box-shadow: 0 0 0 4px var(--govo-ink);
  transition: transform 0.3s ease;
}
.govo__mockups figure:hover { transform: translateY(-3px); }
.govo__mockups img {
  width: 100%; height: 100%; object-fit: cover;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.govo__concept {
  max-width: 1080px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}
.govo__concept figure {
  margin: 0;
  border: 1px solid rgba(239,108,26,0.4);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.govo__concept img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.govo__concept figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--govo-white);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
}

.game__cta--govo .game__cta-note { color: #ffb070aa; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact {
  padding: 100px 24px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.contact__copy {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 540px;
  margin: -30px auto 40px;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.contact__grid > .contact__card { grid-column: span 2; }
.contact__grid > .contact__card:nth-last-child(2),
.contact__grid > .contact__card:nth-last-child(1) { grid-column: span 3; }
.contact__card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 28px 24px;
  background: rgba(244,230,198,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.contact__card:hover {
  transform: translateY(-4px);
  border-color: var(--pogona-yellow);
  background: rgba(245,178,55,0.08);
}
.contact__lbl {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pogona-teal);
}
.contact__val {
  font-family: var(--ff-brand);
  font-weight: 400;
  font-size: 16px;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  word-break: break-word;
}

/* ============================================================
   DEVLOG
   ============================================================ */
.devlog {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.devlog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.post {
  position: relative;
  background: rgba(244,230,198,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex; flex-direction: column;
}
.post:hover {
  transform: translateY(-4px);
  border-color: var(--pogona-yellow);
}
.post__date {
  position: absolute;
  top: -18px; left: 20px;
  width: 56px; height: 56px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.post__date span {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--pogona-yellow);
  line-height: 1;
}
.post__date small {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}
.post__tag {
  align-self: flex-start;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(244,230,198,0.08);
  color: var(--text-dim);
  margin: 22px 0 14px;
}
.post__tag--pogona {
  background: rgba(245,178,55,0.16);
  color: var(--pogona-yellow);
}
.post__tag--govo {
  background: rgba(239,108,26,0.16);
  color: var(--govo-orange);
}
.post h3 {
  margin: 0 0 8px;
  font-family: var(--ff-brand);
  font-weight: 400;
  font-size: 18px;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.post p {
  margin: 0 0 16px;
  font-size: 14.5px;
  color: var(--text-dim);
  flex: 1;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,7,4,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--pogona-brown);
  font-size: 26px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.6);
  transition: transform 0.2s ease;
}
.lightbox__close:hover { transform: scale(1.08); }

/* Indicador visual de que se puede hacer click en galería */
.game__gallery figure,
.govo__mockups figure,
.govo__concept figure {
  cursor: zoom-in;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: 40px 24px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--text-dim);
  font-size: 13px;
}
.foot img {
  width: 40px; height: 40px;
}
.foot div { display: flex; flex-direction: column; }
.foot strong {
  font-family: var(--ff-brand);
  font-size: 14px;
  color: var(--cream);
  letter-spacing: 0.08em;
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .studio__grid { grid-template-columns: 1fr; }
  .game__features,
  .game__gallery,
  .govo__pillars,
  .govo__mockups,
  .govo__concept,
  .devlog__grid,
  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .studio__card { grid-template-columns: 1fr; gap: 4px; }
  .studio__stat { border-right: none; border-bottom: 1px dashed rgba(244,230,198,0.18); }
  .studio__stat:last-child { border-bottom: none; }
}
@media (max-width: 560px) {
  .nav { padding: 12px 18px; }
  .game__features,
  .game__gallery,
  .govo__pillars,
  .govo__mockups,
  .govo__concept,
  .devlog__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .hero__mascot { width: 160px; height: 160px; }
  .hero__mascot img { width: 130px; height: 130px; }
}
