:root {
  color-scheme: light;
  --paper: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --ink: #1d1d1f;
  --black: #08090a;
  --muted: #6e6e73;
  --muted-dark: #a9abb2;
  --line: rgba(29, 29, 31, .11);
  --line-dark: rgba(255, 255, 255, .14);
  --blue: #0071e3;
  --blue-dark: #0064c7;
  --blue-soft: #eaf4ff;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-soft: 0 14px 42px rgba(16, 24, 40, .07);
  --shadow-strong: 0 28px 80px rgba(0, 0, 0, .2);
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

bdi {
  unicode-bidi: isolate;
}

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  line-height: 1.08;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset-block-start: 8px;
  inset-inline-start: 8px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.announcement {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 7px 20px;
  background: var(--black);
  color: #f5f5f7;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .01em;
}

.announcement span:last-child {
  color: #8dc9ff;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(1240px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  gap: 24px;
  margin: 12px auto 0;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 30px rgba(20, 27, 38, .08);
  backdrop-filter: saturate(160%) blur(20px);
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 113, 227, .25);
  border-radius: 14px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -.04em;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  padding: 12px 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity 180ms ease, transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  opacity: 1;
  transform: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-button,
.secondary-button,
.search-button,
.cart-button,
.menu-toggle,
.filter-tab,
.add-button,
.checkout-button,
.cart-close,
.modal-close,
.search-close {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
}

.primary-button {
  padding: 13px 22px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
}

.primary-button:hover {
  background: var(--blue-dark);
}

.primary-button.compact {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 11px;
}

.primary-button.light {
  background: #fff;
  color: var(--ink);
}

.primary-button.light:hover {
  background: #e9e9ed;
}

.secondary-button {
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(0, 0, 0, .1);
  color: #fff;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.secondary-button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
}

.secondary-button.dark {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.secondary-button.dark:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.search-button,
.cart-button {
  min-height: 44px;
  gap: 8px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 11px;
}

.search-button {
  min-width: 56px;
  padding-inline: 15px;
}

.cart-button i {
  display: grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-style: normal;
}

.cart-button.has-items i {
  background: var(--blue);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 11px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  width: min(1240px, calc(100% - 32px));
  min-height: 650px;
  align-items: stretch;
  margin: 26px auto 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--black);
  box-shadow: var(--shadow-strong);
  color: #fff;
}

.hero-media,
.hero-poster,
.hero-poster img,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -1;
  overflow: hidden;
}

.hero-poster img,
.hero-video {
  object-fit: cover;
  object-position: center;
}

.hero-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero-video.is-ready {
  opacity: .72;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, .08) 18%, rgba(8, 9, 10, .9) 86%),
    linear-gradient(0deg, rgba(8, 9, 10, .45), transparent 45%);
}

.hero-copy {
  display: flex;
  width: min(62%, 700px);
  min-height: 650px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 86px 62px 72px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
}

.hero .eyebrow,
.inverse .eyebrow,
.order-flow > .eyebrow {
  color: #8dc9ff;
}

.hero h1 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(52px, 6.2vw, 86px);
  font-weight: 820;
  letter-spacing: -.065em;
  line-height: .98;
}

.hero h1 em {
  color: #89c9ff;
  font-style: normal;
}

.hero-copy > p {
  max-width: 520px;
  margin: 24px 0 0;
  color: #c9cbd1;
  font-size: 14px;
  line-height: 1.9;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  gap: 0;
  margin: 48px 0 0;
}

.hero-proof div {
  min-width: 100px;
  padding-inline: 18px;
  border-inline-start: 1px solid rgba(255, 255, 255, .2);
}

.hero-proof div:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}

