@font-face {
  font-family: "Alexandria";
  src: url("assets/fonts/Alexandria-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #0a0e15;
  --ink-2: #111824;
  --paper: #f4f5f7;
  --white: #ffffff;
  --text: #111827;
  --muted: #626b78;
  --line: #d7dce3;
  --blue: #1f6fff;
  --blue-dark: #104db8;
  --green: #168f5d;
  --green-dark: #0d7047;
  --yellow: #f0b840;
  --coral: #e45e50;
  --radius: 7px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Alexandria", "Segoe UI", Tahoma, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  inset-inline-start: 8px;
  z-index: 300;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 66px;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid #263043;
  animation: headerIn 520ms cubic-bezier(.2, .75, .25, 1) both;
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  background: #080c12;
  box-shadow: 0 10px 28px rgba(3, 7, 13, .2);
}

.header-inner,
.section-inner,
.release-strip-inner,
.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 850;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  transition: transform 260ms cubic-bezier(.2, .8, .2, 1);
}

.brand:hover img,
.brand:focus-visible img {
  transform: rotate(-5deg) scale(1.07);
}

.brand strong {
  color: #4d91ff;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.desktop-nav a {
  padding: 7px 0;
  color: #bbc4d2;
  font-size: 13px;
  font-weight: 650;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-1px);
}

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

.language-switch {
  width: 84px;
  height: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  background: #1d2635;
  border: 1px solid #334055;
  border-radius: 6px;
}

.language-switch button {
  border: 0;
  border-radius: 4px;
  color: #b8c1cf;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.language-switch button[aria-pressed="true"] {
  color: var(--white);
  background: var(--blue);
}

.header-order {
  position: relative;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: var(--white);
  background: var(--green);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 0 rgba(22, 143, 93, 0);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
  isolation: isolate;
}

.header-order:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(22, 143, 93, .22);
}

.menu-button {
  width: 40px;
  height: 40px;
  display: none;
  place-content: center;
  gap: 4px;
  padding: 8px;
  color: var(--white);
  background: transparent;
  border: 1px solid #344155;
  border-radius: 6px;
  cursor: pointer;
}

.menu-button span {
  width: 19px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  padding: 8px 20px 16px;
  background: var(--ink);
  border-bottom: 1px solid #263043;
  transform-origin: top center;
  animation: mobileMenuIn 220ms ease-out both;
}

.mobile-menu a {
  display: block;
  padding: 13px 3px;
  color: #d4dbe5;
  border-bottom: 1px solid #252e3d;
  font-size: 14px;
  transition: color 180ms ease, padding-inline-start 180ms ease, background-color 180ms ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu a.is-active {
  color: var(--white);
  background: #111a28;
  padding-inline-start: 10px;
}

.hero {
  position: relative;
  height: min(710px, calc(100svh - 108px));
  min-height: 565px;
  color: var(--white);
  background-color: #060b12;
  overflow: hidden;
}

.hero-media {
  --hero-x: 0px;
  --hero-y: 0px;
  position: absolute;
  inset: -2%;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.025);
  transition: transform 220ms ease-out;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroMediaIn 1250ms cubic-bezier(.2, .7, .2, 1) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 13, .82);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 46px;
}

.hero-item {
  opacity: 0;
  animation: heroItemIn 620ms cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero-item:nth-child(1) { animation-delay: 130ms; }
.hero-item:nth-child(2) { animation-delay: 210ms; }
.hero-item:nth-child(3) { animation-delay: 290ms; }
.hero-item:nth-child(4) { animation-delay: 370ms; }
.hero-item:nth-child(5) { animation-delay: 450ms; }
.hero-item:nth-child(6) { animation-delay: 530ms; }

.release-line,
.plain-heading > p,
.buy-main > p,
.edition-title > p {
  margin: 0 0 16px;
  color: #70a6ff;
  font: 800 13px/1.5 "Alexandria", "Segoe UI", sans-serif;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: 66px;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 710px;
  margin: 22px 0 0;
  color: #d9dfe8;
  font-size: 19px;
  line-height: 1.85;
}

.hero-specs {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  direction: ltr;
}

.hero-specs li {
  padding: 6px 10px;
  color: #d2dae6;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 4px;
  font: 650 11px/1.2 Consolas, monospace;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.hero-specs li:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .36);
  transform: translateY(-2px);
}

.hero-order {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.order-button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  font-weight: 850;
  box-shadow: 0 0 0 rgba(22, 143, 93, 0);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
  isolation: isolate;
}

.order-button > * {
  position: relative;
  z-index: 1;
}

