:root {
  --black: #000000;
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --white: #ffffff;
  --muted: #8a8a8a;
  --line: rgba(255, 255, 255, 0.12);
  --rockstar-yellow: #fcaf17;
  --rockstar-yellow-dim: rgba(252, 175, 23, 0.15);
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 2px;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Header — estilo Rockstar: minimal, transparente */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.header-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--rockstar-yellow);
  padding: 10px 18px;
  transition: opacity 0.2s;
}

.header-cta:hover {
  opacity: 0.88;
}

.mobile-menu-btn {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--rockstar-yellow);
  color: var(--black);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
}

.btn-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rockstar-yellow);
}

.text-link i {
  font-size: 11px;
}

/* Hero cinematográfico */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--header-h) + 48px) 0 72px;
}

.hero-content-inner {
  max-width: 680px;
}

.hero-title-logo {
  width: min(520px, 88vw);
  height: auto;
  margin-bottom: 20px;
}

.hero-presale {
  font-family: var(--font-display);
  font-size: clamp(14px, 2.2vw, 16px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rockstar-yellow);
  margin: 0 0 8px;
}

.hero-release {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 12px;
}

.hero-lead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 8px;
  max-width: 420px;
}

.hero-countdown {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.hero-platforms li {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Spotlight */
.spotlight {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.spotlight-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.spotlight-copy p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 24px;
  max-width: 440px;
}

.spotlight-art {
  margin: 0;
  border: 1px solid var(--line);
}

.spotlight-art img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rockstar-yellow);
  margin-bottom: 12px;
}

.section-head {
  margin-bottom: 48px;
}

.section-head--center {
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

/* Gallery editorial */
.gallery {
  padding: 0 0 96px;
  background: var(--bg);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
  padding: 0 4px;
}

.gallery-panel {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-panel--wide {
  grid-row: span 2;
}

.gallery-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-panel:hover img {
  transform: scale(1.03);
}

/* Platforms / Editions */
.platforms {
  padding: 96px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
}

.platform-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--line);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.platform-tab {
  padding: 14px 24px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}

.platform-tab:last-child {
  border-right: none;
}

.platform-tab.active,
.platform-tab:hover {
  color: var(--black);
  background: var(--rockstar-yellow);
}

.platform-tab i {
  margin-right: 6px;
}

.platform-panel {
  display: none;
}

.platform-panel.active {
  display: block;
}

.editions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.edition-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}

.edition-card--featured {
  border-color: rgba(252, 175, 23, 0.45);
}

.edition-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--rockstar-yellow);
  color: var(--black);
  padding: 6px 10px;
}

.edition-cover {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin: 0;
}

.edition-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.edition-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.edition-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}

.edition-desc {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 20px;
}

.edition-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.edition-installments {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 20px;
}

.edition-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.edition-features li {
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.edition-features li:last-child {
  border-bottom: none;
}

/* Info band */
.info-band {
  padding: 72px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.info-band-num {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--rockstar-yellow);
  margin-bottom: 12px;
}

.info-band h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}

.info-band p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* FAQ */
.faq {
  padding: 96px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question i {
  font-size: 14px;
  color: var(--muted);
  transition: transform 0.25s;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 22px;
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--rockstar-yellow);
}

/* Footer */
.site-footer {
  padding: 48px 0 32px;
  background: var(--black);
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-legal {
  margin-bottom: 24px;
}

.footer-legal p {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 8px;
  max-width: 720px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* Responsive */
@media (max-width: 900px) {
  .header-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 0;
    justify-content: stretch;
    display: none;
  }

  .header-nav.is-open {
    display: flex;
  }

  .header-nav .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .header-nav .nav-links a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-panel--wide {
    grid-column: span 2;
    grid-row: span 1;
    height: 320px;
  }

  .gallery-panel:not(.gallery-panel--wide) {
    height: 180px;
  }

  .editions-grid {
    grid-template-columns: 1fr;
  }

  .info-band-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content-inner {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-panel--wide {
    grid-column: span 1;
    height: 260px;
  }

  .platform-tabs {
    width: 100%;
    flex-wrap: wrap;
  }

  .platform-tab {
    flex: 1;
    min-width: 33%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