.hero-proof dt {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.hero-proof dd {
  margin: 3px 0 0;
  color: #a9abb2;
  font-size: 9px;
}

.product-quick-list {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(0, 2fr);
  gap: 26px;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.section-intro {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.section-index {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.compact-intro .eyebrow {
  margin-bottom: 7px;
}

.compact-intro h2 {
  max-width: 220px;
  font-size: 23px;
  letter-spacing: -.035em;
}

.game-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.game-chip {
  display: grid;
  min-height: 76px;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}

.game-chip:hover,
.game-chip.selected {
  border-color: rgba(0, 113, 227, .32);
  background: var(--blue-soft);
}

.game-chip img {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  object-fit: cover;
}

.game-chip span {
  display: grid;
  min-width: 0;
}

.game-chip strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-chip small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.shop-section {
  padding-block: 112px 90px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.section-heading .eyebrow {
  margin-bottom: 11px;
}

.section-heading h2,
.about-copy h2,
.launch-note h2 {
  max-width: 720px;
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 820;
  letter-spacing: -.06em;
}

.section-heading > p {
  max-width: 360px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.catalog-toolbar {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
}

.toolbar-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.filter-tab {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 10px;
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 40, .055);
}

.product-card::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--spot-x, 50%) var(--spot-y, 35%), rgba(0, 113, 227, .12), transparent 68%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card::before {
  position: absolute;
  z-index: 2;
  inset-block-start: 0;
  inset-inline: 28px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--card-accent, var(--blue));
  content: "";
}

.product-card[data-accent="beta"] { --card-accent: #46a6ff; }
.product-card[data-accent="modern"] { --card-accent: #7e8ea6; }
.product-card[data-accent="black-ops"] { --card-accent: #005bb8; }

.product-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  padding: 0;
  overflow: hidden;
  border-radius: 21px;
  background: var(--black);
  cursor: pointer;
}

.product-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.22, 1, .36, 1), filter 300ms ease;
}

.product-badge {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-end: 14px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.product-overlay {
  position: absolute;
  inset-inline: 14px;
  inset-block-end: 14px;
  z-index: 2;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(8, 9, 10, .68);
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  opacity: .9;
  backdrop-filter: blur(12px);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 6px 5px;
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.category {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
}

.product-meta h3 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.price,
.modal-price {
  min-width: max-content;
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
}

.price small,
.modal-price small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.price del,
.modal-price del {
  margin-inline-end: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.card-description {
  min-height: 64px;
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.85;
}

.add-button {
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
}

.add-button:hover {
  background: var(--blue);
  color: #fff;
}

.add-button.is-added {
  background: var(--blue);
  color: #fff;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 44px 24px;
  border: 1px dashed rgba(0, 113, 227, .3);
  border-radius: 24px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.order-flow {
  padding: 56px;
  border-radius: var(--radius-xl);
  background: var(--black);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.section-heading.inverse h2 {
  color: #fff;
}

.section-heading.inverse > p {
  color: var(--muted-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(255, 255, 255, .035);
}

.process-grid li > span,
.benefit > span {
  color: #8dc9ff;
  font-size: 10px;
  font-weight: 800;
}

.process-grid h3 {
  margin-top: 56px;
  color: #fff;
  font-size: 18px;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1.8;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 70px;
  align-items: start;
  padding-block: 116px 96px;
}

.about-copy {
  position: sticky;
  top: 118px;
}

.about-copy h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.about-copy > p {
  max-width: 500px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}

.benefit-grid {
  display: grid;
  gap: 14px;
}

.benefit {
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, .04);
}

.benefit > span {
  color: var(--blue);
}

.benefit h3 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 18px;
}

.benefit p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.launch-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 84px;
  padding: 44px 48px;
  border: 1px solid rgba(0, 113, 227, .16);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff, var(--blue-soft));
}

.launch-note .eyebrow {
  margin-bottom: 10px;
}

.launch-note h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.launch-note p {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding: 54px 0 24px;
  background: var(--black);
  color: #fff;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 34px;
}

.footer-brand .brand-mark {
  border-color: rgba(125, 196, 255, .2);
  background: rgba(255, 255, 255, .96);
  color: #8dc9ff;
}

.footer-brand .brand-copy small,
.footer-main p {
  color: var(--muted-dark);
}

.footer-main p {
  margin: 0;
  font-size: 11px;
}

.footer-main > a:last-child {
  min-height: 44px;
  padding: 11px 0;
  color: #8dc9ff;
  font-size: 11px;
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #8a8c93;
  font-size: 9px;
}

.toast {
  position: fixed;
  z-index: 200;
  inset-inline-start: 50%;
  inset-block-end: max(24px, env(safe-area-inset-bottom));
  max-width: min(440px, calc(100% - 32px));
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(8, 9, 10, .94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 240ms ease;
  backdrop-filter: blur(16px);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-modal,
.cart-panel,
.search-panel {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.product-modal.open,
.cart-panel.open,
.search-panel.open {
  display: flex;
}

.modal-backdrop,
.cart-backdrop,
.search-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: rgba(0, 0, 0, .58);
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1000px, 100%);
  max-height: min(90dvh, 760px);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .28);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-size: 10px;
  backdrop-filter: blur(12px);
}

.modal-image-wrap {
  min-height: 500px;
  overflow: hidden;
  background: var(--black);
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  min-width: 0;
  overflow-y: auto;
  padding: 56px 42px 38px;
  overscroll-behavior: contain;
}

.modal-content h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.045em;
}

.modal-description {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.modal-price {
  margin-top: 18px;
  color: var(--blue);
  font-size: 25px;
}

.feature-title {
  margin-top: 25px;
  color: var(--ink);
  font-size: 12px;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-inline-start: 20px;
  color: var(--ink);
  font-size: 11px;
}

.feature-list li::marker {
  color: var(--blue);
}

.order-disclaimer {
  margin: 22px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(0, 113, 227, .14);
  border-radius: 14px;
  background: var(--blue-soft);
  color: #4d6478;
  font-size: 10px;
  line-height: 1.75;
}

.modal-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 24px;
}

.search-panel {
  align-items: flex-start;
  padding-top: min(11vh, 96px);
}

.search-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(78dvh, 720px);
  overflow-y: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .3);
  overscroll-behavior: contain;
}

.search-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.search-head .eyebrow {
  margin-bottom: 8px;
}

.search-head h2 {
  color: var(--ink);
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -.05em;
}

.search-close {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 10px;
}

.search-dialog > p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.75;
}

.search-field {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}

.search-field input {
  width: 100%;
  min-height: 58px;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  outline: 0;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 15px;
}

.search-field input:focus {
  border-color: rgba(0, 113, 227, .48);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, .08);
}

