/* ============================================================
   Retrace the Light — landing page styles
   Palette:
     --ink    #0d0c0a  (hero near-black)
     --dark   #14120e  (text near-black)
     --gold   #f6c544  (brand yellow)
     --cream  #faf8f2  (page background)
     --body   #3f3a30  (body text)
     --muted  #5f5949  (muted text)
     --amber  #b08a1e  (kicker accent)
   ============================================================ */

:root {
  --ink: #0d0c0a;
  --dark: #14120e;
  --gold: #ffce48;
  --cream: #faf8f2;
  --body-c: #3f3a30;
  --muted: #5f5949;
  --amber: #b08a1e;
  --font-display: 'Anton', sans-serif;
  --font-ui: 'Space Grotesk', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: linear-gradient(180deg, #ffce48 0, #ffce48 100vh, #ffe6a0 60%, #ffffff 100%);
  color: var(--dark);
  font-family: var(--font-ui);
}

a { color: var(--dark); text-decoration: none; }
a:hover { color: var(--amber); }

/* ===== Hero scene ===== */

.hero { position: relative; background: var(--ink); }

.hero-scene {
  position: relative;
  height: 88vh;
  overflow: hidden;
  perspective: 1100px;
}

.hero-tilt {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Each layer sits at a different translateZ depth.
   scale = (perspective - z) / perspective keeps it framed. */
.layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  will-change: transform;
}

.layer-1 {
  inset: -8%;
  background-image: url('../assets/00_Background.png');
  transform: translateZ(-260px) scale(1.24);
}

.layer-2 {
  inset: -6%;
  background-image: url('../assets/01_CheckerBoard.png');
  transform: translateZ(-140px) scale(1.13);
}

.layer-3 {
  inset: -10% -10% -10% -2%;
  background-image: url('../assets/03_RightSide.png');
  background-position: right center;
  transform: translateZ(40px) scale(0.964);
}

.layer-4 {
  inset: -3%;
  background-image: url('../assets/02_Hero.png');
  transform: translateZ(320px) scale(0.709);
}

/* First-visit entrance: logo slides in from the left, hero from the right */
.intro-play .layer-4 { animation: slide-in-right 1.1s cubic-bezier(0.16, 1, 0.3, 1) both; }
.intro-play .layer-5 { animation: slide-in-left 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }

@keyframes slide-in-right {
  from { opacity: 0; margin-left: 6%; margin-right: -6%; }
  to   { opacity: 1; margin-left: 0;  margin-right: 0; }
}
@keyframes slide-in-left {
  from { opacity: 0; margin-left: -6%; margin-right: 6%; }
  to   { opacity: 1; margin-left: 0;   margin-right: 0; }
}

.layer-5 {
  background-image: url('../assets/04_Logo.png');
  /* Size by width, not cover: the logo lives in the left half of the
     image, so on narrow windows it scales down instead of cropping off */
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: left center;
  transform: translateZ(210px) scale(0.809);
}

/* ===== HUD ===== */

.hud {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px 44px;
  z-index: 5;
}

.hud-links {
  display: flex;
  gap: 42px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #ffffff;
  padding: 15px 36px;
}

.hud-links a { color: #000000; }
.hud-links a:hover { color: var(--gold); }

.hud-cta {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #ffffff;
  color: #000000;
  padding: 15px 36px;
}
.hud-cta:hover { background: var(--gold); color: #000000; }
/* Solid dark download buttons — highlight on hover */
.dl-solid { background: var(--dark); color: var(--gold); }
.dl-solid:hover { background: var(--gold); color: #000000; }

.hud-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* PlayStation brand blue */
.hud-buy {
  background: #0070d1;
  color: #ffffff;
  font-size: 20px;
  padding: 14px 64px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hud-buy .buy-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hud-buy .buy-ps5-logo { height: 22px; display: block; }
.hud-buy:hover { background: #00439c; color: #ffffff; }

.hud-platform {
  position: absolute;
  left: 44px; bottom: 34px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 26px;
  padding: 22px 44px;
  background: #0070d1;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 5;
}

.ps5-logo { height: 44px; display: block; }
/* Optically align the date's midline with the wordmark's cap band
   (the "y" descender pulls the image's box-center slightly low) */
.hud-platform span { transform: translateY(-1px); }

.placeholder-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border: 1px dashed currentColor;
  font: 10px ui-monospace, Menlo, monospace;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* ===== Accolades ===== */

.accolades {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  padding: 56px 56px 64px;
  flex-wrap: wrap;
}
/* Press page: awards row inside a light section */
.press-section .accolades { margin-top: 8px; justify-content: center; padding: 48px 48px 56px; }
.accolade { display: block; }
.accolade-badge { height: 170px; width: auto; }
@media (max-width: 720px) {
  .press-section .accolades { justify-content: center; }
}
.accolade-laurel { height: 130px; width: auto; }
.accolade-card { height: 220px; width: auto; }

/* ===== Trailer ===== */

.trailer {
  background: transparent;
  padding: 90px 56px;
}

.trailer-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
}

.trailer-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  text-transform: uppercase;
}

.trailer-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5d4a12;
}

.trailer-frame { aspect-ratio: 16/9; background: var(--dark); }
.trailer-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.trailer-placeholder {
  aspect-ratio: 16/8;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-ring {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* ===== Tagline + story ===== */

.story {
  padding: 100px 56px 90px;
  border-bottom: 1px solid rgba(20, 18, 14, 0.12);
}

.story-kicker {
  font-family: var(--font-display);
  font-size: 63px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
}

.giant {
  margin: 0;
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--dark);
}

.story-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
}

.story-cols p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--body-c);
}

/* ===== Features ===== */

.features {
  padding: 90px 56px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

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

.feature-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-copy p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-c);
}

