:root {
  --bg: #030711;
  --panel: #07122e;
  --panel-2: #09183d;
  --line: rgba(99, 139, 211, .28);
  --line-strong: rgba(89, 133, 218, .5);
  --text: #f5f7ff;
  --muted: #91a0c2;
  --green: #1dff43;
  --green-dark: #0da32c;
  --cyan: #27caf2;
  --red: #ff5d7d;
  --shadow: 0 35px 100px rgba(0, 0, 0, .68);
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 8%, rgba(73, 113, 144, .22), transparent 32%),
    radial-gradient(circle at 16% 23%, rgba(0, 157, 255, .11), transparent 30%),
    linear-gradient(180deg, #050a14 0%, #02050c 56%, #030710 100%);
  color: var(--text);
  font-family: var(--font-ui);
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
button, input { font: inherit; }
button { color: inherit; }

.screen-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .13;
  background-image:
    linear-gradient(rgba(130, 172, 230, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 172, 230, .08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 82%);
}
.screen-glow {
  position: fixed;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .15;
  z-index: -2;
  pointer-events: none;
}
.screen-glow-one { top: -260px; left: -180px; background: #1f7fff; }
.screen-glow-two { right: -280px; top: 220px; background: #00ff8a; opacity: .07; }

.site-wrap {
  width: min(1260px, calc(100% - 42px));
  margin: 0 auto;
  padding: 28px 0 58px;
}

.showcase {
  position: relative;
  min-height: calc(100vh - 40px);
  overflow: hidden;
  padding: 0 0 52px;
}
.showcase::before {
  content: "";
  position: absolute;
  inset: 82px 0 auto;
  height: 260px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(68, 94, 119, .21), rgba(6, 11, 21, 0));
  clip-path: polygon(0 18%, 100% 0, 100% 76%, 0 100%);
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 2px 20px;
  color: #aeb9cc;
  font-size: 11px;
  letter-spacing: .17em;
  font-weight: 800;
}
.mini-brand { display: flex; align-items: center; gap: 9px; }
.platform-text { opacity: .68; }
.ea-disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: #e9effb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -.04em;
  transform: skew(-9deg);
}
.ea-disc.small { width: 30px; height: 30px; font-size: 9px; }
.ea-disc.tiny { width: 24px; height: 24px; font-size: 7px; border-width: 1.5px; }

.hero-logo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 4px auto -12px;
  width: fit-content;
  font-family: var(--font-display);
  font-style: italic;
  line-height: .72;
  letter-spacing: -.082em;
  transform: skew(-8deg);
  filter: drop-shadow(0 18px 42px rgba(0,0,0,.55));
  user-select: none;
}
.hero-logo span {
  display: block;
  background: linear-gradient(180deg, #91a9b9 2%, #d4dce6 45%, #697f91 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 0 rgba(255,255,255,.08);
}
.hero-fc { font-size: clamp(122px, 19vw, 280px); }
.hero-num { font-size: clamp(122px, 19vw, 280px); margin-left: -.04em; }

.hero-subbrand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 20px;
  color: #fff;
  transform: skew(-6deg);
}
.hero-subbrand strong {
  font-size: 34px;
  font-style: italic;
  letter-spacing: -.08em;
  font-family: var(--font-display);
}
.available-title {
  margin: 18px 0 0;
  text-align: center;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: .28em;
  font-weight: 900;
  color: #b9c7de;
}
.available-subtitle {
  max-width: 650px;
  margin: 11px auto 34px;
  text-align: center;
  color: #7585a3;
  font-size: 14px;
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.edition-card {
  position: relative;
  min-width: 0;
  transition: transform .25s ease, filter .25s ease;
}
.edition-card:hover { transform: translateY(-7px); filter: brightness(1.05); }
.edition-card.is-featured { transform: translateY(-14px); }
.edition-card.is-featured:hover { transform: translateY(-21px); }
.featured-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  padding: 7px 15px 6px;
  background: var(--cyan);
  color: #05111e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .16em;
  clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
}
.edition-cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: .72;
  padding: 0;
  border: 1px solid rgba(116, 157, 220, .26);
  background: #0b1530;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0,0,0,.38);
  isolation: isolate;
}
.edition-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.015);
  filter: saturate(.92) contrast(1.07) brightness(.85);
  transition: transform .45s ease, filter .45s ease;
}
.edition-card:hover .edition-cover img { transform: scale(1.065); filter: saturate(1.05) contrast(1.08) brightness(.94); }
.cover-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,9,21,.18), transparent 39%),
    linear-gradient(0deg, rgba(1,5,15,.92), transparent 38%),
    linear-gradient(90deg, rgba(13,48,79,.18), transparent 46%);
}
.cover-logo {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: rgba(235,245,255,.9);
  font-style: italic;
  transform: skew(-7deg);
}
.cover-logo small { font-size: 9px; letter-spacing: .12em; font-weight: 800; }
.cover-logo b { font-family: var(--font-display); font-size: 35px; letter-spacing: -.08em; line-height: .9; }
.edition-number {
  position: absolute;
  right: 18px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(64px, 7vw, 108px);
  line-height: .85;
  text-shadow: 0 12px 25px rgba(0,0,0,.58);
}
.cover-edge {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.04);
  box-shadow: inset 0 0 70px rgba(23, 117, 208, .08);
  pointer-events: none;
}
.edition-info { padding: 18px 2px 4px; }
.edition-title-row { display: flex; gap: 16px; justify-content: space-between; align-items: flex-start; }
.edition-title-row h2 {
  margin: 0 0 5px;
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -.02em;
}
.edition-title-row p { margin: 0; color: #6f7f9c; font-size: 12px; line-height: 1.4; }
.edition-title-row strong { white-space: nowrap; font-size: 17px; }
.edition-info ul { list-style: none; padding: 0; margin: 16px 0 17px; }
.edition-info li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 8px 0;
  color: #a6b2c9;
  font-size: 12px;
  line-height: 1.35;
}
.edition-info li span { color: #65bfff; font-size: 17px; line-height: 13px; }
.card-order {
  width: 100%;
  min-height: 45px;
  border: 1px solid rgba(55, 202, 244, .42);
  background: rgba(9, 22, 49, .86);
  color: #dff8ff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.card-order span { margin-left: 10px; }
.card-order:hover { background: var(--cyan); color: #04121e; border-color: var(--cyan); }

.site-footer {
  padding: 0 20px 26px;
  text-align: center;
  color: rgba(151, 166, 193, .42);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Order modal */
.order-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.order-overlay.is-open { opacity: 1; visibility: visible; }
.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 2, 8, .84);
  backdrop-filter: blur(10px) saturate(.75);
}
.order-shell {
  position: relative;
  width: min(620px, 100%);
  max-height: min(820px, calc(100vh - 38px));
  overflow-y: auto;
  background:
    linear-gradient(155deg, rgba(13, 29, 72, .98), rgba(4, 12, 35, .99)),
    #07142f;
  border: 1px solid rgba(89, 130, 213, .38);
  box-shadow: var(--shadow), inset 0 0 70px rgba(38, 86, 171, .07);
  transform: translateY(18px) scale(.985);
  transition: transform .28s cubic-bezier(.2,.85,.2,1);
  scrollbar-width: thin;
  scrollbar-color: #295397 #07122d;
}
.order-overlay.is-open .order-shell { transform: translateY(0) scale(1); }
.order-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 52%, rgba(62, 156, 255, .035) 52% 55%, transparent 55%);
}
.modal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 24px;
  background: rgba(5, 14, 36, .92);
  border-bottom: 1px solid rgba(79, 115, 185, .22);
  backdrop-filter: blur(12px);
}
.modal-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.modal-brand b {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  letter-spacing: -.06em;
  transform: skew(-6deg);
}
.modal-brand > span:last-child {
  margin-left: 4px;
  color: #657597;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  white-space: nowrap;
}
.close-modal {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #dfe8fa;
  cursor: pointer;
  font-size: 31px;
  line-height: 1;
  transition: color .2s, transform .2s;
}
.close-modal:hover { color: var(--cyan); transform: rotate(6deg); }
.modal-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  height: 4px;
  padding: 0 24px;
  background: rgba(3,10,28,.92);
}
.modal-progress span { background: rgba(63, 91, 146, .22); }
.modal-progress span.active { background: linear-gradient(90deg, #2df7ff, #35c7ff); box-shadow: 0 0 14px rgba(38, 218, 255, .65); }
.modal-stage { display: none; padding: 28px 25px 30px; position: relative; z-index: 1; }
.modal-stage.is-active { display: block; animation: stage-in .24s ease both; }
@keyframes stage-in { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
.back-button {
  padding: 0;
  border: 0;
  background: none;
  color: #d7e2f7;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.back-button:hover { color: var(--cyan); }
.stage-heading { margin-top: 23px; }
.stage-heading.compact { margin-top: 20px; margin-bottom: 20px; }
.stage-heading h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 58px);
  font-style: italic;
  letter-spacing: .01em;
  line-height: 1;
  transform: skew(-4deg);
}
.stage-heading.compact h2 { font-size: clamp(30px, 6vw, 43px); }
.stage-heading p {
  max-width: 540px;
  margin: 15px 0 0;
  color: #8d9bbb;
  font-size: 14px;
  line-height: 1.6;
}

.psn-search-form { margin-top: 25px; }
.psn-search-form label,
.card-form label,
.method-label {
  display: block;
  margin-bottom: 9px;
  color: #7c8eb2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
}
.search-row { display: grid; grid-template-columns: 1fr 120px; gap: 10px; }
.search-control {
  display: flex;
  align-items: center;
  min-height: 50px;
  border: 1px solid rgba(74, 119, 202, .46);
  background: rgba(2, 9, 26, .82);
  box-shadow: inset 0 0 22px rgba(33, 86, 173, .05);
}
.search-control:focus-within { border-color: var(--green); box-shadow: 0 0 0 2px rgba(29,255,67,.08), inset 0 0 25px rgba(29,255,67,.03); }
.search-icon {
  position: relative;
  width: 18px;
  height: 18px;
  margin-left: 15px;
  border: 3px solid #7891c4;
  border-radius: 50%;
  flex: 0 0 auto;
}
.search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 3px;
  right: -7px;
  bottom: -4px;
  background: #7891c4;
  transform: rotate(45deg);
  border-radius: 2px;
}
.search-control input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 15px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-weight: 750;
}
.search-control input::placeholder { color: #657395; }
#searchButton {
  border: 1px solid rgba(51, 238, 255, .65);
  background: #f4f6f8;
  color: #25bfe8;
  cursor: pointer;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  box-shadow: 0 0 22px rgba(41, 208, 244, .12);
  transition: background .2s, color .2s, transform .2s;
}
#searchButton:hover { background: var(--cyan); color: #04121d; transform: translateY(-1px); }
#searchButton:disabled { opacity: .58; cursor: wait; transform: none; }
#searchButton.is-loading { animation: button-pulse .8s ease-in-out infinite alternate; }
@keyframes button-pulse { to { filter: brightness(1.18); } }
.form-message { min-height: 18px; margin: 9px 0 0; font-size: 12px; line-height: 1.35; }
.form-message.is-error { color: var(--red); }
.form-message.is-info { color: #62dfff; }
.profile-result {
  display: grid;
  grid-template-columns: 48px 1fr 15px;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 13px;
  border: 1px solid rgba(74, 119, 202, .35);
  background: rgba(5, 17, 44, .86);
}
.profile-result[hidden] { display: none; }
.profile-result img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; background: #0c1c42; }
.profile-main { min-width: 0; }
.profile-main span { display: block; color: #7184ab; font-size: 8px; font-weight: 900; letter-spacing: .17em; }
.profile-main strong { display: block; margin-top: 3px; overflow: hidden; text-overflow: ellipsis; color: #fff; font-size: 15px; }
.profile-main small { color: #69789a; font-size: 10px; }
.online-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 13px var(--green); }

.wide-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
  color: #03111c;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .13em;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition: filter .2s, transform .2s;
}
.wide-action:hover:not(:disabled) { filter: brightness(1.09); transform: translateY(-1px); }
.wide-action:disabled { opacity: .32; cursor: not-allowed; }
.wide-action.green { background: linear-gradient(90deg, #15ed38, #2cff50); }
.wide-action.cyan { background: linear-gradient(90deg, #22c8ef, #36dcff); }

.order-summary-bar {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(78, 111, 176, .25);
  background: rgba(4, 13, 34, .56);
}
.order-summary-bar img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(255,255,255,.18); }
.order-summary-bar span { display: block; font-size: 13px; font-weight: 850; }
.order-summary-bar small { display: block; margin-top: 4px; color: #7384a6; font-size: 10px; }
.order-summary-bar strong { font-size: 15px; }
.method-label { margin: 24px 0 9px; }
.payment-methods { display: grid; gap: 8px; }
.payment-method {
  display: grid;
  grid-template-columns: 54px 1fr 18px;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 9px 12px;
  border: 1px solid rgba(74, 118, 200, .34);
  background: rgba(4, 14, 37, .72);
  text-align: left;
}
.payment-method.is-selected { border-color: rgba(61, 193, 244, .65); box-shadow: inset 0 0 24px rgba(35, 177, 233, .05); }
.payment-method > span:nth-child(2) { display: flex; flex-direction: column; }
.payment-method b { font-size: 12px; }
.payment-method small { margin-top: 3px; color: #6d7d9e; font-size: 9px; }
.payment-method i { width: 13px; height: 13px; border-radius: 50%; border: 2px solid #27749c; }
.payment-method.is-selected i { background: var(--cyan); box-shadow: inset 0 0 0 3px #0b2544, 0 0 9px rgba(39,202,242,.7); }
.payment-method.is-disabled { opacity: .45; }
.visa-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 24px;
  background: white;
  color: #223d99;
  font-size: 12px;
  font-style: italic;
  font-weight: 950;
}
.apple-badge { font-size: 16px; font-weight: 850; }
.payment-total { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 15px; border-top: 1px solid rgba(77, 112, 177, .22); }
.payment-total span { color: #8290ad; font-size: 12px; }
.payment-total strong { font-size: 20px; }

.card-notice {
  margin: 6px 0 17px;
  padding: 10px 12px;
  border-left: 3px solid var(--cyan);
  background: rgba(36, 200, 239, .06);
  color: #9fb2d0;
  font-size: 11px;
  line-height: 1.5;
}
.card-visual {
  position: relative;
  overflow: hidden;
  width: min(390px, 100%);
  aspect-ratio: 1.72;
  margin: 0 auto 20px;
  padding: 22px;
  border: 1px solid rgba(93, 157, 229, .42);
  border-radius: 17px;
  background:
    radial-gradient(circle at 78% 20%, rgba(71, 232, 255, .34), transparent 30%),
    linear-gradient(135deg, #071838, #0b2b57 55%, #101a42);
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
}
.card-shine { position: absolute; inset: -80% 40% -80% -20%; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent); }
.card-top, .card-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.card-chip { position: relative; width: 39px; height: 29px; margin-top: 29px; border-radius: 6px; background: linear-gradient(135deg, #f3e8bd, #aa8d42); }
.card-chip::before, .card-chip::after { content:""; position:absolute; background:rgba(80,58,13,.35); }
.card-chip::before { left: 50%; top: 0; width: 1px; height: 100%; }
.card-chip::after { left: 0; top: 50%; width: 100%; height: 1px; }
.card-digits { position: relative; margin: 22px 0 19px; font-size: clamp(18px, 4vw, 24px); letter-spacing: .09em; font-weight: 700; }
.card-bottom { color: #b6c3dc; font-size: 9px; gap: 20px; }
.card-bottom > span { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.card-bottom > span:last-child { text-align: right; }
.card-bottom small { color: #7185aa; font-size: 7px; letter-spacing: .16em; }
.card-bottom b { overflow: hidden; max-width: 220px; color: #e8f2ff; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.card-form { display: grid; gap: 14px; }
.card-field { display: grid; gap: 7px; }
.card-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card-form label { margin: 0; }
.card-form input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(74, 119, 202, .46);
  outline: 0;
  background: rgba(2, 9, 26, .82);
  color: #fff;
  font-weight: 750;
  letter-spacing: .05em;
}
.card-form input::placeholder { color: #52627f; }
.card-form input:focus { border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(39,202,242,.08); }

.stage-processing, .stage-success { text-align: center; padding-top: 62px; padding-bottom: 58px; }
.processing-visual { width: 72px; height: 72px; margin: 0 auto 26px; }
.processing-ring { width: 72px; height: 72px; border: 4px solid rgba(45, 212, 244, .13); border-top-color: var(--cyan); border-radius: 50%; animation: spin 1s linear infinite; box-shadow: 0 0 26px rgba(39,202,242,.12); }
@keyframes spin { to { transform: rotate(360deg); } }
.stage-processing h2, .stage-success h2 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: .05em;
  font-size: clamp(30px, 6vw, 44px);
}
.stage-processing h2 { color: #2de2ff; }
.stage-processing p, .stage-success p { margin: 12px auto 0; color: #7d8cac; font-size: 12px; line-height: 1.55; }
.processing-track { width: min(350px, 100%); height: 3px; margin: 24px auto 10px; background: rgba(74, 105, 165, .24); overflow: hidden; }
.processing-track span { display: block; width: 5%; height: 100%; background: linear-gradient(90deg, var(--cyan), #53ffeb); transition: width .7s ease; box-shadow: 0 0 12px rgba(39,202,242,.75); }
.stage-processing small { color: #5f7299; }
.success-check {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--green);
  color: #04140a;
  font-size: 44px;
  font-weight: 900;
  box-shadow: 0 0 38px rgba(29,255,67,.43);
}
.stage-success h2 { color: #fff; }
.success-details { margin: 28px 0 0; text-align: left; border-top: 1px solid rgba(77,111,175,.23); }
.success-details > div { display: grid; grid-template-columns: 1fr 1.2fr; gap: 16px; align-items: center; min-height: 42px; border-bottom: 1px solid rgba(77,111,175,.18); }
.success-details dt { color: #6e7f9f; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.success-details dd { margin: 0; text-align: right; color: #eaf2ff; font-size: 11px; font-weight: 800; }
.recipient-with-avatar { display: flex; justify-content: flex-end; align-items: center; gap: 7px; }
.recipient-with-avatar img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }

@media (max-width: 900px) {
  .site-wrap { width: min(100% - 26px, 720px); }
  .edition-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 42px; }
  .edition-card.is-featured { transform: none; }
  .edition-card.is-featured:hover { transform: translateY(-7px); }
  .hero-logo { margin-top: 14px; }
  .available-subtitle { margin-bottom: 38px; }
}

@media (max-width: 620px) {
  .card-form-row { grid-template-columns: 1fr; }
  .site-wrap { width: 100%; padding: 12px 0 28px; }
  .showcase { padding: 0 14px 30px; }
  .top-strip { padding: 6px 2px 15px; }
  .platform-text { display: none; }
  .hero-logo { margin-top: 16px; margin-bottom: -4px; }
  .hero-fc, .hero-num { font-size: 28vw; }
  .hero-subbrand { margin-top: 16px; }
  .available-title { font-size: 15px; letter-spacing: .22em; }
  .available-subtitle { padding: 0 20px; font-size: 12px; }
  .edition-grid { gap: 34px; }
  .edition-cover { aspect-ratio: .78; }
  .edition-info { padding-left: 4px; padding-right: 4px; }

  .order-overlay { padding: 0; align-items: end; }
  .order-shell {
    width: 100%;
    max-height: 92vh;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
  }
  .modal-header { min-height: 64px; padding: 0 18px; border-radius: 24px 24px 0 0; }
  .modal-brand > span:last-child { font-size: 9px; letter-spacing: .11em; }
  .modal-progress { padding: 0 18px; }
  .modal-stage { padding: 23px 18px 28px; }
  .stage-heading h2 { font-size: 48px; }
  .stage-heading p { font-size: 13px; }
  .search-row { grid-template-columns: 1fr; }
  #searchButton { min-height: 48px; }
  .order-summary-bar { grid-template-columns: 44px 1fr auto; gap: 10px; }
  .order-summary-bar img { width: 44px; height: 44px; }
  .card-visual { padding: 17px; }
  .card-chip { margin-top: 20px; }
  .card-digits { margin: 17px 0 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* ========================================================================== 
   Reference-video alignment — search/order panel v3.1
   ========================================================================== */
.order-shell {
  width: min(650px, calc(100vw - 28px));
  max-height: min(760px, calc(100svh - 28px));
  border: 1px solid rgba(52, 82, 151, .58);
  border-radius: 0;
  background:
    radial-gradient(circle at 20% -10%, rgba(32, 71, 155, .18), transparent 38%),
    linear-gradient(160deg, #0a163d 0%, #07102d 58%, #050d27 100%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .76), inset 0 0 65px rgba(38, 83, 173, .06);
}

.modal-header {
  position: relative;
  min-height: 61px;
  padding: 0 22px;
  background: rgba(7, 16, 43, .96);
  border-bottom: 0;
  backdrop-filter: none;
}
.modal-brand { gap: 9px; }
.modal-brand b {
  font-family: Arial Black, Impact, sans-serif;
  font-size: 22px;
  font-style: italic;
  letter-spacing: -.075em;
}
.modal-brand > span:last-child {
  margin-left: 8px;
  color: #66708d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
}
.close-modal {
  width: 32px;
  height: 32px;
  font-size: 28px;
  font-weight: 500;
}
.modal-progress {
  height: 3px;
  padding: 0 22px;
  gap: 8px;
  background: #07102d;
}
.modal-progress span { background: rgba(56, 75, 123, .34); }
.modal-progress span.active {
  background: #2dd7f5;
  box-shadow: 0 0 10px rgba(45, 215, 245, .55);
}
.modal-stage { padding: 20px 22px 24px; }
.back-button {
  color: #e8edf7;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
}
.stage-heading { margin-top: 20px; }
.stage-heading h2 {
  font-family: Arial Black, Impact, sans-serif;
  font-size: clamp(31px, 5.5vw, 43px);
  font-style: normal;
  letter-spacing: -.035em;
  line-height: .98;
  transform: none;
}
.stage-heading p {
  margin-top: 11px;
  color: #9da7bf;
  font-size: 13px;
  line-height: 1.45;
}

.reference-search-panel { margin-top: 21px; }
.psn-search-form { margin-top: 0; }
.psn-search-form label {
  margin-bottom: 7px;
  color: #7785a8;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .18em;
}
.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 9px;
  align-items: stretch;
}
.search-control {
  min-height: 45px;
  border: 1px solid rgba(73, 99, 160, .55);
  background: #07122f;
  box-shadow: inset 0 0 18px rgba(22, 65, 142, .06);
}
.search-control:focus-within {
  border-color: #25ff45;
  box-shadow: 0 0 0 1px rgba(37, 255, 69, .55), 0 0 16px rgba(37, 255, 69, .10);
}
.search-icon {
  width: 15px;
  height: 15px;
  margin-left: 13px;
  border-width: 2px;
  border-color: #7185b5;
}
.search-icon::after {
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: #7185b5;
}
.search-control input {
  height: 43px;
  padding: 0 13px;
  color: #f7f9ff;
  font-size: 13px;
  font-weight: 780;
}
.search-control input::placeholder { color: #697797; }
#searchButton {
  position: relative;
  min-height: 45px;
  overflow: hidden;
  border: 1px solid rgba(188, 248, 255, .85);
  border-radius: 3px;
  background: #f5f6f7;
  color: #28c8e8;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .09em;
  box-shadow: 0 0 0 2px rgba(39, 236, 255, .04), 0 0 17px rgba(34, 206, 239, .12);
}
#searchButton:hover { background: #fff; color: #10afd3; }
#searchButton.is-loading .search-button-label { opacity: 0; }
.search-button-spinner {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 17px;
  height: 17px;
  margin: -8.5px 0 0 -8.5px;
  border: 2px solid rgba(20, 178, 211, .22);
  border-top-color: #16b8da;
  border-radius: 50%;
  opacity: 0;
  animation: spin .75s linear infinite;
}
#searchButton.is-loading .search-button-spinner { opacity: 1; }
.form-message {
  min-height: 16px;
  margin: 7px 0 0;
  font-size: 11px;
}

.profile-result {
  grid-template-columns: 44px minmax(0, 1fr) 58px;
  gap: 10px;
  min-height: 62px;
  margin-top: 11px;
  padding: 8px 8px 8px 10px;
  border: 1px solid rgba(57, 84, 147, .45);
  background: linear-gradient(90deg, rgba(8, 20, 53, .96), rgba(8, 17, 44, .96));
}
.profile-avatar-wrap {
  width: 42px;
  height: 42px;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,.45), rgba(65,108,190,.18));
}
.profile-result img {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #101b39;
}
.profile-main span {
  color: #7180a1;
  font-size: 7px;
  letter-spacing: .14em;
}
.profile-main strong {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.2;
}
.profile-main small { color: #63708e; font-size: 9px; }
.profile-confirm-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 46px;
  justify-self: end;
  clip-path: polygon(50% 0, 92% 22%, 92% 72%, 50% 100%, 8% 72%, 8% 22%);
  background: radial-gradient(circle, rgba(44,255,62,.98) 0 22%, rgba(36,255,64,.43) 23% 45%, rgba(36,255,64,.05) 66%);
  filter: drop-shadow(0 0 10px rgba(37, 255, 62, .55));
}
.profile-confirm-mark b {
  color: #07140a;
  font-size: 15px;
  line-height: 1;
}
.profile-confirm-mark .online-dot {
  position: absolute;
  right: 4px;
  bottom: 3px;
  width: 7px;
  height: 7px;
  border: 1px solid #07162d;
}
#confirmProfileButton {
  min-height: 47px;
  margin-top: 10px;
  border-radius: 3px;
  clip-path: none;
  background: #21f53e;
  color: #061208;
  font-size: 10px;
  letter-spacing: .11em;
  box-shadow: 0 0 18px rgba(33, 245, 62, .16);
}
#confirmProfileButton:disabled {
  opacity: .27;
  filter: saturate(.4);
}

.edition-cover img { object-position: center top; }

@media (max-width: 620px) {
  .card-form-row { grid-template-columns: 1fr; }
  .order-overlay {
    display: grid;
    place-items: center;
    padding: 8px;
  }
  .order-shell {
    width: 100%;
    max-height: calc(100svh - 16px);
    border: 1px solid rgba(52, 82, 151, .58);
    border-radius: 0;
  }
  .modal-header {
    min-height: 57px;
    padding: 0 15px;
    border-radius: 0;
  }
  .modal-brand > span:last-child {
    margin-left: 3px;
    font-size: 8px;
    letter-spacing: .08em;
  }
  .modal-progress { padding: 0 15px; }
  .modal-stage { padding: 18px 15px 20px; }
  .stage-heading { margin-top: 18px; }
  .stage-heading h2 { font-size: clamp(29px, 9vw, 38px); }
  .stage-heading p { margin-top: 10px; font-size: 12px; }
  .reference-search-panel { margin-top: 18px; }
  .search-row { grid-template-columns: minmax(0, 1fr) 92px; gap: 7px; }
  #searchButton { min-height: 45px; font-size: 9px; }
  .profile-result { grid-template-columns: 40px minmax(0, 1fr) 48px; }
  .profile-avatar-wrap { width: 38px; height: 38px; }
  .profile-result img { width: 34px; height: 34px; }
  .profile-confirm-mark { width: 44px; height: 41px; }
}

@media (max-width: 380px) {
  .modal-brand > span:last-child { display: none; }
  .search-row { grid-template-columns: minmax(0, 1fr) 84px; }
  .search-control input { padding-right: 8px; font-size: 12px; }
}

/* Platform selection stage */
.stage-platform { padding-bottom: 34px; }
.platform-options {
  display: grid;
  gap: 14px;
  margin: 28px 0 18px;
}
.platform-option {
  position: relative;
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  overflow: hidden;
  border: 1px solid rgba(73, 111, 176, .24);
  background: linear-gradient(100deg, rgba(14, 34, 67, .96), rgba(9, 25, 55, .9));
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}
.platform-option:hover { transform: translateY(-1px); border-color: rgba(39, 202, 242, .5); }
.platform-option.is-selected {
  border-color: #1c9cff;
  background: linear-gradient(100deg, rgba(16, 48, 91, .98), rgba(10, 31, 67, .95));
  box-shadow: 0 0 0 2px rgba(17, 157, 255, .22), inset 0 0 30px rgba(26, 132, 255, .08), 0 0 24px rgba(0, 135, 255, .16);
}
.platform-accent {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 5px;
  background: #7f8da9;
  box-shadow: 0 0 12px currentColor;
}
.platform-accent.ps { background: #18a9ff; color: #18a9ff; }
.platform-accent.xbox { background: #21ff4e; color: #21ff4e; }
.platform-accent.ea { background: #d9e0ed; color: #d9e0ed; }
.platform-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.82);
  background: rgba(255,255,255,.04);
  overflow: hidden;
}
.platform-icon img {
  width: 78%;
  height: 78%;
  display: block;
  object-fit: contain;
}
.platform-icon.xbox-logo { border-color: rgba(255,255,255,.92); }
.platform-copy { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.platform-copy b { font-size: clamp(20px, 3.5vw, 31px); line-height: 1; letter-spacing: -.02em; }
.platform-copy small { color: #aebbd1; font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.platform-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  color: #071329;
  background: #2ff654;
  font-weight: 1000;
  box-shadow: 0 0 18px rgba(47,246,84,.65);
  transition: opacity .2s ease;
}
.platform-option.is-selected .platform-check { opacity: 1; }
.stage-platform .wide-action { margin-top: 16px; }

@media (max-width: 600px) {
  .platform-option {
    min-height: 88px;
    grid-template-columns: 54px minmax(0, 1fr) 28px;
    gap: 13px;
    padding: 14px 15px;
  }
  .platform-icon { width: 48px; height: 48px; }
  .platform-icon img { width: 76%; height: 76%; }
  .platform-copy b { font-size: 19px; }
  .platform-copy small { font-size: 9px; letter-spacing: .13em; }
}

/* =========================================================
   MOBILE: KEEP ALL THREE EDITIONS SIDE BY SIDE
   ========================================================= */
@media (max-width: 900px) {
  .site-wrap {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .showcase {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .edition-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    width: 100%;
    margin: 0;
    gap: 16px;
    align-items: start;
  }

  .edition-card,
  .edition-card.is-featured {
    min-width: 0;
    transform: none;
  }

  .edition-card:hover,
  .edition-card.is-featured:hover {
    transform: none;
  }
}

@media (max-width: 620px) {
  .showcase {
    padding-left: 15px;
    padding-right: 15px;
  }

  .edition-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
  }

  .edition-cover {
    aspect-ratio: .69;
    min-height: 0;
  }

  .edition-cover img {
    object-position: center top;
  }

  .cover-logo {
    top: 9px;
    left: 8px;
  }

  .cover-logo small {
    font-size: 4px;
    letter-spacing: .08em;
  }

  .cover-logo b {
    font-size: clamp(14px, 5vw, 23px);
  }

  .edition-number {
    right: 6px;
    bottom: 5px;
    font-size: clamp(43px, 12vw, 66px);
  }

  .featured-tag {
    top: -10px;
    padding: 4px 8px 3px;
    font-size: 5px;
    letter-spacing: .10em;
  }

  .edition-info {
    padding: 9px 0 2px;
  }

  .edition-title-row {
    gap: 4px;
  }

  .edition-title-row h2 {
    margin-bottom: 3px;
    font-size: clamp(9px, 2.7vw, 13px);
    line-height: 1.12;
  }

  .edition-title-row p {
    font-size: clamp(5px, 1.6vw, 8px);
    line-height: 1.25;
  }

  .edition-title-row strong {
    font-size: clamp(8px, 2.5vw, 12px);
  }

  .edition-info ul {
    margin: 8px 0 8px;
  }

  .edition-info li {
    gap: 3px;
    margin: 4px 0;
    font-size: clamp(5px, 1.55vw, 8px);
    line-height: 1.25;
  }

  .edition-info li span {
    font-size: 9px;
    line-height: 8px;
  }

  .card-order {
    min-height: 32px;
    padding: 5px 2px;
    font-size: clamp(6px, 1.8vw, 9px);
    letter-spacing: .08em;
  }
}

@media (max-width: 390px) {
  .showcase {
    padding-left: 8px;
    padding-right: 8px;
  }

  .edition-grid {
    gap: 7px;
  }

  .edition-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .edition-info li:nth-child(n+5) {
    display: none;
  }
}
