
:root {
  --gold: #ffd84d;
  --acid: #b9ff72;
  --red: #ff1a24;
  --paper: #fff6dd;
  --muted: rgba(255, 246, 221, 0.76);
  --mx: 50%;
  --my: 18%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --depth-x: 0px;
  --depth-y: 0px;
  --safe-inline: 13px;
  --safe-inline: max(13px, env(safe-area-inset-left), env(safe-area-inset-right));
}
* { box-sizing: border-box; }
html { min-height: 100%; background: #020202; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--paper);
  font-family: Verdana, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 216, 77, 0.12), transparent 18%),
    radial-gradient(circle at 18% 15%, rgba(255, 26, 36, 0.18), transparent 34%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.74), rgba(18, 1, 4, 0.88)),
    url("Venganza-Azteca-Clean2.jpg") center / cover fixed no-repeat;
  cursor: url("blood-cursor.svg") 13 12, auto;
  overflow-x: hidden;
}
a, button, iframe { cursor: url("blood-cursor.svg") 13 12, pointer; }
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.11), transparent 9rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.5));
  mix-blend-mode: screen;
  opacity: 0.7;
  z-index: 0;
}
.cursor-light {
  display: none;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(1180px, calc(100vw - var(--safe-inline) - var(--safe-inline)));
  margin: 0 auto;
  padding: 12px 0;
  padding: max(12px, env(safe-area-inset-top)) 0 12px;
}
.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 216, 77, 0.38);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 0 16px rgba(255, 26, 36, 0.22);
}
.brand-mark img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 255, 255, 0.42));
}
.site-nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-link, .command-link, .back-button, .inline-hotlink {
  position: relative;
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
  text-shadow: 0 0 7px rgba(255, 216, 77, 0.32), 0 2px 0 #000;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 216, 77, 0.14);
  overflow: hidden;
}
.nav-link:before, .command-link:before, .back-button:before, .inline-hotlink:before {
  content: "";
  position: absolute;
  inset: auto 10px 5px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 26, 36, 0.95), var(--gold), rgba(255, 26, 36, 0.95), transparent);
  box-shadow: 0 0 13px rgba(255, 26, 36, 0.62);
  transform: scaleX(0);
  transition: transform 0.24s ease;
}
.nav-link:hover:before, .nav-link.is-active:before, .command-link:hover:before, .back-button:hover:before, .inline-hotlink:hover:before { transform: scaleX(1); }
.nav-link:hover, .nav-link.is-active { color: var(--acid); border-color: rgba(255, 26, 36, 0.42); box-shadow: 0 0 18px rgba(255, 26, 36, 0.2); }
.nav-link:focus-visible, .command-link:focus-visible, .back-button:focus-visible, .inline-hotlink:focus-visible, .gallery-card:focus-visible, .link-card:focus-visible, .poster-frame:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.hero-shell, .page-shell { position: relative; z-index: 1; width: min(1180px, calc(100vw - var(--safe-inline) - var(--safe-inline))); margin: 0 auto; padding: 20px 0 44px; padding: 20px 0 calc(44px + env(safe-area-inset-bottom)); }
.hero-stage, .content-panel {
  position: relative;
  border: 1px solid rgba(255, 216, 77, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(6, 6, 6, 0.86), rgba(7, 0, 2, 0.74));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.66), 0 0 32px rgba(255, 26, 36, 0.18), inset 0 1px rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(3px);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(var(--depth-x), var(--depth-y), 0);
  transition: transform 0.12s ease-out;
}
.hero-stage {
  min-height: calc(100svh - 108px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 5vw, 58px);
}
.eyebrow { margin: 0 0 10px; color: var(--acid); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
h1 { margin: 0 0 18px; color: var(--gold); font-family: "Trebuchet MS", Verdana, Arial, sans-serif; font-size: clamp(34px, 7vw, 82px); line-height: 0.95; text-shadow: 0 0 12px rgba(255, 216, 77, 0.36), 0 0 28px rgba(255, 26, 36, 0.34), 0 3px 0 #000; }
h2 { color: var(--gold); font-size: clamp(24px, 4vw, 38px); margin: 34px 0 16px; }
.tagline, .lead { color: var(--paper); font-size: clamp(18px, 2.3vw, 25px); line-height: 1.45; max-width: 780px; text-shadow: 0 2px 0 #000; }
p { line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.command-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 216, 77, 0.38);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.48);
}
.command-link.primary { background: linear-gradient(135deg, rgba(255, 216, 77, 0.18), rgba(255, 26, 36, 0.28)); }
.poster-frame, .feature-image a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 26, 36, 0.58);
  box-shadow: 0 0 15px rgba(255, 26, 36, 0.36), 0 22px 42px rgba(0, 0, 0, 0.54);
}
.poster-frame img, .feature-image img { width: 100%; height: auto; display: block; filter: saturate(1.14) contrast(1.08); }
.quick-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.quick-grid a, .link-card, .news-item {
  border: 1px solid rgba(255, 216, 77, 0.16);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.58);
  padding: 16px;
  text-decoration: none;
  color: var(--paper);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
}
.quick-grid span, .link-card span { display: block; color: var(--gold); font-weight: 900; margin-bottom: 5px; }
.quick-grid small, .link-card small { color: var(--muted); line-height: 1.4; }
.content-panel { padding: clamp(18px, 4vw, 42px); }
.page-shell.wide { width: min(1360px, calc(100vw - var(--safe-inline) - var(--safe-inline))); }
.back-button { display: inline-flex; gap: 7px; align-items: center; margin-bottom: 18px; padding: 9px 12px; border: 1px solid rgba(255, 216, 77, 0.2); border-radius: 6px; background: rgba(0, 0, 0, 0.38); }
.split-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 380px); gap: clamp(20px, 4vw, 46px); align-items: start; }
.text-flow { max-width: 780px; }
.feature-image figcaption { margin-top: 10px; color: var(--muted); font-size: 13px; text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-top: 22px; }
.bts-grid { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.gallery-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 232px;
  border: 1px solid rgba(255, 26, 36, 0.52);
  border-radius: 6px;
  overflow: hidden;
  color: var(--gold);
  text-decoration: none;
  background: #050505;
  box-shadow: 0 0 12px rgba(255, 26, 36, 0.25), 0 14px 30px rgba(0, 0, 0, 0.45);
}
.gallery-card:hover { border-color: rgba(255, 216, 77, 0.76); box-shadow: 0 0 18px rgba(255, 26, 36, 0.42), 0 16px 34px rgba(0, 0, 0, 0.5); transform: translateY(-2px); }
.gallery-card img { width: 100%; height: 190px; object-fit: cover; display: block; filter: saturate(1.1) contrast(1.06); }
.gallery-card span { padding: 10px 11px 12px; font-weight: 900; text-shadow: 0 1px 0 #000; }
.news-list { display: grid; gap: 12px; margin-top: 22px; }
.news-item time { display: block; color: var(--acid); font-weight: 900; margin-bottom: 7px; }
.news-item p { margin: 0; color: var(--paper); }
.link-grid { display: grid; gap: 12px; margin-top: 22px; }
.aztec-network-links { margin-top: 22px; }
.trailer-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(255, 26, 36, 0.68);
  border-radius: 7px;
  background: #000;
  box-shadow: 0 0 16px rgba(255, 26, 36, 0.42), 0 20px 48px rgba(0, 0, 0, 0.58);
}
.trailer-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.trailer-frame.launch-only iframe { display: none; }
.trailer-launch { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(110deg, rgba(0,0,0,.74), rgba(0,0,0,.5)), url("AR-Poster-2017.jpg") center / cover no-repeat; }
.trailer-launch[hidden] { display: none; }
.trailer-launch-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%, rgba(255,216,77,.18), transparent 28%), radial-gradient(circle at 50% 55%, rgba(255,26,36,.24), transparent 38%); }
.trailer-launch-button { position: relative; z-index: 1; display: inline-flex; align-items: center; min-height: 56px; padding: 16px 24px; border-radius: 6px; border: 1px solid rgba(255,216,77,.7); color: var(--gold); font-size: 18px; font-weight: 900; text-decoration: none; background: linear-gradient(135deg, rgba(255,216,77,.22), rgba(255,26,36,.36)); box-shadow: 0 0 22px rgba(255,26,36,.54); }
.trailer-launch-button:before { content: ""; width: 0; height: 0; margin-right: 10px; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 12px solid currentColor; }
.section-footer { margin-top: 26px; text-align: center; }
@media (max-width: 820px) {
  .topbar { align-items: flex-start; gap: 10px; }
  .site-nav { justify-content: flex-start; }
  .hero-stage, .split-layout { grid-template-columns: 1fr; }
  .hero-stage { min-height: auto; }
  .poster-frame { max-width: 420px; margin: 0 auto; }
  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-card img { height: 170px; }
}
@media (max-width: 520px) {
  .hero-shell, .page-shell { width: calc(100vw - var(--safe-inline) - var(--safe-inline)); padding-top: 8px; }
  .topbar { display: block; width: calc(100vw - var(--safe-inline) - var(--safe-inline)); position: relative; }
  .brand-mark { margin-bottom: 8px; }
  .site-nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); gap: 8px; }
  .nav-link { min-height: 44px; padding: 8px 9px; font-size: 13px; }
  .quick-grid { grid-template-columns: 1fr; }
  .content-panel { padding: 16px 12px 22px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { min-height: 220px; }
  .gallery-card img { height: 180px; }
  .trailer-frame { min-height: 0; }
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-light { display: none; }
  .hero-stage, .content-panel { transform: none !important; }
  body { background-attachment: scroll; }
  body:before { mix-blend-mode: normal; opacity: 0.36; }
  .hero-stage, .content-panel { backdrop-filter: none; }
}
