/* ============================================================
   Preorder page — v2 cinematic storytelling redesign
   ============================================================ */

/* ---- Scroll reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .22s; }
[data-reveal][data-delay="3"] { transition-delay: .34s; }
[data-reveal][data-delay="4"] { transition-delay: .46s; }

/* ---- Chapter labels ---- */
.po-chapter {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--txt-faint);
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.4rem;
}
.po-chapter::before {
  content: '';
  width: 2rem; height: 1px;
  background: rgba(255,255,255,.18);
}

/* ============================================================
   Hero — full-screen cinematic video
   ============================================================ */
.po-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Video background */
.po-hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* Cinematic overlay: dark vignette + bottom-to-top fade out */
.po-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 60%, rgba(6,5,13,.35) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(6,5,13,.55) 0%, rgba(6,5,13,.28) 35%, rgba(6,5,13,.6) 75%, rgba(6,5,13,1) 100%);
  z-index: 1;
}

/* Grain texture overlay */
.po-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  opacity: .6;
  pointer-events: none;
  z-index: 1;
}

.po-hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem clamp(1rem, 4vw, 2rem) 5rem;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.po-vi-logo {
  width: min(300px, 52vw);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 4px 40px rgba(255,45,149,.5)) drop-shadow(0 0 80px rgba(255,45,149,.15));
  animation: po-logo-in 1.2s var(--ease) .2s both;
}
@keyframes po-logo-in {
  from { opacity: 0; transform: scale(.92) translateY(-12px); filter: drop-shadow(0 0 0 transparent); }
  to   { opacity: 1; transform: scale(1)   translateY(0);    }
}

.po-release-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,45,149,.1);
  border: 1px solid rgba(255,45,149,.35);
  border-radius: 999px;
  padding: .4rem 1.15rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: po-fade-up .8s var(--ease) .5s both;
}
.po-release-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
  animation: po-blink 1.6s ease-in-out infinite;
}
@keyframes po-blink { 0%,100% { opacity: 1; } 50% { opacity: .15; } }

.po-hero h1 {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  line-height: .98;
  letter-spacing: -.04em;
  margin-bottom: .8rem;
  animation: po-fade-up .9s var(--ease) .65s both;
}
.po-hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(244,240,255,.6);
  margin-bottom: 2.8rem;
  letter-spacing: .04em;
  animation: po-fade-up .8s var(--ease) .8s both;
}
@keyframes po-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Countdown ---- */
.po-countdown {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(24px);
  background: rgba(6,5,13,.5);
  margin-bottom: 2.4rem;
  animation: po-fade-up .8s var(--ease) .95s both;
}
.po-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .9rem 1.4rem;
  border-right: 1px solid rgba(255,255,255,.07);
  min-width: 70px;
}
.po-cd-unit:last-child { border-right: none; }
.po-cd-val {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--txt);
  min-width: 2ch;
  text-align: center;
}
.po-cd-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--txt-faint);
  margin-top: .35rem;
}
.po-countdown.expired .po-cd-val { color: var(--pink); }

.po-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: po-fade-up .8s var(--ease) 1.1s both;
}
.po-store-note {
  font-size: .85rem;
  color: rgba(244,240,255,.55);
  padding: .5rem 0;
  margin: 0;
  letter-spacing: .02em;
}
.po-store-note strong { color: var(--txt); font-weight: 600; }

/* Scroll cue */
.po-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(244,240,255,.28);
  animation: po-fade-up .8s var(--ease) 1.5s both;
}
.po-scroll-cue-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: po-scroll-line 2s ease-in-out infinite;
}
@keyframes po-scroll-line {
  0%,100% { transform: scaleY(1) translateY(0); opacity: 1; }
  50% { transform: scaleY(.5) translateY(6px); opacity: .4; }
}

/* ============================================================
   Stats strip — glass cards
   ============================================================ */
.po-stats {
  background: rgba(13,11,30,.9);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.po-stats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.po-stats-inner > div {
  padding: 1.6rem 1rem;
  border-right: 1px solid rgba(255,255,255,.055);
  transition: background .2s;
}
.po-stats-inner > div:last-child { border-right: none; }
.po-stats-inner > div:hover { background: rgba(255,255,255,.02); }
.po-stat-label {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--txt-faint);
  margin-bottom: .4rem;
}
.po-stat-value {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--txt);
  line-height: 1.2;
}
.po-stat-value .accent { color: var(--cyan); }

/* ============================================================
   Section wrapper
   ============================================================ */
.po-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5.5rem clamp(1rem, 4vw, 2.5rem);
}
.po-section-eyebrow {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.po-section-eyebrow::before { content: ''; width: 1.5rem; height: 1px; background: var(--cyan); opacity: .6; }
.po-section-title {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.po-section-desc {
  color: var(--txt-dim);
  max-width: 640px;
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: 3rem;
}

/* ============================================================
   Trailer — video
   ============================================================ */
.po-trailer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem) 5.5rem;
}
.po-trailer-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 21/9;
  background: #06050d;
  border: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .4s var(--ease), border-color .4s;
}
.po-trailer-card:hover {
  box-shadow: 0 32px 80px -28px rgba(255,45,149,.45);
  border-color: rgba(255,45,149,.2);
}
/* Ambient video fills the card */
.po-trailer-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(.75);
  transition: filter .5s;
}
.po-trailer-card:hover .po-trailer-video { filter: brightness(.45) saturate(.6); }
/* Poster image overlaid — hides on hover (we lift the video to show motion) */
.po-trailer-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .5s var(--ease);
}
.po-trailer-card:hover .po-trailer-poster { opacity: 0; }