.feature-media { aspect-ratio: 16/10; }

img.feature-media, video.feature-media { width: 100%; object-fit: cover; display: block; background: var(--dark); }

.placeholder {
  background: repeating-linear-gradient(-45deg,
    rgba(20, 18, 14, 0.10) 0 12px, rgba(20, 18, 14, 0.04) 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 11px ui-monospace, Menlo, monospace;
  color: var(--muted);
}

/* ===== Footer ===== */

.footer {
  padding: 70px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 28px;
}

.footer-left, .footer-right { display: flex; flex-direction: column; gap: 16px; }

.footer-left { flex-direction: row; align-items: center; gap: 24px; }
.footer-right { align-items: flex-end; }

.footer-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-logo { width: 140px; }

.esrb { height: 60px; color: var(--muted); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer-social a { display: inline-flex; color: var(--dark); }
.footer-social a:hover { color: var(--gold); }
.footer-social .social-icon { height: 22px; width: 22px; object-fit: contain; display: block; }
.footer-social a:hover .social-icon { opacity: 0.65; }

.footer-release {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ===== Press kit subpage ===== */

.subpage-header {
  background: var(--ink);
  color: var(--cream);
  padding-bottom: 70px;
}

.hud-dark { position: static; }

.subpage-title { padding: 60px 56px 0; }

.giant-sm { font-size: 84px; color: var(--cream); }

.subpage .stroke { -webkit-text-stroke: 2px var(--gold); }

.press-kicker {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.subpage-sub {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-c);
  color: #cfc8ba;
}

.subpage-sub a { color: var(--gold); }

.press-section {
  padding: 70px 56px;
  border-bottom: 1px solid rgba(20, 18, 14, 0.12);
}
/* Asset sections read as one continuous block — drop the internal rules */
#press-videos, #screenshots, #keyart, #characters { border-bottom: none; }
/* Note-less asset sections: add room between the button stack and the grid */
#screenshots .asset-grid, #keyart .asset-grid, #characters .asset-grid, #logo .asset-grid { margin-top: 32px; }

.press-heading {
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  text-transform: uppercase;
}

.factsheet {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 40px;
}

.factsheet dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.factsheet dd {
  margin: 0;
  font-size: 16px;
  color: var(--dark);
}

.press-desc p, .press-list li {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-c);
}

.press-desc p { margin: 0 0 20px; }

.press-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.press-assets-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.press-assets-head .press-heading { margin: 0; }

.press-assets-head .hud-cta { background: var(--dark); color: var(--gold); }
.press-assets-head .hud-cta:hover { background: var(--gold); color: #000000; }

.press-note {
  margin: 0 0 30px;
  font-size: 14px;
  color: var(--muted);
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.asset { margin: 0; }

.asset img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--dark);
}
/* Tall/portrait art: crop from the top so the character's face stays in frame */
.asset img.asset-img-top { object-position: top; }

.asset-logo img { object-fit: contain; padding: 24px; box-sizing: border-box; }

.asset figcaption {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

#press-trailer { border-bottom: none; }

/* ===== Press kit — Sea-of-Stars-style structure ===== */

.press-hero {
  margin-top: 8px;
  max-height: 480px;
  overflow: hidden;
}
.press-hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.press-stores {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.press-stores a {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(250, 248, 242, 0.3);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}
.press-stores a:hover { border-color: var(--gold); color: var(--gold); }
.press-stores a.store-ps {
  background: #0070d1;
  border-color: #0070d1;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
}
.press-stores a.store-ps img { height: 22px; display: block; }
.press-stores a.store-ps:hover { background: #00439c; border-color: #00439c; }

.press-stores a.hud-cta.hud-buy {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  padding: 14px 64px;
}

.press-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.press-cta-primary { background: var(--gold); border: 2px solid var(--dark); }
.press-cta-primary:hover { background: var(--cream); }

/* Hover-expand download menu */
.dl-menu { position: relative; display: inline-block; }
.dl-menu-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  width: max-content;
  max-height: 0;
  opacity: 0;
  white-space: nowrap;
  transition: max-height 0.32s ease, opacity 0.2s ease;
  z-index: 30;
}
.dl-menu:hover .dl-menu-options,
.dl-menu:focus-within .dl-menu-options {
  max-height: 200px;
  opacity: 1;
}
.dl-menu-options .hud-cta { display: block; }
.press-cta-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 248, 242, 0.3);
}
.press-cta-ghost:hover { background: transparent; color: var(--gold); border-color: var(--gold); }

.press-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 50px 56px 0;
}
.press-toc a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cfc8ba;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}
.press-toc a:hover { color: var(--gold); border-color: var(--gold); }