.order-button::after,
.header-order::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -24px;
  z-index: 0;
  width: 12px;
  background: rgba(255, 255, 255, .22);
  pointer-events: none;
  transform: skewX(-16deg) translateX(-20px);
}

.order-button:hover::after,
.order-button:focus-visible::after,
.header-order:hover::after,
.header-order:focus-visible::after {
  animation: buttonSweep 620ms ease-out both;
}

.order-button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 143, 93, .24);
}

.order-button:active,
.header-order:active,
.language-switch button:active,
.menu-button:active,
.preview-tabs button:active,
.preview-expand:active,
.dialog-close:active {
  transform: scale(.97);
}

.order-button.dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.order-button.dark:hover {
  background: #1b2432;
}

.wa-mark {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 26px;
  color: var(--green-dark);
  background: var(--white);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.price-block {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-block strong {
  color: #ffcc63;
  font-size: 28px;
}

.price-block span {
  color: #b9c3d1;
  font-size: 12px;
}

.player-only {
  margin: 17px 0 0;
  color: #99a5b5;
  font-size: 11px;
}

.release-strip {
  color: var(--white);
  background: var(--ink-2);
  border-bottom: 3px solid var(--coral);
}

.release-strip-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.release-strip span {
  min-width: 0;
  padding: 10px 20px;
  border-inline-end: 1px solid #303a4b;
  color: #d2d8e2;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0;
  animation: stripItemIn 420ms ease-out forwards;
  animation-delay: 620ms;
}

.release-strip span:nth-child(2) { animation-delay: 690ms; }
.release-strip span:nth-child(3) { animation-delay: 760ms; }
.release-strip span:nth-child(4) { animation-delay: 830ms; }

.release-strip span:last-child {
  border-inline-end: 0;
}

.release-strip b {
  display: block;
  color: #7e8a9c;
  font-size: 10px;
  font-weight: 700;
}

.product-section,
.details-section,
.edition-section,
.buy-section,
.faq-section {
  padding: 88px 0;
}

.product-section {
  background: var(--white);
}

.plain-heading {
  max-width: 710px;
  margin-bottom: 38px;
}

.plain-heading h2,
.edition-title h2,
.buy-main h2 {
  margin: 0;
  font-size: 37px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.plain-heading > span,
.edition-title > span,
.buy-main > span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.preview-toolbar {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 12px;
  color: #aeb9c8;
  background: var(--ink-2);
  border: 1px solid #2f394a;
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  font: 600 11px/1.2 Consolas, monospace;
  overflow: hidden;
}

.preview-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  background: #202938;
  border-radius: 5px;
}

.preview-tabs button {
  min-width: 92px;
  height: 34px;
  padding: 0 13px;
  color: #b7c0cd;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.preview-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--blue);
}

.preview-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #273145;
  overflow: hidden;
}

.preview-progress i {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
}

[dir="rtl"] .preview-progress i {
  transform-origin: right center;
}

.preview-toolbar.is-timing .preview-progress i {
  animation: previewTimer 6200ms linear both;
}

.preview-toolbar.is-paused .preview-progress i {
  animation-play-state: paused;
}

.preview-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

#preview-counter {
  color: #7295cb;
  direction: ltr;
  unicode-bidi: isolate;
}

.preview-expand {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #d5deeb;
  background: #202938;
  border: 1px solid #364258;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.preview-expand:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-1px);
}

.app-preview {
  margin: 0;
  overflow: hidden;
  background: #080d14;
  border: 1px solid #2f394a;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 24px 54px rgba(8, 15, 28, .16);
}

.app-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: top center;
  background: #080d14;
  transition: opacity 260ms ease, transform 340ms cubic-bezier(.2, .8, .2, 1), filter 260ms ease;
}

.app-preview:hover img:not(.is-changing) {
  transform: scale(1.006);
}

.app-preview img.is-changing {
  opacity: .18;
  filter: blur(2px);
  transform: scale(.985);
}

.app-preview figcaption {
  padding: 14px 18px;
  color: #c2cad6;
  background: #111824;
  border-top: 1px solid #2f394a;
  font-size: 12px;
}

.details-section {
  color: var(--white);
  background: #101620;
}

.details-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 78px;
  align-items: start;
}

.plain-heading.light {
  margin: 0;
}

.plain-heading.light > span {
  color: #9da8b8;
}

.detail-rows {
  border-top: 1px solid #344052;
}

.detail-rows article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid #344052;
  opacity: 0;
  transform: translateY(12px);
}

.detail-rows.is-visible article {
  animation: rowIn 420ms ease-out forwards;
}

.detail-rows.is-visible article:nth-child(2) { animation-delay: 70ms; }
.detail-rows.is-visible article:nth-child(3) { animation-delay: 140ms; }
.detail-rows.is-visible article:nth-child(4) { animation-delay: 210ms; }