.po-trailer-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: rgba(6,5,13,.3);
  transition: background .35s;
}
.po-trailer-card:hover .po-trailer-overlay { background: rgba(6,5,13,.18); }
.po-trailer-play {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.32);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  backdrop-filter: blur(12px);
  transition: background .3s, border-color .3s, transform .35s var(--ease), box-shadow .35s;
}
.po-trailer-card:hover .po-trailer-play {
  background: rgba(255,45,149,.52);
  border-color: var(--pink);
  transform: scale(1.12);
  box-shadow: 0 0 40px rgba(255,45,149,.4);
}
.po-trailer-label {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.55rem);
  letter-spacing: -.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,.9);
}

/* ============================================================
   Edition comparison
   ============================================================ */
.po-editions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Standard card */
.po-edition-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  background: var(--bg-2);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.po-edition-card:not(.featured):hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px -24px rgba(0,0,0,.7);
  border-color: rgba(255,255,255,.12);
}

/* Ultimate Edition — rotating conic-gradient border */
@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
@keyframes border-spin { to { --border-angle: 360deg; } }

.po-edition-card.featured {
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    conic-gradient(from var(--border-angle),
      var(--pink) 0%,
      var(--cyan) 22%,
      var(--purple) 50%,
      var(--orange) 72%,
      var(--pink) 100%
    ) border-box;
  border: 1.5px solid transparent;
  animation: border-spin 6s linear infinite;
  box-shadow: 0 28px 80px -28px rgba(255,45,149,.38);
}
.po-edition-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px -28px rgba(255,45,149,.55);
}

.po-edition-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.po-edition-body { padding: 1.75rem 1.9rem 2rem; }
.po-edition-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .24rem .75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.po-edition-badge.standard {
  background: rgba(255,255,255,.06);
  color: var(--txt-faint);
  border: 1px solid rgba(255,255,255,.1);
}
.po-edition-badge.ultimate {
  background: rgba(255,45,149,.12);
  color: var(--pink);
  border: 1px solid rgba(255,45,149,.28);
}
.po-edition-name {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.12;
  margin-bottom: .3rem;
}
.po-edition-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--txt);
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -.02em;
}
.po-edition-price span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--txt-faint);
  margin-left: .25rem;
  letter-spacing: 0;
}
.po-edition-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1.75rem;
}
.po-edition-features li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .9rem;
  color: var(--txt-dim);
  line-height: 1.5;
}
.po-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800;
  margin-top: .1rem;
}
.po-check.yes {
  background: rgba(45,226,230,.12);
  color: var(--cyan);
  border: 1px solid rgba(45,226,230,.2);
}
.po-check.ult {
  background: rgba(255,45,149,.12);
  color: var(--pink);
  border: 1px solid rgba(255,45,149,.24);
}
.po-upgrade-note {
  font-size: .78rem;
  color: var(--txt-faint);
  text-align: center;
  margin-top: .9rem;
}

/* ============================================================
   Pre-order bonus
   ============================================================ */
.po-bonus-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid rgba(245,200,66,.14);
  box-shadow: 0 0 0 1px rgba(245,200,66,.06), 0 28px 70px -28px rgba(245,200,66,.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.po-bonus-media {
  position: relative;
  overflow: hidden;
}
.po-bonus-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
  filter: saturate(.88);
}
.po-bonus-card:hover .po-bonus-media img { transform: scale(1.04); filter: saturate(1); }
.po-bonus-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, var(--bg-2) 100%);
}
.po-bonus-body {
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.po-bonus-deadline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,200,66,.08);
  border: 1px solid rgba(245,200,66,.18);
  border-radius: 999px;
  padding: .32rem .95rem;
  margin-bottom: 1.2rem;
  width: fit-content;
}
.po-bonus-title {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.08;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.po-bonus-desc {
  color: var(--txt-dim);
  font-size: .92rem;
  margin-bottom: 1.6rem;
  line-height: 1.68;
}
.po-bonus-items { display: flex; flex-direction: column; gap: .9rem; }
.po-bonus-item {
  display: flex; align-items: flex-start; gap: .8rem;
  font-size: .9rem;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  transition: border-color .2s, background .2s;
}
.po-bonus-item:hover {
  background: rgba(245,200,66,.04);
  border-color: rgba(245,200,66,.12);
}
.po-bonus-item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .05rem; }
.po-bonus-item strong { display: block; color: var(--txt); margin-bottom: .15rem; font-weight: 700; }
.po-bonus-item span { font-size: .8rem; color: var(--txt-faint); line-height: 1.45; }