/* Right-side sticky section nav (desktop) */
.press-sidenav {
  position: fixed;
  left: 32px;
  top: 50%;
  transform: translateY(-50%) translateX(-12px);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.press-sidenav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.press-sidenav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px 6px 14px;
  border-left: 2px solid rgba(20, 18, 14, 0.15);
}
.press-sidenav a:hover { color: var(--dark); border-left-color: var(--dark); }
.press-sidenav a.is-active {
  color: var(--dark);
  border-left-color: var(--gold);
  background: rgba(255, 206, 72, 0.25);
}

/* Fact sheet — stacked rows, Sea-of-Stars style */
.factrows {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.factrows > div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(20, 18, 14, 0.12);
  align-items: baseline;
}
.factrows > div:last-child { border-bottom: none; }
.factrows dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}
.factrows dd { margin: 0; font-size: 16px; color: var(--dark); }
.fact-rating { height: 64px; display: block; margin-bottom: 6px; }
.fact-ratings { display: flex; gap: 10px; margin-bottom: 6px; }
.fact-ratings .fact-rating { margin-bottom: 0; }

.press-broll { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.press-broll .press-note { margin: 0; }
.broll-grid { margin-top: 20px; }
.broll-subhead { margin: 36px 0 0; font-family: var(--font-display); font-size: 26px; letter-spacing: 0.04em; text-transform: uppercase; border-bottom: 1px solid rgba(20, 18, 14, 0.12); padding-bottom: 8px; }
.broll-sublabel { margin: 24px 0 0; font-size: 16px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.broll-head { margin-top: 36px; align-items: flex-end; border-bottom: 1px solid rgba(20, 18, 14, 0.12); padding-bottom: 8px; }
.broll-head .broll-subhead { margin: 0; border-bottom: none; padding-bottom: 0; }
.broll-sublabel-head { border-bottom: none; padding-bottom: 0; margin-top: 24px; }
.broll-sublabel-head .broll-sublabel { margin: 0; }

/* Review code request form */
.review-form { max-width: 760px; margin-top: 24px; }
.review-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.review-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.review-form input, .review-form select, .review-form textarea {
  font: 16px/1.4 var(--font-body, inherit);
  padding: 10px 12px;
  border: 2px solid #14120e;
  border-radius: 0;
  background: transparent;
  color: inherit;
}
.review-form input:focus, .review-form select:focus, .review-form textarea:focus { outline: 3px solid rgba(20, 18, 14, 0.25); outline-offset: 1px; }
.review-form-full { margin-top: 18px; }
.review-form button.hud-cta { margin-top: 20px; border: none; cursor: pointer; font: inherit; }
@media (max-width: 640px) { .review-form-grid { grid-template-columns: 1fr; } }
.asset-grid.broll-grid-vertical { grid-template-columns: repeat(3, 1fr); max-width: 560px; }
.broll-grid-vertical .asset img {
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid #14120e;
  box-sizing: border-box;
}
.broll-grid-vertical .asset a { position: relative; display: block; border-radius: 18px; }
.broll-grid-vertical .asset figcaption { text-align: center; }

.press-subheading {
  margin: 44px 0 20px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 30px;
}
.video-grid .trailer-frame { aspect-ratio: 16/9; }

.asset-grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.asset-ph {
  aspect-ratio: 16/9;
  width: 100%;
}

.asset-logo-dark img,
.asset-logo-light img { background: #8a8578; }

.articles-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.articles-list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(20, 18, 14, 0.12);
  font-size: 16px;
}
.articles-list li:last-child { border-bottom: none; }
.article-quote {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.article-source { font-size: 14px; color: var(--muted); }
.article-score { font-weight: 700; color: var(--dark); }

#selected-articles { border-bottom: none; }

@media (min-width: 1101px) {
  .subpage .press-section { padding-left: 190px; }
}

@media (max-width: 1100px) {
  .press-sidenav { display: none; }
}

@media (max-width: 860px) {
  .press-toc { padding: 36px 28px 0; }
  .factrows > div { grid-template-columns: 1fr; gap: 6px; }
  .video-grid { grid-template-columns: 1fr; }
  .press-hero { max-height: 260px; }
  .press-hero img { max-height: 260px; }
}

/* ===== Privacy page ===== */
.privacy-body { max-width: 760px; }
.privacy-body p { font-size: 16px; line-height: 1.7; margin: 14px 0 34px; }
.privacy-body a { color: var(--dark); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.privacy-body a:hover { opacity: 0.7; }
.privacy-body .press-heading { font-size: 26px; }

/* ===== Consent banner ===== */

.consent-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.consent-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #cfc8ba;
}

.consent-text a.consent-link { color: var(--gold); text-decoration: underline; }

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

.consent-btn {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: none;
  cursor: pointer;
}

.consent-accept { background: var(--gold); color: var(--ink); }
.consent-accept:hover { background: #ffd75e; }

.consent-decline {
  background: transparent;
  color: #cfc8ba;
  border: 1px solid rgba(250, 248, 242, 0.35);
}
.consent-decline:hover { color: var(--cream); border-color: var(--cream); }

/* ===== Responsive ===== */

@media (max-width: 860px) {
  .story, .features, .trailer, .footer, .press-section, .subpage-title { padding-left: 28px; padding-right: 28px; }

  .story-kicker { font-size: 47px; }

  /* Hero: layered portrait splash on mobile, with light parallax
     (shallow depths; idle drift animates it since there's no mouse) */
  .hero-scene { height: 76vh; }

  .layer-1 {
    inset: -8%;
    background-image: url('../assets/hero-mobile-bg.png?v=2');
    background-position: center top;
  }
  .layer-2, .layer-3 { display: none; }
  .layer-4 {
    inset: -4%;
    background-image: url('../assets/hero-mobile-decem.png');
    /* cover: never scale down so far that the background shows through */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    transform: translateZ(40px) scale(0.964);
  }
  .layer-5 {
    background-size: 130% auto;
    /* image is wider than the frame and the logo sits in its left half;
       negative x-position shifts it right so the logo lands centered */
    background-position: -55% 45%;
    transform: translateZ(300px) scale(0.727);
  }

  /* HUD on mobile: nav links stay top; both CTAs move to the bottom,
     clear of Decem's face */
  .hud {
    padding: 16px 20px;
    top: 0; bottom: 0;
    align-items: flex-start;
    pointer-events: none;
  }
  .hud a, .hud .hud-links { pointer-events: auto; }
  .hud-right { display: contents; }
  /* BUY NOW: centered below the logo; Watch Trailer hidden on mobile */
  .hud-right .hud-buy {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60%;
    bottom: auto;
    margin: 0;
  }
  .hud > .hud-cta { display: none; }
  /* Press page: keep its trailer CTA visible in the top bar next to "Back to site" */
  .hud-dark { position: static; padding: 16px 20px; }
  .hud-dark > .hud-cta { display: inline-block; position: static; }
  .hud-links { gap: 18px; font-size: 12px; padding: 10px 16px; }
  .hud-cta { font-size: 12px; padding: 12px 18px; }
  .hud-buy { font-size: 14px; padding: 10px 24px; }
  .hud-buy .buy-sub { font-size: 9px; }
  .hud-buy .buy-ps5-logo { height: 15px; }
  .hud-platform { left: 20px; bottom: 20px; gap: 14px; padding: 12px 20px; font-size: 13px; }
  .ps5-logo { height: 22px; }

  /* Placeholders hidden on mobile; videos play (all MP4 now) */
  .feature-media.placeholder { display: none; }

  .trailer-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trailer-head h2 { font-size: 32px; }

  .giant { font-size: 60px; }
  .giant-sm { font-size: 48px; }
  .factsheet { grid-template-columns: 1fr 1fr; }
  .press-assets-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .story-cols, .feature { grid-template-columns: 1fr; gap: 30px; }
  .feature-media { order: 1; }
  .footer { flex-direction: column; gap: 28px; text-align: center; }
  .footer-left, .footer-right { align-items: center; }
}