.detail-rows h3 {
  margin: 0;
  color: #8cb5ff;
  font-size: 15px;
}

.detail-rows p {
  margin: 0;
  color: #c6ced9;
  font-size: 14px;
  line-height: 1.85;
}

.edition-section {
  background: var(--paper);
}

.edition-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 78px;
  align-items: start;
}

.edition-title > p {
  color: var(--blue);
}

.edition-title h2 {
  font-size: 32px;
}

.edition-table {
  margin: 0;
  border-top: 1px solid #bfc7d1;
}

.edition-table > div {
  min-height: 55px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid #bfc7d1;
  opacity: 0;
  transform: translateY(10px);
}

.edition-table.is-visible > div {
  animation: rowIn 380ms ease-out forwards;
}

.edition-table.is-visible > div:nth-child(2) { animation-delay: 55ms; }
.edition-table.is-visible > div:nth-child(3) { animation-delay: 110ms; }
.edition-table.is-visible > div:nth-child(4) { animation-delay: 165ms; }
.edition-table.is-visible > div:nth-child(5) { animation-delay: 220ms; }

.edition-table dt {
  color: var(--muted);
  font-size: 12px;
}

.edition-table dd {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.buy-section {
  color: var(--text);
  background: #e9edf3;
  border-top: 5px solid var(--yellow);
}

.buy-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 86px;
  align-items: center;
}

.buy-main > p {
  color: var(--blue);
}

.buy-main > span {
  max-width: 560px;
}

.buy-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 26px 0 22px;
}

.buy-price strong {
  color: var(--blue-dark);
  font-size: 32px;
}

.buy-price small {
  color: var(--muted);
  font-size: 12px;
}

.buy-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #bfc7d1;
}

.buy-steps li {
  min-height: 66px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #bfc7d1;
  opacity: 0;
  transform: translateY(10px);
}

.buy-steps.is-visible li {
  animation: rowIn 380ms ease-out forwards;
}

.buy-steps.is-visible li:nth-child(2) { animation-delay: 65ms; }
.buy-steps.is-visible li:nth-child(3) { animation-delay: 130ms; }
.buy-steps.is-visible li:nth-child(4) { animation-delay: 195ms; }

.buy-steps b {
  color: var(--blue);
  font: 800 12px/1 Consolas, monospace;
}

.buy-steps span {
  font-size: 14px;
  line-height: 1.6;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 78px;
  align-items: start;
}

.faq-layout .plain-heading {
  margin: 0;
}

.faq-list {
  border-top: 1px solid #c5ccd5;
}

.faq-list details {
  border-bottom: 1px solid #c5ccd5;
}

.faq-list summary {
  position: relative;
  padding: 21px 38px 21px 0;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 800;
}

