/* =========================================================
   SHORE — Landing Page
   Layout : terminals.io-style stacked panels
   Palette: Beige × Black
   Fonts  : Futura (display) · Inter (body)
   ========================================================= */

@font-face {
  font-family: 'Futura Bold';
  src: url('/fonts/FuturaBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Futura Body';
  src: url('/fonts/FuturaCyrillicBook.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --beige:       #F0EAD6;
  --beige-dark:  #E6DFC8;
  --beige-mid:   #D8D0B8;
  --black:       #0C0B0A;
  --black-soft:  #181714;
  --ink:         #1A1714;
  --ink-mid:     #4A4438;
  --ink-soft:    #7A7060;
  --white:       #FEFCF8;
  --panel-bg:    #F5F0E4;
  --border:      rgba(26,23,20,.1);
  --green:       #22C55E;
  --red:         #DC2626;

  /* Futura Bold web font, Century Gothic / Josefin Sans as fallbacks */
  --f-display: 'Futura Bold', 'Futura', 'Century Gothic', 'Josefin Sans', Arial, sans-serif;
  --f-body:    'Futura Body', 'Futura', 'Helvetica Neue', Arial, sans-serif;

  --radius: 20px;
  --ease: 200ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--f-body);
  background: linear-gradient(180deg, #05080F 0%, #07111E 14%, #0A2448 34%, #071C3C 60%, #030F20 100%) fixed;
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
button { font-family: var(--f-body); cursor: pointer; border: none; background: none; }
[hidden] { display: none !important; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .2s, border-color .2s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5,8,15,.92) 0%, rgba(5,8,15,.55) 62%, rgba(5,8,15,0) 100%);
}
.nav.scrolled {
  background: rgba(12,11,10,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(240,234,214,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--f-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--beige);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240,234,214,.45);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--beige); }
.nav-cta {
  background: var(--beige) !important;
  color: var(--black) !important;
  padding: .6rem 1.4rem;
  font-weight: 700 !important;
  transition: background var(--ease) !important;
}
.nav-cta:hover { background: var(--white) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--beige);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--black-soft);
  border-top: 1px solid rgba(240,234,214,.08);
  padding: .5rem 2.5rem 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--f-display);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240,234,214,.5);
  padding: .85rem 0;
  border-bottom: 1px solid rgba(240,234,214,.06);
  transition: color var(--ease);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--beige); }

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* =========================================================
   HERO BACKGROUND STATIC FALLBACK
   Shows the bg image immediately via CSS while Three.js loads.
   z-index: 1 keeps it above the canvas (z-index: 0) which becomes
   opaque once Three.js renders its first frame.
   Fades out once the WebGL parallax mesh takes over.
   ========================================================= */
.hero-bg-static {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: url('/AIExpandedBG.avif') center / cover no-repeat;
  filter: brightness(0.2);
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.hero-bg-static.loaded {
  opacity: 0;
}

/* =========================================================
   HERO + PANELS WRAPPER
   ========================================================= */
.hero-wrap {
  position: relative;
  background: #05080F;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 92vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #05080F;
}

.hero-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,9,12,.72)  0%,
    rgba(10,11,14,.3) 24%,
    rgba(12,11,10,.08) 40%,
    rgba(12,11,10,.6)  75%,
    rgba(12,11,10,.96) 100%
  );
}
.hero-mid {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  text-align: center;
}
@keyframes hero-entrance {
  from {
    opacity: 0;
    transform: translateY(42px);
  }
}
.hero-mid > * {
  animation: hero-entrance 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
.hero-mid > *:nth-child(1) { animation-delay: 0.4s; }
.hero-mid > *:nth-child(2) { animation-delay: 0.58s; }
.hero-mid > *:nth-child(3) { animation-delay: 0.76s; }
.hero-mid > *:nth-child(4) { animation-delay: 0.94s; }
.hero-mid > *:nth-child(5) { animation-delay: 1.12s; }
.hero-mid.hero-anim-ready > * {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}
.hero-program-title {
  font-family: var(--f-display);
  font-size: clamp(1.62rem, 4.59vw, 4.08rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--beige);
  line-height: .94;
  max-width: 14.5ch;
  text-wrap: balance;
  user-select: text;
  -webkit-user-select: text;
  pointer-events: auto;
  text-transform: uppercase;
  text-shadow: 0 10px 36px rgba(0, 0, 0, .34);
}
.hero-program-game {
  font-size: 1.18em;
  letter-spacing: .02em;
}
.hero-program-body {
  max-width: 48rem;
  margin: 0;
  color: rgba(240, 234, 214, .92);
  font-size: clamp(.95rem, 1.35vw, 1.14rem);
  line-height: 1.55;
  background: rgba(240,234,214,.09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .55rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(240,234,214,.18);
}
.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  text-align: center;
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.24rem, 5.6vw, 4.48rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--beige);
  line-height: 1.1;
  text-transform: uppercase;
}
.hero-cta-btn {
  min-width: min(88vw, 360px);
  border-radius: 18px;
  padding: 1.05rem 2.4rem;
  text-decoration: none;
}
.hero-cta-label {
  font-family: var(--f-display);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(240,234,214,.45);
  letter-spacing: .04em;
}

/* =========================================================
   PANELS WRAP — sits over the hero bottom
   ========================================================= */
/* =========================================================
   HERO FEATURE VIDEO — overlaps hero bottom, floats above about panel
   ========================================================= */
.hero-feature {
  position: relative;
  z-index: 10;
  max-width: 1196px;
  margin: -90px auto 0; /* pulls up into hero */
  padding: 0 2rem;
  transition: transform .56s ease, z-index .56s ease;
}

.hero-feature-video {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--black);
  box-shadow:
    0 0 0 1px rgba(240,234,214,.08),
    0 40px 100px rgba(0,0,0,.7),
    0 8px 24px rgba(0,0,0,.5);
}
.hero-feature-title {
  position: absolute;
  top: clamp(.7rem, 1.8vw, 1.3rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;
  pointer-events: none;
  text-shadow: 0 14px 34px rgba(0, 0, 0, .58);
}

.hero-feature-video .trailer-thumb {
  aspect-ratio: 16/9;
  position: relative;
}
.hero-feature-video .trailer-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #040810 0%, #0A1828 60%, #050C18 100%);
}
.hero-play-btn {
  width: 72px !important;
  height: 72px !important;
}
.hero-feature-video .video-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(12,11,10,.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--beige);
  border-bottom: 1px solid rgba(240,234,214,.08);
}