.search-results {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.search-result {
  display: grid;
  width: 100%;
  min-height: 82px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: start;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.search-result:hover {
  border-color: rgba(0, 113, 227, .34);
  background: var(--blue-soft);
  transform: translateY(-1px);
}

.search-result img {
  width: 64px;
  height: 72px;
  border-radius: 13px;
  object-fit: cover;
}

.search-result span {
  display: grid;
  min-width: 0;
}

.search-result strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.search-result b {
  padding-inline-end: 10px;
  color: var(--blue);
  font-size: 9px;
}

.search-empty {
  margin: 0;
  padding: 32px 16px;
  border: 1px dashed rgba(0, 113, 227, .25);
  border-radius: 18px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.search-hint {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 8px;
  text-align: center;
}

.cart-panel {
  justify-content: flex-start;
  padding: 0;
}

.cart-sheet {
  position: absolute;
  z-index: 1;
  inset-block: 0;
  right: 0;
  display: flex;
  width: min(460px, 100%);
  flex-direction: column;
  padding: 26px;
  overflow-y: auto;
  background: #fff;
  box-shadow: -28px 0 80px rgba(0, 0, 0, .22);
  overscroll-behavior: contain;
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cart-head .eyebrow {
  margin-bottom: 7px;
}

.cart-head h2 {
  color: var(--ink);
  font-size: 38px;
  letter-spacing: -.045em;
}

.cart-close {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 10px;
}

.cart-description {
  margin: 20px 0 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.cart-items {
  display: grid;
  gap: 10px;
  padding-block: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}

.cart-item img {
  width: 76px;
  height: 86px;
  border-radius: 13px;
  object-fit: cover;
}

.cart-item-copy {
  min-width: 0;
}

.cart-item-copy strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.cart-item-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.remove-cart-item {
  min-height: 44px;
  padding: 9px 10px;
  border-radius: 12px;
  background: #fff;
  color: #a23b3b;
  cursor: pointer;
  font-size: 9px;
  font-weight: 750;
}

.cart-empty {
  display: none;
  flex: 1;
  min-height: 280px;
  align-content: center;
  justify-items: start;
  padding: 30px 8px;
}

.cart-empty.visible {
  display: grid;
}

.cart-empty strong {
  font-size: 24px;
}

.cart-empty p {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 11px;
}

.cart-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cart-total span {
  color: var(--muted);
  font-size: 11px;
}

.cart-total strong {
  color: var(--ink);
  font-size: 23px;
}

.checkout-button {
  width: 100%;
  margin-top: 18px;
  padding: 13px 18px;
  background: #e5e5e7;
  color: #6e6e73;
  cursor: not-allowed;
  font-size: 11px;
}

.cart-footer small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
}

:focus-visible {
  outline: 3px solid rgba(0, 113, 227, .42);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover::after {
    opacity: 1;
  }

  .product-card:hover .product-asset {
    filter: saturate(1.04) brightness(1.04);
    transform: scale(1.035);
  }

  .product-card:hover .product-overlay {
    background: rgba(0, 113, 227, .8);
  }
}

@media (max-width: 1080px) {
  .site-header {
    gap: 14px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .hero-copy {
    width: 66%;
    padding-inline: 46px;
  }

  .product-quick-list {
    grid-template-columns: 1fr;
  }

  .compact-intro h2 {
    max-width: none;
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
  }

  .site-header.menu-open .desktop-nav {
    display: flex;
  }

  .desktop-nav a {
    width: 100%;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .desktop-nav a:last-child {
    border-bottom: 0;
  }

  .desktop-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .compact {
    display: none;
  }

  .hero-copy {
    width: 72%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card:last-child:nth-child(odd) {
    width: calc(50% - 11px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .announcement {
    justify-content: space-between;
    gap: 12px;
    font-size: 9px;
  }

  .hero {
    width: calc(100% - 20px);
    min-height: 720px;
    margin-top: 18px;
    border-radius: 30px;
  }

  .hero-video {
    display: none;
  }

  .hero-poster img {
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 9, 10, .05) 18%, rgba(8, 9, 10, .94) 70%),
      linear-gradient(90deg, rgba(8, 9, 10, .12), rgba(8, 9, 10, .5));
  }

  .hero-copy {
    width: 100%;
    min-height: 720px;
    justify-content: flex-end;
    padding: 120px 24px 36px;
  }

  .hero h1 {
    max-width: 540px;
    font-size: clamp(46px, 13.8vw, 68px);
  }

  .hero-copy > p {
    max-width: 520px;
    margin-top: 18px;
    font-size: 12px;
  }

  .hero-ctas {
    width: 100%;
    margin-top: 20px;
  }

  .hero-ctas > * {
    flex: 1 1 180px;
  }

  .hero-proof {
    width: 100%;
    justify-content: space-between;
    margin-top: 30px;
  }

  .hero-proof div {
    min-width: 0;
    flex: 1;
    padding-inline: 12px;
  }

  .product-quick-list {
    width: calc(100% - 20px);
    padding: 20px;
  }

  .game-list {
    grid-template-columns: 1fr;
  }

  .game-chip {
    min-height: 70px;
  }

  .shop-section {
    padding-block: 82px 68px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .about-copy h2,
  .launch-note h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .section-heading > p {
    max-width: 560px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-tabs {
    width: 100%;
    justify-content: flex-start;
  }

  .filter-tab {
    flex: 1 1 auto;
  }

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

  .product-card:last-child:nth-child(odd) {
    width: 100%;
    grid-column: auto;
  }

  .product-image {
    max-height: 520px;
  }

  .order-flow {
    width: calc(100% - 20px);
    padding: 34px 22px;
    border-radius: 28px;
  }

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

  .process-grid li {
    min-height: 0;
  }

  .process-grid h3 {
    margin-top: 34px;
  }

  .about-section {
    padding-block: 82px 70px;
  }

  .launch-note {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 56px;
    padding: 32px 22px;
  }

  .launch-note .primary-button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-card {
    max-height: 92dvh;
    grid-template-columns: 1fr;
    overflow-y: auto;
    border-radius: 24px;
  }

  .modal-image-wrap {
    min-height: 260px;
    max-height: 34dvh;
  }

  .modal-content {
    overflow: visible;
    padding: 30px 20px 24px;
  }

  .modal-close {
    top: 10px;
    left: 10px;
  }

  .search-panel {
    padding: 12px;
    padding-top: max(22px, env(safe-area-inset-top));
  }

  .search-dialog {
    max-height: calc(100dvh - 34px);
    padding: 22px;
    border-radius: 24px;
  }
}

@media (max-width: 520px) {
  .announcement span:first-child {
    max-width: 210px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 60px;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .cart-button {
    min-width: 48px;
    padding: 7px;
  }

  .search-button {
    min-width: 48px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .cart-button > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-toggle {
    min-width: 58px;
    padding-inline: 10px;
  }

  .hero-copy {
    padding-inline: 20px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 58px);
  }

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

  .hero-ctas > * {
    width: 100%;
    flex-basis: auto;
  }

  .product-image {
    max-height: none;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }

  .search-dialog {
    padding: 18px 14px;
  }

  .search-head h2 {
    font-size: 31px;
  }

  .search-result {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .search-result img {
    width: 58px;
    height: 66px;
  }

  .search-result b {
    display: none;
  }

  .product-modal {
    padding: 10px;
  }

  .cart-sheet {
    width: 100%;
    padding: 22px 16px max(22px, env(safe-area-inset-bottom));
  }

  .cart-item {
    grid-template-columns: 68px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .cart-item img {
    width: 68px;
    height: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