[dir="ltr"] .faq-list summary {
  padding: 21px 0 21px 38px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  inset-inline-start: 7px;
  top: 50%;
  width: 13px;
  height: 2px;
  background: var(--blue);
  transition: transform 150ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list p {
  max-width: 720px;
  margin: -3px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq-list details[open] p {
  animation: faqAnswerIn 220ms ease-out both;
}

.preview-dialog {
  width: min(1500px, calc(100% - 36px));
  max-width: none;
  max-height: calc(100svh - 36px);
  padding: 0;
  color: var(--white);
  background: #080d14;
  border: 1px solid #354157;
  border-radius: var(--radius);
  overflow: hidden;
}

.preview-dialog[open] {
  animation: dialogIn 260ms cubic-bezier(.2, .8, .2, 1) both;
}

.preview-dialog::backdrop {
  background: rgba(3, 6, 10, .88);
  animation: backdropIn 220ms ease-out both;
}

.preview-dialog-shell {
  display: grid;
  grid-template-rows: 54px minmax(0, 1fr) auto;
  max-height: calc(100svh - 38px);
}

.preview-dialog header {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto 38px;
  gap: 14px;
  align-items: center;
  padding: 8px 12px 8px 18px;
  background: var(--ink-2);
  border-bottom: 1px solid #354157;
}

.preview-dialog header strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.preview-dialog header > span {
  color: #8090a6;
  direction: ltr;
  unicode-bidi: isolate;
  font: 700 11px/1 Consolas, monospace;
}

.dialog-close,
.dialog-arrow {
  display: grid;
  place-items: center;
  padding: 0;
  color: #dbe3ee;
  background: #1c2636;
  border: 1px solid #3b4960;
  border-radius: 5px;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.dialog-close {
  width: 34px;
  height: 34px;
  font-size: 21px;
}

.dialog-close:hover,
.dialog-arrow:hover {
  color: var(--white);
  background: var(--blue);
  transform: scale(1.04);
}

.preview-dialog-stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  background: #05080d;
  overflow: auto;
}

.preview-dialog-stage img {
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 130px);
  object-fit: contain;
  transition: opacity 220ms ease, transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.preview-dialog-stage img.is-changing {
  opacity: .18;
  transform: scale(.99);
}

.dialog-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 54px;
  transform: translateY(-50%);
  font-size: 31px;
}

.dialog-arrow:hover {
  transform: translateY(-50%) scale(1.04);
}

.dialog-previous {
  left: 14px;
}

.dialog-next {
  right: 14px;
}

.preview-dialog-shell > p {
  margin: 0;
  padding: 12px 18px;
  color: #bec8d6;
  background: var(--ink-2);
  border-top: 1px solid #354157;
  font-size: 12px;
  line-height: 1.6;
}

.site-footer {
  padding: 28px 0;
  color: #9ca7b6;
  background: #080c12;
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
  align-items: center;
  font-size: 11px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
}

.footer-inner p {
  margin: 0;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(.2, .75, .25, 1);
}

.reveal-from-edge {
  transform: translateX(30px);
}

.reveal-from-opposite {
  transform: translateX(-30px);
}

[dir="ltr"] .reveal-from-edge {
  transform: translateX(-30px);
}

[dir="ltr"] .reveal-from-opposite {
  transform: translateX(30px);
}

.reveal-scale {
  transform: translateY(18px) scale(.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes headerIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes buttonSweep {
  from { left: -24px; }
  to { left: calc(100% + 24px); }
}

@keyframes previewTimer {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes mobileMenuIn {
  from { opacity: 0; transform: scaleY(.96) translateY(-6px); }
  to { opacity: 1; transform: scaleY(1) translateY(0); }
}

@keyframes heroMediaIn {
  from { opacity: 0; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes heroItemIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes stripItemIn {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rowIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes faqAnswerIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dialogIn {
  from { opacity: 0; transform: scale(.975) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes backdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

:focus-visible {
  outline: 3px solid #ffce66;
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-order {
    display: none;
  }

  .header-actions {
    margin-inline-start: auto;
  }

  .menu-button {
    display: grid;
  }

  .details-layout,
  .edition-layout,
  .buy-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .plain-heading.light {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .section-inner,
  .release-strip-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    height: 62px;
  }

  .brand {
    font-size: 14px;
  }

  .brand img {
    width: 33px;
    height: 33px;
  }

  .language-switch {
    width: 76px;
    height: 33px;
  }

  .mobile-menu {
    top: 62px;
  }

  .hero {
    height: calc(100svh - 92px);
    min-height: 570px;
  }

  .hero-media {
    inset: -1.5%;
  }

  .hero-media img {
    object-position: 30% top;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-specs {
    gap: 7px;
    margin-top: 20px;
  }

  .hero-specs li {
    padding: 5px 7px;
    font-size: 9px;
  }

  .hero-order {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .price-block {
    align-items: center;
    text-align: center;
  }

  .order-button {
    width: 100%;
  }

  .player-only {
    align-self: center;
    text-align: center;
  }

  .release-strip-inner {
    grid-template-columns: 1fr 1fr;
    padding: 9px 0;
  }

  .release-strip span {
    padding: 10px 9px;
    border-inline-end: 0;
    border-bottom: 1px solid #303a4b;
  }

  .release-strip span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .product-section,
  .details-section,
  .edition-section,
  .buy-section,
  .faq-section {
    padding: 66px 0;
  }

  .plain-heading h2,
  .buy-main h2 {
    font-size: 28px;
  }

  .plain-heading > span,
  .edition-title > span,
  .buy-main > span {
    font-size: 14px;
  }

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

  .preview-tabs {
    width: 100%;
  }

  .preview-tabs button {
    flex: 1;
    min-width: 0;
    padding-inline: 8px;
  }

  .preview-meta {
    width: 100%;
    justify-content: space-between;
  }

  .preview-dialog {
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
  }

  .preview-dialog-shell {
    max-height: calc(100svh - 18px);
  }

  .preview-dialog header {
    padding-inline: 10px;
  }

  .dialog-arrow {
    width: 38px;
    height: 48px;
  }

  .dialog-previous {
    left: 8px;
  }

  .dialog-next {
    right: 8px;
  }

  .detail-rows article {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 20px 0;
  }

  .edition-table > div {
    grid-template-columns: 120px 1fr;
    gap: 12px;
  }

  .buy-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .buy-steps li {
    grid-template-columns: 42px 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