.po-ps-note {
  background: rgba(0,55,138,.12);
  border: 1px solid rgba(0,100,210,.16);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .84rem;
  color: var(--txt-dim);
  line-height: 1.55;
}
.po-ps-badge { height: 20px; flex-shrink: 0; }
.po-ps-note strong { color: var(--txt); }

/* ============================================================
   UE deep-dive hero banner
   ============================================================ */
.po-ue-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 21/9;
  margin-bottom: 4rem;
  border: 1px solid rgba(255,255,255,.07);
}
.po-ue-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,5,13,.82) 0%, rgba(6,5,13,.3) 55%, rgba(6,5,13,.1) 100%);
}
.po-ue-hero-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3rem;
}
.po-ue-hero-text h2 {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin-bottom: .65rem;
}
.po-ue-hero-text p { color: var(--txt-dim); max-width: 440px; font-size: 1rem; line-height: 1.65; }

/* ============================================================
   Subsections
   ============================================================ */
.po-subsection { margin-bottom: 4rem; }
.po-subsection-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.po-subsection-num {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(255,255,255,.06);
  letter-spacing: -.05em;
  user-select: none;
  margin-right: -.3rem;
}
.po-subsection-header h3 {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: -.01em;
}
.po-subsection-tag {
  margin-left: auto;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--txt-faint);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: .2rem .6rem;
}

/* ============================================================
   Item grid & cards
   ============================================================ */
.po-item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}
.po-item-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
  position: relative;
}
/* Top accent line on hover */
.po-item-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  opacity: 0;
  transition: opacity .35s;
  z-index: 2;
}
.po-item-card:hover::before { opacity: 1; }
.po-item-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,45,149,.18);
  box-shadow: 0 20px 50px -20px rgba(255,45,149,.3), 0 0 0 1px rgba(255,45,149,.08);
}
.po-item-card-body { padding: .9rem 1.05rem 1.1rem; }
.po-item-card-name {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: .96rem;
  line-height: 1.25;
  margin-bottom: .3rem;
  color: var(--txt);
  transition: color .25s;
}
.po-item-card:hover .po-item-card-name { color: var(--pink); }
.po-item-card-desc {
  font-size: .8rem;
  color: var(--txt-faint);
  line-height: 1.52;
}

/* ============================================================
   Gallery carousel (preserved from v1)
   ============================================================ */
.po-gallery {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #06050d;
}
.po-gallery-track {
  display: flex;
  height: 100%;
  transition: transform .38s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.po-gallery-slide { flex: 0 0 100%; height: 100%; overflow: hidden; }
.po-gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.po-gallery-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px;
  background: rgba(6,5,13,.75);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .2s, opacity .2s, border-color .2s;
  opacity: 0; z-index: 3; padding: 0; line-height: 1;
}
.po-gallery:hover .po-gallery-btn { opacity: 1; }
.po-gallery-btn:hover { background: rgba(255,45,149,.55); border-color: var(--pink); }
.po-gallery-btn.prev { left: .5rem; }
.po-gallery-btn.next { right: .5rem; }
.po-gallery-dots {
  position: absolute; bottom: .45rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .32rem; z-index: 3;
}
.po-gallery-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; cursor: pointer;
  padding: 0; transition: background .2s, transform .2s;
}
.po-gallery-dot.active { background: #fff; transform: scale(1.35); }
.po-gallery-counter {
  position: absolute; top: .45rem; right: .55rem;
  font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.75);
  background: rgba(6,5,13,.65); padding: .12rem .42rem;
  border-radius: 999px; backdrop-filter: blur(4px); z-index: 3; letter-spacing: .04em;
}

/* ============================================================
   Notes section
   ============================================================ */
.po-notes-section {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,.05);
}
.po-notes-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3.5rem clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 2.5rem;
}
.po-note-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.po-note-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .08rem; }
.po-note-item h4 {
  font-weight: 700; font-size: .94rem; margin-bottom: .3rem; color: var(--txt);
}
.po-note-item p { font-size: .83rem; color: var(--txt-dim); line-height: 1.6; }

/* ---- Nav highlight ---- */
.nav-preorder { color: var(--pink) !important; font-weight: 600 !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .po-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .po-stats-inner > div:nth-child(2) { border-right: none; }
  .po-editions { grid-template-columns: 1fr; }
  .po-bonus-card { grid-template-columns: 1fr; min-height: 0; }
  .po-bonus-media { aspect-ratio: 16/9; }
  .po-bonus-media::after { background: linear-gradient(180deg, transparent 45%, var(--bg-2) 100%); }
  .po-ue-hero { aspect-ratio: 16/9; }
  .po-ue-hero-text { padding: 1.5rem; }
  .po-trailer-card { aspect-ratio: 16/9; }
}
@media (max-width: 520px) {
  .po-item-grid { grid-template-columns: 1fr 1fr; }
  .po-stats-inner { grid-template-columns: 1fr 1fr; }
  .po-stats-inner > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); }
  .po-stats-inner > div:last-child { border-bottom: none; }
  .po-cd-unit { padding: .75rem .9rem; min-width: 58px; }
  .po-cd-val { font-size: 1.6rem; }
}