.panels-wrap {
  position: relative;
  z-index: 20;
  max-width: 1100px;
  margin: -4rem auto 0; /* further reduced overlap so the about panel sits less under the trailer */
  padding: 0 2rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* =========================================================
   PANEL — base card
   ========================================================= */
.panel {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 3rem;
  overflow: hidden;
}

.panel-heading {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.panel-heading-display {
  font-size: 3rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  line-height: 1;
}
.panel-sub {
  color: var(--ink-soft);
  font-size: .9rem;
  margin-top: -.8rem;
  margin-bottom: 2rem;
  max-width: 560px;
}
.panel-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.panel-count {
  font-family: var(--f-display);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* =========================================================
   PANEL 1 — INFO
   ========================================================= */
.panel-info {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-rows: auto auto;
  gap: 2rem;
  align-items: start;
  padding-top: 4rem;
  position: relative;
  z-index: 30;
  transition: transform .56s ease, z-index .56s ease, box-shadow .56s ease;
}


.panel-info-title {
  position: absolute;
  top: 2.2rem;
  left: 3rem;
  margin-bottom: 0;
  color: var(--ink);
  pointer-events: none;
  font-size: .65rem;
  letter-spacing: .18em;
  line-height: 1;
}

.panel-info:hover {
  z-index: 30;
  transform: translateY(-30px);
  box-shadow:
    0 32px 80px rgba(0,0,0,.28),
    0 0 0 1px rgba(26,23,20,.08);
}


.panel-info-left  { grid-column: 1; grid-row: 1; }
.panel-info-right { grid-column: 2; grid-row: 1; }

.cta-row-full {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: -.5rem;
}
.cta-row-full .btn-claim-big {
  width: auto;
  min-width: 220px;
}

/* Left */
.game-logo {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--ink);
  margin-bottom: .6rem;
}
.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}
.genre-tags span {
  font-family: var(--f-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mid);
  background: var(--beige-dark);
  border: 1px solid var(--beige-mid);
  padding: .35rem .85rem;
  border-radius: 100px;
}
.about-heading {
  font-family: var(--f-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .9rem;
}
.about-lead {
  font-size: .9rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.pr-contact {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
}
.pr-label {
  font-family: var(--f-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .8rem;
}
.pr-cards { display: flex; flex-direction: column; gap: .5rem; }
.pr-card {
  background: var(--beige-dark);
  border: 1px solid var(--beige-mid);
  border-radius: 8px;
  padding: .9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.pr-name {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  display: inline-block;
  width: fit-content;
  transition: opacity var(--ease);
}
.pr-name:hover { opacity: .6; }
.pr-role {
  font-family: var(--f-display);
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Right column */
.panel-info-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.social-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--beige-mid);
  background: var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.social-icon:hover {
  background: var(--ink);
  color: var(--beige);
  border-color: var(--ink);
}

/* Right sections (Important Dates / Developer / Platforms) */
.right-section { display: flex; flex-direction: column; gap: .3rem; }
.right-section-title {
  font-family: var(--f-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .15rem;
}

/* Date cards */
.date-card {
  background: var(--beige-dark);
  border: 1px solid var(--beige-mid);
  border-radius: 8px;
  padding: .45rem .8rem;
  display: flex;
  flex-direction: column;
  gap: .08rem;
}
.date-card-label {
  font-family: var(--f-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.date-card-value {
  font-size: .9rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.5;
}

/* Meta cards (developer / price / genre / status) */
.meta-card {
  background: var(--beige-dark);
  border: 1px solid var(--beige-mid);
  border-radius: 8px;
  padding: .45rem .8rem;
  display: flex;
  flex-direction: column;
  gap: .08rem;
}
.meta-card-label {
  font-family: var(--f-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.meta-card-value {
  font-size: .9rem;
  font-weight: 400;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
}

/* Platform pills */
.platform-pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--beige-dark);
  border: 1px solid var(--beige-mid);
  border-radius: 100px;
  padding: .5rem 1rem;
  font-family: var(--f-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink);
}

.btn-claim-big {
  display: block;
  text-align: center;
  background: var(--ink);
  color: var(--beige);
  font-family: var(--f-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 1.1rem;
  border-radius: 8px;
  transition: background var(--ease), transform .12s;
  margin-top: 0;
}
.btn-claim-big:hover {
  background: var(--black-soft);
  transform: translateY(-1px);
}
.btn-claim-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--beige-mid);
}
.btn-claim-secondary:hover {
  background: var(--beige-dark);
}

@media (max-width: 860px) {
  .panel-info {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .panel-info-left  { grid-column: 1; grid-row: 1; }
  .panel-info-right { grid-column: 1; grid-row: 2; border-top: 1px solid var(--border); padding-top: 2rem; }
  .cta-row-full     { grid-column: 1; grid-row: 3; flex-direction: column; align-items: stretch; }
  .cta-row-full .btn-claim-big { min-width: unset; text-align: center; }
}

/* =========================================================
   PANEL 1.5 — BENTO V2  (4-tile asymmetric)
   ========================================================= */

.panel-bento2 {
  /* no extra wrapper styling needed — sits in panels-wrap flow */
}

.bento2-grid {
  display: flex;
  gap: .75rem;
  min-height: 580px;
}

.bento2-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* ── Base tile ── */
.bento2-tile {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

/* ── Text tiles ── */
.bento2-light {
  background: var(--beige);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
}

.bento2-dark {
  background: var(--black);
  border: 1px solid rgba(240,234,214,.08);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.6rem;
  min-height: 200px;
}

.bento2-heading {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.bento2-heading em {
  font-style: italic;
  font-weight: 300;
}
.bento2-heading-inv { color: var(--beige); }

.bento2-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--beige);
  color: var(--black);
  font-family: var(--f-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .75rem 1.4rem;
  border-radius: 100px;
  transition: background var(--ease), transform .15s;
  align-self: flex-start;
}
.bento2-cta:hover {
  background: var(--white);
  transform: translateY(-1px);
}

/* ── Image tiles ── */
.bento2-scene {
  flex: 1;
  padding: 1.2rem;
  display: flex;
}

.bento2-amber { background: #D4A843; }
.bento2-slate { background: #8EA8A0; }

/* Rounded image fill */
.bento2-roundimg {
  flex: 1;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

/* Game scene mocks */
.bento2-sea {
  background:
    radial-gradient(ellipse at 50% 110%, rgba(6,18,35,.0) 0%, rgba(4,10,22,1) 60%),
    linear-gradient(180deg, #0A1E35 0%, #06111F 40%, #030912 100%);
}
.bento2-sea::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 28px,
    rgba(255,255,255,.025) 28px,
    rgba(255,255,255,.025) 29px
  );
}
.bento2-sea::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(180,220,255,.15), transparent);
  box-shadow: 0 12px 0 rgba(180,220,255,.08), 0 24px 0 rgba(180,220,255,.05);
}

.bento2-coast {
  background:
    radial-gradient(ellipse at 50% 110%, rgba(6,18,35,.0) 0%, rgba(4,10,22,1) 60%),
    linear-gradient(180deg, #0D1A10 0%, #06100A 50%, #030809 100%);
}
.bento2-coast::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,230,100,.06) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 0%, rgba(255,220,80,.12) 0%, transparent 35%);
}
.bento2-coast::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 15%;
  transform: translateX(-50%);
  width: 4px; height: 40%;
  background: linear-gradient(to bottom, rgba(255,230,120,.5), rgba(255,230,120,.1));
  border-radius: 2px;
  box-shadow: 0 0 20px 6px rgba(255,230,100,.08);
}

/* Speech bubble overlay on image */
.bento2-bubble {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 4;
  background: rgba(255,255,255,.96);
  color: #111;
  font-family: var(--f-body);
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.3;
  padding: .45rem 1rem;
  border-radius: 100px;
  box-shadow: 0 2px 14px rgba(0,0,0,.18);
  max-width: 80%;
  backdrop-filter: blur(4px);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .bento2-grid { flex-direction: column; min-height: unset; }
  .bento2-scene { min-height: 280px; }
}

/* ─────────────────────────────────────────────
   OLD bento internals (kept for reference — now unused)
   ───────────────────────────────────────────── */


/* =========================================================
   PANEL 2 — REDEEM
   ========================================================= */
.panel-redeem {
  background: transparent;
  color: var(--beige);
  padding: 7rem 3rem 8rem;
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  align-self: center;
  display: flex;
  justify-content: center;
  width: min(1320px, calc(100% + 12rem));
  margin-left: -6rem;
  margin-right: -6rem;
}

/* Decorative glow blobs */
.redeem-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.redeem-glow-l {
  width: 360px; height: 360px;
  background: rgba(240,234,214,.04);
  top: -80px; left: -60px;
}
.redeem-glow-r {
  width: 280px; height: 280px;
  background: rgba(240,234,214,.03);
  bottom: -40px; right: 10%;
}

.redeem-inner {
  display: grid;
  grid-template-columns: 0.55fr 420px;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding-top: 2rem;
  width: min(1040px, calc(100% - 2rem));
  margin: 0;
}

.redeem-headline {
  font-size: clamp(3.5rem, 6vw, 5.5rem) !important;
  line-height: 1 !important;
  letter-spacing: -.04em;
  margin-bottom: 1.2rem !important;
}

.panel-redeem .panel-heading { color: var(--beige); }

.redeem-intro {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.redeem-intro {
  width: min(100%, 31rem);
  justify-self: center;
}

.redeem-form-wrap {
  background: rgba(5,8,15,.35);
  border: 1px solid rgba(240,234,214,.18);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.redeem-form,
.redeem-success {
  width: 100%;
}

.redeem-lead {
  font-size: .9rem;
  color: rgba(240,234,214,.55);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.redeem-intro p {
  font-size: .9rem;
  color: rgba(240,234,214,.55);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2rem;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .87rem;
  color: rgba(240,234,214,.75);
}
.check {
  font-family: var(--f-display);
  font-size: .65rem;
  font-weight: 700;
  background: rgba(240,234,214,.1);
  color: var(--beige);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.campaign-timer {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.4rem;
  font-family: var(--f-display);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240,234,214,.3);
  padding-top: .3rem;
}

/* Form */
.redeem-card-title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--beige);
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.redeem-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.redeem-form .form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.redeem-form label {
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(240,234,214,.55);
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.redeem-form input {
  width: 100%;
  background: rgba(5,8,15,.35);
  border: 1px solid rgba(240,234,214,.2);
  color: var(--beige);
  padding: .78rem 1rem;
  font-family: var(--f-body);
  font-size: .95rem;
  letter-spacing: .03em;
  outline: none;
  border-radius: 10px;
  transition: border-color .18s, box-shadow .18s;
}
.redeem-form input::placeholder { color: rgba(240,234,214,.2); }
.redeem-form input:focus {
  border-color: rgba(240,234,214,.35);
  box-shadow: 0 0 0 3px rgba(240,234,214,.05);
}

.form-error {
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.2);
  color: #FCA5A5;
  padding: .75rem 1rem;
  font-size: .82rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
}
.form-success {
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3);
  color: #BBF7D0;
  padding: .75rem 1rem;
  font-size: .82rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 16px;
}

/* ── FishyButton ─────────────────────────────────── */
.fishy-btn--1 { --fc1:#365fa8;--fc2:#4a76c5;--fc3:#5f8ce2;--fc4:#73a3ff;--fc5:#21488b;--fc6:#132a52; }
.fishy-btn {
  display: flex; justify-content: center; align-items: center;
  position: relative; overflow: hidden;
  background: var(--fc5);
  box-shadow: 0 0 12px rgba(0,0,0,.45), 0 0 8px rgba(0,0,0,.25) inset;
  transition: all ease .7s;
  text-decoration: none;
}
.fishy-btn::before {
  content: ''; position: absolute; z-index: 6;
  top:0;left:0;width:100%;height:100%;
  background: linear-gradient(rgba(0,25,85,0) 60%,rgba(0,25,85,.4));
  pointer-events: none;
}
.fishy-btn:disabled,.fishy-btn[aria-disabled="true"] { opacity:.5; cursor:not-allowed; }
.fishy-btn .fishy-wave {
  position:absolute;top:0;left:0;width:100%;height:100%;
  filter:drop-shadow(0 0 3px rgba(10,60,90,0.8));
}
.fishy-btn .fishy-wave:nth-child(1){z-index:1}
.fishy-btn .fishy-wave:nth-child(2){z-index:2}
.fishy-btn .fishy-wave:nth-child(3){z-index:3}
.fishy-btn .fishy-wave:nth-child(4){z-index:5}
.fishy-btn .fishy-wave:nth-child(1)::before,.fishy-btn .fishy-wave:nth-child(1)::after{
  content:'';position:absolute;width:120px;height:65px;background:var(--fc1);
  clip-path:path('M140.44,0c-12.81,1.3-12.59,12.11-35.96,10.7-14.56-.88-16.21,19.13-40.12,10.57-17.84-6.39-37.9-1.86-49.13,10.03C2.01,45.31,3.29,51.05,0,65.19H140.44V0Z');
  animation:fishy-wave1 linear 3s infinite alternate;
}
.fishy-btn .fishy-wave:nth-child(1)::before,.fishy-btn .fishy-wave:nth-child(2)::before,
.fishy-btn .fishy-wave:nth-child(3)::before,.fishy-btn .fishy-wave:nth-child(4)::before{transform:rotate(180deg);transition:all ease 4.4s}
.fishy-btn .fishy-wave:nth-child(1)::after,.fishy-btn .fishy-wave:nth-child(2)::after,
.fishy-btn .fishy-wave:nth-child(3)::after,.fishy-btn .fishy-wave:nth-child(4)::after{transition:all ease 4.4s}
.fishy-btn .fishy-wave:nth-child(1)::before{top:-16px;left:-16px}
.fishy-btn .fishy-wave:nth-child(2)::before{top:-20px;left:-20px}
.fishy-btn .fishy-wave:nth-child(3)::before{top:-20px;left:-20px}
.fishy-btn .fishy-wave:nth-child(4)::before{top:-20px;left:-20px}
.fishy-btn .fishy-wave:nth-child(1)::after{bottom:-16px;right:-16px}
.fishy-btn .fishy-wave:nth-child(2)::after{bottom:-20px;right:-20px}
.fishy-btn .fishy-wave:nth-child(3)::after{bottom:-20px;right:-20px}
.fishy-btn .fishy-wave:nth-child(4)::after{bottom:-20px;right:-20px}
.fishy-btn .fishy-wave:nth-child(2)::before,.fishy-btn .fishy-wave:nth-child(2)::after{
  content:'';position:absolute;width:139px;height:61px;background:var(--fc2);
  clip-path:path('M137.15,.03c-16.75-.44-27.29,4.77-33.69,10.72-6.4,5.96-24.52,19.73-43.08,9.17-13.1-7.46-26.74-3.14-38.25,4.78C6.61,35.38,3.74,44.74,0,59.63H137.15V.03Z');
  animation:fishy-wave2 linear 3s infinite alternate;
}
.fishy-btn .fishy-wave:nth-child(3)::before,.fishy-btn .fishy-wave:nth-child(3)::after{
  content:'';position:absolute;width:134px;height:56px;background:var(--fc3);
  clip-path:path('M132.61,0c-9.18,3.92-11.29,5.2-19.97,4.19-9.33-1.09-10.97,12.29-25.37,15.53-9.69,2.18-17.12-7.15-28.89-5.37-15.68,2.38-16.35,7.79-29.01,9.38C4.37,26.86-.79,50.3,.09,54.49H132.61V0Z');
  animation:fishy-wave3 linear 3s infinite alternate;
}
.fishy-btn .fishy-wave:nth-child(4)::before,.fishy-btn .fishy-wave:nth-child(4)::after{
  content:'';position:absolute;width:129px;height:47px;background:var(--fc4);
  clip-path:path('M128.7,.2c-16.75-.44-23.99-.69-30.39,5.26-6.4,5.96-8.68,12.19-26.99,7.33-9.6-2.54-24.02-4.44-34.16,2.33-10.83,7.23-14.87,9.49-22.83,10.33C1.59,26.81-.72,39.73,.17,43.92H128.7V.2Z');
  animation:fishy-wave4 linear 3s infinite alternate;
}
.fishy-text {
  position:relative;z-index:7;
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  color:#fff;transition:all ease 1s;
  font-family:var(--f-display);font-weight:700;letter-spacing:.18em;text-transform:uppercase;
}
.fishy-btn:hover{background:var(--fc6);box-shadow:0 0 12px rgba(0,0,0,0),0 0 12px rgba(0,0,0,.4) inset}
.fishy-btn:hover .fishy-wave{animation:fishy-shadow ease 1s;animation-fill-mode:forwards}
.fishy-btn:hover .fishy-text{letter-spacing:.22em}
.fishy-btn:hover .fishy-wave:nth-child(1)::before{top:-2px;left:-2px}
.fishy-btn:hover .fishy-wave:nth-child(1)::after{bottom:-2px;right:-2px}
.fishy-btn:hover .fishy-wave:nth-child(2)::before{top:-2px;left:-2px}
.fishy-btn:hover .fishy-wave:nth-child(2)::after{bottom:-2px;right:-2px}
.fishy-btn:hover .fishy-wave:nth-child(3)::before{top:-3px;left:-3px}
.fishy-btn:hover .fishy-wave:nth-child(3)::after{bottom:-3px;right:-3px}
.fishy-btn:hover .fishy-wave:nth-child(4)::before{top:-4px;left:-4px}
.fishy-btn:hover .fishy-wave:nth-child(4)::after{bottom:-4px;right:-4px}
.fishy-btn .fishy-fish{
  position:absolute;z-index:4;top:-80px;right:-20px;width:52px;height:78px;
  clip-path:path('M34.53,16.03c5.88-1.55,11.58,.46,16.58-2.77-8.2-.76-6.29-2.68-9.51-3.84,.25-2.73-4.57-5.35-3.07-9.43-4.36,3.06-2.05,8.99-6.07,13.57,0,0-17.91,9.39-25.74,22.9-2.04-2.67-3.76-8.1-5.1-9.25,1.19,5.05-.05,9.67,1.84,15.88-.03,.08-7.85,22.39,.12,30.85,3.05,3.24,15.5-12.58,18.03-25.6,5.49-4.79,6.56-9.79,10.27-13.88-1.67,.35-5.57,3.99-8.6,5.46,3.5-14.8,8.58-20.9,11.25-23.9Z');
  background:#fff;opacity:0;pointer-events:none;transition:opacity .3s ease;
}
.fishy-btn.fishy-active .fishy-fish{animation:fishy-fish ease 2.3s forwards;opacity:1}
.fishy-btn .fishy-bubble{position:absolute;z-index:7;top:0;width:30px;height:80px}
.fishy-btn .fishy-bubble::before,.fishy-btn .fishy-bubble::after{
  content:'';position:absolute;bottom:0;border-radius:50%;background:rgba(255,255,255,0);
}
.fishy-btn .fishy-bubble:nth-child(6){left:16px}
.fishy-btn .fishy-bubble:nth-child(7){left:48px}
.fishy-btn .fishy-bubble:nth-child(8){right:16px}
.fishy-btn .fishy-bubble:nth-child(9){right:48px}
.fishy-btn .fishy-bubble:nth-child(6)::before{width:16px;height:16px;left:0;bottom:-60px;transition:all ease 3.7s}
.fishy-btn .fishy-bubble:nth-child(6)::after{width:8px;height:8px;right:4px;bottom:-10px;transition:all ease 3.4s}
.fishy-btn .fishy-bubble:nth-child(7)::before{width:10px;height:10px;left:0;bottom:-25px;transition:all ease 3.5s}
.fishy-btn .fishy-bubble:nth-child(7)::after{width:14px;height:14px;right:0;bottom:-50px;transition:all ease 3.3s}
.fishy-btn .fishy-bubble:nth-child(8)::before{width:16px;height:16px;left:0;bottom:-30px;transition:all ease 3.5s}
.fishy-btn .fishy-bubble:nth-child(8)::after{width:8px;height:8px;right:4px;bottom:-70px;transition:all ease 3.3s}
.fishy-btn .fishy-bubble:nth-child(9)::before{width:10px;height:10px;left:0;bottom:-40px;transition:all ease 3.6s}
.fishy-btn .fishy-bubble:nth-child(9)::after{width:14px;height:14px;right:0;bottom:-15px;transition:all ease 3.7s}
.fishy-btn:hover .fishy-bubble::before,.fishy-btn:hover .fishy-bubble::after{background:rgba(255,255,255,.28);bottom:100px}

@keyframes fishy-shadow{0%{filter:drop-shadow(0 0 1.5px rgba(10,60,90,.4))}100%{filter:drop-shadow(0 0 10px rgba(10,60,90,.35))}}
@keyframes fishy-wave1{0%{clip-path:path('M140.44,0c-12.81,1.3-12.59,12.11-35.96,10.7-14.56-.88-16.21,19.13-40.12,10.57-17.84-6.39-37.9-1.86-49.13,10.03C2.01,45.31,3.29,51.05,0,65.19H140.44V0Z')}100%{clip-path:path('M140.44,0c-17.21,3.05-17.35,17.42-35.08,14.77-16.69-2.49-23.72-6.62-50.13,7.7-13.98,6.99-26.83-2.07-39.76,8.45C4.54,39.98,3.29,48.5,0,62.64H140.44V0Z')}}
@keyframes fishy-wave2{0%{clip-path:path('M137.15,.03c-16.75-.44-27.29,4.77-33.69,10.72-6.4,5.96-24.52,19.73-43.08,9.17-13.1-7.46-26.74-3.14-38.25,4.78C6.61,35.38,3.74,44.74,0,59.63H137.15V.03Z')}100%{clip-path:path('M137.15,0c-17.21,10.16-17.24,10.78-37.72,9.6-14.61-.84-20.23,16.56-38.49,12.08-14.89-3.65-18.21,9.53-31.75,6.88C10.69,24.95,3.74,44.71,0,59.6H137.15V0Z')}}
@keyframes fishy-wave3{0%{clip-path:path('M132.61,0c-9.18,3.92-11.29,5.2-19.97,4.19-9.33-1.09-10.97,12.29-25.37,15.53-9.69,2.18-17.12-7.15-28.89-5.37-15.68,2.38-16.35,7.79-29.01,9.38C4.37,26.86-.79,50.3,.09,54.49H132.61V0Z')}100%{clip-path:path('M132.53,0c-3.02,8.29-13.7,3.05-21.15,10.78-6.52,6.76-10.8,3.72-29.64,3.97-9.93,.13-15.11,7.85-26.94,9.14-10.81,1.18-15.58-4.27-28.13-1.99C8.04,25.29-.82,50.3,.06,54.49H132.53V0Z')}}
@keyframes fishy-wave4{0%{clip-path:path('M128.7,.2c-16.75-.44-23.99-.69-30.39,5.26-6.4,5.96-8.68,12.19-26.99,7.33-9.6-2.54-24.02-4.44-34.16,2.33-10.83,7.23-14.87,9.49-22.83,10.33C1.59,26.81-.72,39.73,.17,43.92H128.7V.2Z')}100%{clip-path:path('M128.53,0c-13.22,12-19.04,5.96-27.62,4.3-12.9-2.5-14.51,2.69-29.7,10.84-8.75,4.7-15.33,2.81-28.21-.3-15.44-3.72-19.2,7.95-29.03,11.04C4.72,28.8,.76,37.83,0,43.72H128.53V0Z')}}
@keyframes fishy-fish{
  0%{top:-80px;right:-20px;transform:rotate(0);clip-path:path('M34.53,16.03c5.88-1.55,11.58,.46,16.58-2.77-8.2-.76-6.29-2.68-9.51-3.84,.25-2.73-4.57-5.35-3.07-9.43-4.36,3.06-2.05,8.99-6.07,13.57,0,0-17.91,9.39-25.74,22.9-2.04-2.67-3.76-8.1-5.1-9.25,1.19,5.05-.05,9.67,1.84,15.88-.03,.08-7.85,22.39,.12,30.85,3.05,3.24,15.5-12.58,18.03-25.6,5.49-4.79,6.56-9.79,10.27-13.88-1.67,.35-5.57,3.99-8.6,5.46,3.5-14.8,8.58-20.9,11.25-23.9Z')}
  10%{clip-path:path('M17.92,14.38c1.77-4.98,5.6-8.82,5.7-14.38-4.05,6.12-5,3.31-8.12,6-2.63-1.74-6.8,1.19-9.75-2.12,.35,5.4,6.79,7.43,8.26,12.02,0,0,.86,10.01-6.97,23.52-2.04-2.67-3.76-8.1-5.1-9.25,1.19,5.05-.05,9.67,1.84,15.88-.03,.08-8.58,20.98,.12,30.85,2.94,3.34,19.34-10.13,18.67-25.45,5.49-4.79,5.92-9.94,9.63-14.03-1.67,.35-6.84,4.82-9.88,6.29,.14-12.63-4.09-23.04-4.42-29.33Z')}
  20%{clip-path:path('M34.53,16.03c5.88-1.55,11.58,.46,16.58-2.77-8.2-.76-6.29-2.68-9.51-3.84,.25-2.73-4.57-5.35-3.07-9.43-4.36,3.06-2.05,8.99-6.07,13.57,0,0-17.91,9.39-25.74,22.9-2.04-2.67-3.76-8.1-5.1-9.25,1.19,5.05-.05,9.67,1.84,15.88-.03,.08-7.85,22.39,.12,30.85,3.05,3.24,15.5-12.58,18.03-25.6,5.49-4.79,6.56-9.79,10.27-13.88-1.67,.35-5.57,3.99-8.6,5.46,3.5-14.8,8.58-20.9,11.25-23.9Z')}
  30%{clip-path:path('M17.92,14.38c1.77-4.98,5.6-8.82,5.7-14.38-4.05,6.12-5,3.31-8.12,6-2.63-1.74-6.8,1.19-9.75-2.12,.35,5.4,6.79,7.43,8.26,12.02,0,0,.86,10.01-6.97,23.52-2.04-2.67-3.76-8.1-5.1-9.25,1.19,5.05-.05,9.67,1.84,15.88-.03,.08-8.58,20.98,.12,30.85,2.94,3.34,19.34-10.13,18.67-25.45,5.49-4.79,5.92-9.94,9.63-14.03-1.67,.35-6.84,4.82-9.88,6.29,.14-12.63-4.09-23.04-4.42-29.33Z')}
  40%{clip-path:path('M34.53,16.03c5.88-1.55,11.58,.46,16.58-2.77-8.2-.76-6.29-2.68-9.51-3.84,.25-2.73-4.57-5.35-3.07-9.43-4.36,3.06-2.05,8.99-6.07,13.57,0,0-17.91,9.39-25.74,22.9-2.04-2.67-3.76-8.1-5.1-9.25,1.19,5.05-.05,9.67,1.84,15.88-.03,.08-7.85,22.39,.12,30.85,3.05,3.24,15.5-12.58,18.03-25.6,5.49-4.79,6.56-9.79,10.27-13.88-1.67,.35-5.57,3.99-8.6,5.46,3.5-14.8,8.58-20.9,11.25-23.9Z')}
  50%{clip-path:path('M17.92,14.38c1.77-4.98,5.6-8.82,5.7-14.38-4.05,6.12-5,3.31-8.12,6-2.63-1.74-6.8,1.19-9.75-2.12,.35,5.4,6.79,7.43,8.26,12.02,0,0,.86,10.01-6.97,23.52-2.04-2.67-3.76-8.1-5.1-9.25,1.19,5.05-.05,9.67,1.84,15.88-.03,.08-8.58,20.98,.12,30.85,2.94,3.34,19.34-10.13,18.67-25.45,5.49-4.79,5.92-9.94,9.63-14.03-1.67,.35-6.84,4.82-9.88,6.29,.14-12.63-4.09-23.04-4.42-29.33Z')}
  60%{clip-path:path('M34.53,16.03c5.88-1.55,11.58,.46,16.58-2.77-8.2-.76-6.29-2.68-9.51-3.84,.25-2.73-4.57-5.35-3.07-9.43-4.36,3.06-2.05,8.99-6.07,13.57,0,0-17.91,9.39-25.74,22.9-2.04-2.67-3.76-8.1-5.1-9.25,1.19,5.05-.05,9.67,1.84,15.88-.03,.08-7.85,22.39,.12,30.85,3.05,3.24,15.5-12.58,18.03-25.6,5.49-4.79,6.56-9.79,10.27-13.88-1.67,.35-5.57,3.99-8.6,5.46,3.5-14.8,8.58-20.9,11.25-23.9Z')}
  70%{clip-path:path('M17.92,14.38c1.77-4.98,5.6-8.82,5.7-14.38-4.05,6.12-5,3.31-8.12,6-2.63-1.74-6.8,1.19-9.75-2.12,.35,5.4,6.79,7.43,8.26,12.02,0,0,.86,10.01-6.97,23.52-2.04-2.67-3.76-8.1-5.1-9.25,1.19,5.05-.05,9.67,1.84,15.88-.03,.08-8.58,20.98,.12,30.85,2.94,3.34,19.34-10.13,18.67-25.45,5.49-4.79,5.92-9.94,9.63-14.03-1.67,.35-6.84,4.82-9.88,6.29,.14-12.63-4.09-23.04-4.42-29.33Z')}
  80%{clip-path:path('M34.53,16.03c5.88-1.55,11.58,.46,16.58-2.77-8.2-.76-6.29-2.68-9.51-3.84,.25-2.73-4.57-5.35-3.07-9.43-4.36,3.06-2.05,8.99-6.07,13.57,0,0-17.91,9.39-25.74,22.9-2.04-2.67-3.76-8.1-5.1-9.25,1.19,5.05-.05,9.67,1.84,15.88-.03,.08-7.85,22.39,.12,30.85,3.05,3.24,15.5-12.58,18.03-25.6,5.49-4.79,6.56-9.79,10.27-13.88-1.67,.35-5.57,3.99-8.6,5.46,3.5-14.8,8.58-20.9,11.25-23.9Z')}
  90%{clip-path:path('M17.92,14.38c1.77-4.98,5.6-8.82,5.7-14.38-4.05,6.12-5,3.31-8.12,6-2.63-1.74-6.8,1.19-9.75-2.12,.35,5.4,6.79,7.43,8.26,12.02,0,0,.86,10.01-6.97,23.52-2.04-2.67-3.76-8.1-5.1-9.25,1.19,5.05-.05,9.67,1.84,15.88-.03,.08-8.58,20.98,.12,30.85,2.94,3.34,19.34-10.13,18.67-25.45,5.49-4.79,5.92-9.94,9.63-14.03-1.67,.35-6.84,4.82-9.88,6.29,.14-12.63-4.09-23.04-4.42-29.33Z')}
  100%{top:100px;right:80px;transform:rotate(40deg);clip-path:path('M17.92,14.38c1.77-4.98,5.6-8.82,5.7-14.38-4.05,6.12-5,3.31-8.12,6-2.63-1.74-6.8,1.19-9.75-2.12,.35,5.4,6.79,7.43,8.26,12.02,0,0,.86,10.01-6.97,23.52-2.04-2.67-3.76-8.1-5.1-9.25,1.19,5.05-.05,9.67,1.84,15.88-.03,.08-8.58,20.98,.12,30.85,2.94,3.34,19.34-10.13,18.67-25.45,5.49-4.79,5.92-9.94,9.63-14.03-1.67,.35-6.84,4.82-9.88,6.29,.14-12.63-4.09-23.04-4.42-29.33Z')}
}
.btn-submit:disabled{opacity:.5;cursor:not-allowed}

.form-note {
  font-size: .72rem;
  color: rgba(240,234,214,.55);
  text-align: center;
  line-height: 1.55;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.form-note-link {
  color: rgba(240,234,214,.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-note-link:hover { color: rgba(240,234,214,.95); }

/* Success */
.redeem-success { color: var(--beige); }
.success-icon {
  width: 48px;
  height: 48px;
  background: rgba(34,197,94,.12);
  border: 1.5px solid rgba(34,197,94,.3);
  color: #4ADE80;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--f-display);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
}
.redeem-success h3 {
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: .4rem;
}
.redeem-success > p {
  color: rgba(240,234,214,.5);
  font-size: .88rem;
  text-align: center;
  margin-bottom: 1.3rem;
}
.success-video-link-wrap {
  color: rgba(240,234,214,.72) !important;
}
.success-video-link {
  color: #8ED8FF;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.success-video-link:hover {
  color: #C8ECFF;
}
.key-display {
  display: flex;
  border: 1px solid rgba(240,234,214,.12);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: rgba(240,234,214,.04);
}
.key-display code {
  flex: 1;
  padding: .85rem 1rem;
  font-size: .88rem;
  color: var(--beige);
  letter-spacing: .08em;
  word-break: break-all;
}
.btn-copy {
  background: var(--beige);
  color: var(--black);
  padding: .85rem 1.1rem;
  font-family: var(--f-display);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background var(--ease);
}
.btn-copy:hover { background: #fff; }
.btn-copy.copied { background: #4ADE80; }
.key-instruction {
  font-size: .76rem;
  color: rgba(240,234,214,.3);
  line-height: 1.6;
}
.key-instruction a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.key-instruction a:hover { color: inherit; }

.spinner { animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Friend Pass expandable */
.friend-pass-section {
  margin-top: 1.5rem;
  width: min(100%, 520px);
  border-top: 1px solid rgba(240,234,214,.12);
  padding-top: 1rem;
}
.friend-pass-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  background: none;
  border: none;
  color: rgba(240,234,214,.55);
  font-family: var(--f-body);
  font-size: .8rem;
  cursor: pointer;
  padding: .4rem 0;
  text-align: left;
  transition: color var(--ease);
}
.friend-pass-toggle:hover { color: rgba(240,234,214,.85); }
.friend-pass-toggle-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform .25s ease;
}
.friend-pass-toggle[aria-expanded="true"] .friend-pass-toggle-icon {
  transform: rotate(180deg);
}
.friend-pass-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, opacity .3s ease;
  opacity: 0;
}
.friend-pass-body.open {
  max-height: 400px;
  opacity: 1;
}
.friend-pass-body-inner {
  padding: .85rem 0 .4rem;
  font-size: .82rem;
  color: rgba(240,234,214,.55);
  line-height: 1.65;
}
.friend-pass-body-inner strong {
  color: rgba(240,234,214,.85);
  display: block;
  margin-bottom: .45rem;
  font-size: .85rem;
}
.friend-pass-body-inner ol {
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.friend-pass-body-inner a {
  color: rgba(240,234,214,.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.friend-pass-body-inner a:hover { color: var(--beige); }

@media (max-width: 720px) {
  .redeem-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .panel-redeem {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 5rem 1.5rem 6rem;
    min-height: auto;
  }
  .panel-info-title {
    top: 2.2rem;
    left: 1.5rem;
  }
}

/* =========================================================
   PANEL 3 — VIDEOS
   ========================================================= */
.videos-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 1.2rem;
  align-items: start;
}

.video-featured {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--black);
  cursor: pointer;
}
.video-featured .trailer-thumb {
  position: relative;
  aspect-ratio: 16/9;
}
.video-featured .trailer-bg-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #060D18 0%, #0A1828 60%, #060B12 100%);
  position: absolute;
  inset: 0;
}
.video-featured .trailer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--beige);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), transform .15s;
  padding-left: 3px;
}
.play-btn:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}
.video-title {
  padding: .85rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--beige-dark);
}

.video-thumbs {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.video-thumb-item { cursor: pointer; }
.vthumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: .4rem;
}
.vthumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  color: rgba(255,255,255,.85);
  transition: background var(--ease);
}
.vthumb:hover .vthumb-play { background: rgba(0,0,0,.5); }
.vthumb-1 { background: linear-gradient(135deg, #060D18 0%, #0C1D2F 100%); }
.vthumb-2 { background: linear-gradient(135deg, #120805 0%, #201008 100%); }
.vthumb-3 { background: linear-gradient(135deg, #060812 0%, #0A0D1F 100%); }
.video-thumb-item p {
  font-size: .78rem;
  color: var(--ink-mid);
  line-height: 1.3;
}

@media (max-width: 720px) {
  .videos-layout { grid-template-columns: 1fr; }
  .video-thumbs { flex-direction: row; overflow-x: auto; }
  .video-thumb-item { min-width: 160px; }
}

/* =========================================================
   PANEL 4 — SCREENSHOTS  (horizontal auto-scroll strip)
   ========================================================= */

.panel-screenshots {
  overflow: hidden;
}

/* Outer: bleeds to edges, gradient fade on both sides */
.ss-strip-outer {
  position: relative;
  overflow: hidden;
  margin: 0 -3rem;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

/* Track — left-to-right (from -50% to 0) */
.ss-strip-track {
  display: flex;
  align-items: center;
  gap: 0; /* spacing controlled per-item for variety */
  padding: 1.2rem 3rem;
  width: max-content;
  animation: ss-scroll 40s linear infinite;
  will-change: transform;
}

.ss-strip-outer:hover .ss-strip-track {
  animation-play-state: paused;
}

/* Left-to-right: strip slides from -50% back to 0 */
@keyframes ss-scroll {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Individual item — no fixed width/height; set per nth-child */
.ss-item {
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* Varied widths, heights, and gaps for a collage feel */
.ss-strip-track .ss-item:nth-child(6n+1) { width: 305px; height: 198px; margin-right: 2.8rem; }
.ss-strip-track .ss-item:nth-child(6n+2) { width: 238px; height: 232px; margin-right: 1rem;   }
.ss-strip-track .ss-item:nth-child(6n+3) { width: 370px; height: 186px; margin-right: 3.5rem; }
.ss-strip-track .ss-item:nth-child(6n+4) { width: 252px; height: 215px; margin-right: 0.8rem; }
.ss-strip-track .ss-item:nth-child(6n+5) { width: 318px; height: 172px; margin-right: 2.2rem; }
.ss-strip-track .ss-item:nth-child(6n+6) { width: 268px; height: 228px; margin-right: 4rem;   }

/* Background fill (CSS gradient mock — replace with real <img> for production) */
.ss-item-bg {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}
.ss-item:hover .ss-item-bg { transform: scale(1.05); }

/* Gradient themes — matching original palette */
.ss-1 { background: linear-gradient(145deg, #07101A 0%, #0E2030 60%, #0A1828 100%); }
.ss-2 { background: linear-gradient(145deg, #160A06 0%, #2E1408 60%, #1A0D06 100%); }
.ss-3 { background: linear-gradient(145deg, #060C07 0%, #0E1C0F 60%, #081410 100%); }
.ss-4 { background: linear-gradient(145deg, #090D14 0%, #121C28 60%, #0C1520 100%); }
.ss-5 { background: linear-gradient(145deg, #140808 0%, #261414 60%, #180A0A 100%); }
.ss-6 { background: linear-gradient(145deg, #04070D 0%, #081420 60%, #050C18 100%); }

/* Overlay shown on hover */
.ss-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem 1rem .8rem;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .22s ease;
}
.ss-item:hover .ss-item-overlay { opacity: 1; }

.ss-item-caption {
  font-family: var(--f-display);
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(240,234,214,.8);
}

/* Download button */
.ss-dl-btn {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(240,234,214,.15);
  border: 1px solid rgba(240,234,214,.2);
  color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, transform .15s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ss-dl-btn:hover {
  background: rgba(240,234,214,.3);
  transform: scale(1.1);
}

/* =========================================================
   SCREENSHOTS — 5-column mosaic (reference-style)
   edge (partial) · col · col · col · edge (partial)
   ========================================================= */

/* Outer: centers the mosaic so both edges overflow equally */
.ss-mosaic-outer {
  overflow: hidden;
  margin: 0 -3rem;
  display: flex;
  justify-content: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
}

/* Inner mosaic row */
.ss-mosaic {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  height: 450px;
  flex-shrink: 0;
  padding: 0 0.5rem;
}

/* Each column stacks items vertically */
.ss-mosaic-col {
  flex: 0 0 248px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Edge columns are slightly narrower — they get clipped by overflow */
.ss-mosaic-edge {
  flex: 0 0 210px;
}

/* Items fill their column; height controlled by flex ratios */
.ss-mosaic-col .ss-item {
  flex: 1;
  width: 100%;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* Edge column has a single full-height item */
.ss-mosaic-edge .ss-item {
  border-radius: 20px;
}

/* Vary the height split per column for a collage feel */
.ss-mosaic-col:nth-child(2) .ss-item:first-child { flex: 1.45; }
.ss-mosaic-col:nth-child(2) .ss-item:last-child  { flex: 0.55; }
.ss-mosaic-col:nth-child(3) .ss-item:first-child { flex: 0.65; }
.ss-mosaic-col:nth-child(3) .ss-item:last-child  { flex: 1.35; }
.ss-mosaic-col:nth-child(4) .ss-item:first-child { flex: 1.1;  }
.ss-mosaic-col:nth-child(4) .ss-item:last-child  { flex: 0.9;  }

@media (max-width: 760px) {
  .ss-mosaic { height: 340px; }
  .ss-mosaic-col { flex: 0 0 180px; }
  .ss-mosaic-edge { flex: 0 0 140px; }
}

/* Hint text */
.ss-hint {
  text-align: center;
  margin-top: 1.2rem;
  font-family: var(--f-display);
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: .5;
}

/* =========================================================
   MEDIA PANEL — tabs
   ========================================================= */
.panel-media {
  overflow: hidden;
}

.media-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.media-tabs {
  display: flex;
  gap: .35rem;
  background: var(--beige-dark);
  border: 1px solid var(--beige-mid);
  border-radius: 100px;
  padding: .3rem;
}

.media-tab {
  font-family: var(--f-display);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: .45rem 1rem;
  border-radius: 100px;
  transition: background var(--ease), color var(--ease);
  cursor: pointer;
}

.media-tab.active {
  background: var(--ink);
  color: var(--beige);
}

.media-tab:not(.active):hover {
  color: var(--ink);
}

.media-section {
  transition: opacity .15s ease;
}

.media-section.hidden {
  display: none;
}

.media-section-screenshots {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* hide the border+top-spacing when videos section is hidden */
.media-section-videos.hidden + .media-section-screenshots {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.media-section-label {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
}

/* =========================================================
   SPLIT ROW — News + Press Kit side by side
   ========================================================= */
.panel-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch; /* both panels always equal height */
}

@media (max-width: 760px) {
  .panel-split-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MEDIA FILTER GRID — static grid shown when a tab is active
   ========================================================= */
.media-filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: .4rem 0;
}

/* =========================================================
   MEDIA STRIP — 2-row scrolling mix of videos + screenshots
   ========================================================= */
.media-strip-outer {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -3rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-y;
}
.media-strip-outer::-webkit-scrollbar {
  display: none;
}
.media-strip-outer.is-dragging {
  cursor: grabbing;
}

.media-strip-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.4rem 0;
}

/* Each row is a scrolling flex track */
.media-strip-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  align-items: stretch;
  animation: none;
  will-change: transform;
}
.media-strip-track-alt {
  animation: none;
}

/* Individual cards */
.ms-item {
  flex-shrink: 0;
  width: 220px;
  height: 152px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* Video cards slightly wider (16:9 feels more cinematic) */
.ms-video { width: 255px; }

/* Background layers */
.ms-bg {
  position: absolute;
  inset: 0;
  transition: transform .4s ease;
}
.ms-item:hover .ms-bg { transform: scale(1.04); }
.ms-item:hover .ss-item-bg { transform: scale(1.04); }

/* Screenshot cards reuse existing .ss-item-bg + .ss-item-overlay */
.ms-shot .ss-item-bg {
  position: absolute;
  inset: 0;
  transition: transform .4s ease;
}

/* Video play overlay */
.ms-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.9);
  transition: background var(--ease);
}
.ms-item:hover .ms-play { background: rgba(0,0,0,.45); }

.ms-play svg {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}

/* Video label at bottom */
.ms-label {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: .5rem .75rem;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  font-family: var(--f-display);
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(240,234,214,.85);
}

/* =========================================================
   PANEL 5 — NEWS
   ========================================================= */
.news-list {
  display: flex;
  flex-direction: column;
}
.news-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}
.news-item:first-child { border-top: 1px solid var(--border); }

.news-thumb {
  border-radius: 8px;
  aspect-ratio: 16/10;
  flex-shrink: 0;
}
.news-thumb-1 { background: linear-gradient(135deg, #07101A 0%, #12243C 100%); }
.news-thumb-2 { background: linear-gradient(135deg, #100A04 0%, #241606 100%); }
.news-thumb-3 { background: linear-gradient(135deg, #060912 0%, #0C1224 100%); }

.news-body h3 {
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: .35rem;
  line-height: 1.35;
}
.news-body p {
  font-size: .8rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: .4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-date {
  font-family: var(--f-display);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.btn-news {
  font-family: var(--f-display);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--beige);
  padding: .65rem 1.2rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background var(--ease);
}
.btn-news:hover { background: var(--black); }

@media (max-width: 600px) {
  .news-item { grid-template-columns: 72px 1fr; }
  .btn-news { display: none; }
}

/* =========================================================
   PANEL 6 — PRESS KIT
   ========================================================= */

/* Asymmetric 2×2 bento: screenshots top-left, thumbnails bottom-left, full kit spans right */
.press-dl-bento {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-rows: auto auto;
  gap: .65rem;
  margin-bottom: 1.1rem;
}

.press-dl-tile {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.1rem;
  background: var(--beige-dark);
  border: 1px solid var(--beige-mid);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform .12s;
  position: relative;
}
.press-dl-tile:hover {
  background: var(--beige-mid);
  border-color: var(--ink-soft);
  transform: translateY(-1px);
}

.press-dl-screenshots { grid-column: 1; grid-row: 1; border-radius: 10px; }
.press-dl-thumbs      { grid-column: 1; grid-row: 2; border-radius: 16px; }
.press-dl-fullkit     { grid-column: 2; grid-row: 1 / 3; border-radius: 20px; flex-direction: column; align-items: flex-start; padding: 1.4rem 1.3rem; gap: .8rem; }

.press-dl-tile-icon {
  width: 38px; height: 38px;
  background: var(--beige);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  flex-shrink: 0;
}
.press-dl-tile-icon-lg {
  width: 48px; height: 48px;
  border-radius: 12px;
}

.press-dl-tile-body { flex: 1; min-width: 0; }
.press-dl-tile-body h3 {
  font-family: var(--f-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .2rem;
}
.press-dl-tile-body p {
  font-size: .76rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.press-dl-arrow {
  font-size: .85rem;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: color var(--ease);
}
.press-dl-tile:hover .press-dl-arrow { color: var(--ink); }

.press-dl-arrow-lg {
  font-size: 1.1rem;
  margin-top: auto;
  align-self: flex-end;
}

/* full-kit body fills available height */
.press-dl-fullkit .press-dl-tile-body {
  flex: 1;
}
.press-dl-fullkit .press-dl-tile-body p {
  font-size: .82rem;
  line-height: 1.6;
  margin-top: .4rem;
}

@media (max-width: 560px) {
  .press-dl-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .press-dl-screenshots { grid-row: 1; }
  .press-dl-thumbs      { grid-row: 2; }
  .press-dl-fullkit     { grid-column: 1; grid-row: 3; flex-direction: row; }
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-bottom: 1.2rem;
}
.press-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem;
  background: var(--beige-dark);
  border: 1px solid var(--beige-mid);
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
}
.press-card:hover {
  background: var(--beige-mid);
  border-color: var(--ink-soft);
}
.press-card-icon {
  width: 44px;
  height: 44px;
  background: var(--beige);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  flex-shrink: 0;
}
.press-card-body {
  flex: 1;
  min-width: 0;
}
.press-card-body h3 {
  font-family: var(--f-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .2rem;
}
.press-card-body p {
  font-size: .78rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.press-dl-icon {
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: color var(--ease);
}
.press-card:hover .press-dl-icon { color: var(--ink); }

.press-contact-bar {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--ink-soft);
}
.press-contact-bar a {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transition: opacity var(--ease);
}
.press-contact-bar a:hover { opacity: .6; }

@media (max-width: 560px) {
  .press-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid rgba(240,234,214,.07);
  padding: 2.5rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: .65rem;
}
.footer-logo {
  font-family: var(--f-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--beige);
}
.footer-by {
  font-size: .72rem;
  color: rgba(240,234,214,.25);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--f-display);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240,234,214,.3);
  transition: color var(--ease);
}
.footer-links a:hover { color: rgba(240,234,214,.7); }
.footer-copy {
  font-size: .72rem;
  color: rgba(240,234,214,.18);
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,4,.94);
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-caption {
  margin-top: .9rem;
  font-family: var(--f-display);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240,234,214,.3);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(240,234,214,.07);
  border: 1px solid rgba(240,234,214,.12);
  color: rgba(240,234,214,.55);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background var(--ease), color var(--ease);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(240,234,214,.15);
  color: var(--beige);
}
.lightbox-close { top: -3.5rem; right: 0; }
.lightbox-prev  { top: 50%; left: -4rem; transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: -4rem; transform: translateY(-50%); }

@media (max-width: 600px) {
  .lightbox-prev { left: -2.5rem; }
  .lightbox-next { right: -2.5rem; }
}

/* =========================================================
   MOBILE PANELS PADDING
   ========================================================= */
@media (max-width: 560px) {
  .panels-wrap { padding: 0 1rem 3rem; gap: 1rem; margin-top: 1rem; }
  .panel { padding: 2rem 1.5rem; }
  .panel-info { padding-top: 3.75rem; }
  .hero { min-height: 620px !important; }
  .hero-title { font-size: clamp(3.4rem, 16.5vw, 5.6rem); }
  .hero-feature-title { top: .8rem; }
  .hero-mid { top: 6.9rem !important; }
  .panel-heading-display { font-size: 2rem; }
  .panel-media .panel-heading-display,
  #news .panel-heading-display,
  #presskit .panel-heading-display {
    font-size: 1.5rem;
  }
  .media-tabs {
    gap: .2rem;
    padding: .2rem;
  }
  .media-tab {
    font-size: .47rem;
    letter-spacing: .1em;
    padding: .38rem .72rem;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 700px;
    align-items: flex-end;
  }

  .hero-mid {
    top: 7.75rem;
    transform: none;
    padding-right: clamp(1.25rem, 5vw, 2rem);
    gap: 1rem;
    max-width: 100%;
  }

  .hero-program-title {
    font-size: clamp(2rem, 7.5vw, 3.23rem);
    max-width: 14ch;
  }
  .hero-program-body {
    max-width: 30rem;
    font-size: .96rem;
  }
  .hero-program-game {
    font-size: 1.12em;
  }

  .hero-cta-btn {
    min-width: min(100%, 320px);
    padding: .95rem 1.7rem;
    font-size: .8rem;
  }

  .hero-feature {
    margin: -56px auto 0;
    padding: 0 1rem;
  }

  .hero-feature-video {
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .hero-feature {
    margin: -70px auto 0;
  }

  .hero-feature-video .trailer-thumb {
    aspect-ratio: 16 / 10;
  }

  .media-strip-outer {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 -1rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  }

  .media-strip-rows {
    gap: .75rem;
  }

  .media-strip-track,
  .media-strip-track-alt {
    width: max-content;
    padding: 0 0 .35rem;
  }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: lb-in 180ms ease;
}
@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 1.4rem;
  color: rgba(240,234,214,.6);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--ease);
}
.lightbox-close:hover { color: var(--beige); }
.lightbox-inner {
  width: 100%;
  max-width: 1100px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}
.lightbox-inner iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}
.lightbox-inner .lb-image {
  display: block;
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-inner .lb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #040810 0%, #0A1828 60%, #050C18 100%);
}

/* =========================================================
   WHY PLAY — 4-panel comic book section
   ========================================================= */

/* No outer background — the section is just the 4 floating panels */
.panel-why-play {
  background: transparent;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 7.5rem; /* 5× the default 1.5rem panels-wrap gap */
}

/* Two equal columns, each a flex column */
.why-play-grid {
  display: flex;
  gap: 1.8rem;
  max-width: 908px;
  margin: 0 auto;
}

.why-play-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* ---- shared panel base ---- */
.wp-panel {
  background: var(--beige);
  border: 1.5px solid #5A5A5A;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
}

/* ---- text panels: compact rectangle, text fills it ---- */
.wp-panel-text {
  padding: 1.5rem 1.6rem;
  flex: 0 0 auto;
  align-items: flex-start; /* left-align content */
  justify-content: center;
}

.wp-text-main {
  font-family: 'Futura', 'Century Gothic', 'Josefin Sans', Arial, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.2;
  color: var(--ink);
  text-align: left;
}

.wp-text-main em {
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- image panels: square ---- */
.wp-panel-comic {
  aspect-ratio: 1;
  flex: 1 1 auto;
}

.wp-circle-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-circle-img {
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid var(--ink);
}

/* Placeholder shown when image is missing / hasn't loaded */
.wp-img-placeholder {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: radial-gradient(circle at 40% 35%, #8BCFE8 0%, #4AABCF 40%, #1E7FA3 70%, #0D4F68 100%);
  display: none;
}
.wp-img-placeholder-alt {
  background: radial-gradient(circle at 40% 35%, #B8DCAA 0%, #7EC467 40%, #4A9935 70%, #2D6020 100%);
}

.wp-circle-img.img-error {
  display: none;
}
.wp-circle-img.img-error + .wp-img-placeholder {
  display: block;
}

/* ---- speech bubbles ---- */
.wp-bubble {
  position: absolute;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 14px;
  padding: .4rem .85rem;
  font-family: 'Futura', 'Century Gothic', 'Josefin Sans', Arial, sans-serif;
  font-size: clamp(.72rem, 1.35vw, .92rem);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.3;
  color: var(--ink);
  max-width: 65%;
  text-align: left;
  z-index: 2;
  box-shadow: 2px 2px 0 rgba(0,0,0,.15);
}

/* "but SHORE creates moments." — bottom-left */
.wp-bubble-bl {
  bottom: 6%;
  left: 8%;
  font-size: clamp(.86rem, 1.6vw, 1.1rem);
  padding: .6rem 1.1rem;
  border-radius: 18px;
  max-width: 72%;
}

/* "Even great games can be quiet…" — top-left */
.wp-bubble-tr {
  top: 4%;
  left: 8%;
  bottom: auto;
  right: auto;
  font-size: clamp(.86rem, 1.6vw, 1.1rem);
  padding: .6rem 1.1rem;
  border-radius: 18px;
  max-width: 72%;
}

/* italic word in bottom-right text panel */
.wp-italic {
  font-style: italic;
}

/* ---- responsive ---- */
@media (max-width: 540px) {
  .why-play-grid { flex-direction: column; }
  .wp-panel-comic { aspect-ratio: 1; width: 100%; }
  .wp-text-main { font-size: 1.35rem; }
}
