:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-2: #0d0d0c;
  --panel: rgba(12, 12, 11, 0.82);
  --panel-strong: rgba(17, 16, 14, 0.96);
  --line: rgba(190, 160, 112, 0.22);
  --line-bright: rgba(220, 188, 132, 0.52);
  --text: #e8e1d4;
  --muted: #948c80;
  --gold: #c7a574;
  --ember: #ba4f24;
  --ash: #15181a;
  --radius: 2px;
  --serif: "Times New Roman", "Songti SC", "SimSun", serif;
  --sans: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(120, 125, 124, 0.16), transparent 36rem),
    radial-gradient(circle at 16% 28%, rgba(160, 54, 25, 0.13), transparent 28rem),
    linear-gradient(180deg, #030303 0%, #0b0b0a 42%, #040404 100%);
  color: var(--text);
  font-family: var(--sans);
  letter-spacing: 0;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 78%);
}

body::after {
  z-index: 100;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025), transparent 1px),
    radial-gradient(circle, transparent 58%, rgba(0, 0, 0, 0.78));
  background-size: 100% 3px, 100% 100%;
  mix-blend-mode: soft-light;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

#starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.42;
}

.ember-layer {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 44vh;
  pointer-events: none;
  background:
    radial-gradient(circle at 9% 88%, rgba(218, 79, 35, 0.55), transparent 10rem),
    radial-gradient(circle at 88% 80%, rgba(218, 79, 35, 0.32), transparent 12rem),
    linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
  opacity: 0.75;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 270px 1fr;
  align-items: center;
  gap: 26px;
  min-height: 86px;
  padding: 0 clamp(18px, 5vw, 92px);
  border-bottom: 1px solid rgba(199, 165, 116, 0.18);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38));
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  color: var(--text);
}

.brand-mark,
.launcher-icon {
  display: grid;
  width: 44px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line-bright);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    rgba(0, 0, 0, 0.44);
  clip-path: polygon(50% 0, 92% 18%, 82% 82%, 50% 100%, 18% 82%, 8% 18%);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
}

.brand strong,
.brand small {
  display: block;
  font-family: var(--serif);
  letter-spacing: 4px;
}

.brand strong {
  font-size: 22px;
  font-weight: 700;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 38px);
}

.site-nav a,
.text-button {
  position: relative;
  border: 0;
  color: #b8b1a7;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: color 180ms ease;
}

.site-nav a {
  padding: 34px 2px 31px;
}

.site-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition:
    left 180ms ease,
    right 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  right: -18px;
  left: -18px;
}

.site-nav .nav-cta {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.58);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--gold);
}

main {
  min-height: 72vh;
}

.page {
  display: none;
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0 78px;
  animation: pageIn 520ms ease both;
}

.page.active {
  display: block;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1.28fr);
  align-items: end;
  min-height: 720px;
  margin: -112px calc(50% - 50vw) 0;
  padding: 170px clamp(24px, 10vw, 180px) 92px;
  overflow: hidden;
  border-bottom: 1px solid rgba(199, 165, 116, 0.18);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.48) 34%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.88)),
    url("assets/back.png") center / cover no-repeat,
    #080808;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 58% 16%, rgba(240, 236, 226, 0.28), transparent 10rem),
    radial-gradient(circle at 62% 92%, rgba(194, 72, 29, 0.24), transparent 16rem);
  mix-blend-mode: screen;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(199, 165, 116, 0.3), transparent);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding-bottom: 58px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  color: #e7dfd2;
  font-size: clamp(52px, 5.2vw, 88px);
  line-height: 0.98;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.82);
}

.hero h1 {
  max-width: 540px;
}

.hero h1::first-line {
  color: #f0eadf;
}

h2 {
  margin-bottom: 18px;
  color: #d9d0c3;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  color: #e5ddd0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
}

.hero-lead,
.page-hero p,
.service-grid p,
.detail-panel p,
.launcher-panel p,
.order-card p,
.news-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-lead {
  max-width: 520px;
  color: #bcae9b;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
  color: #d5c9b7;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.btn::after {
  margin-left: 18px;
  content: "→";
  color: var(--gold);
  font-size: 18px;
}

.btn:hover,
.game-card:hover {
  transform: translateY(-4px);
}

.btn.primary {
  border-color: var(--line-bright);
  background: linear-gradient(90deg, rgba(199, 165, 116, 0.18), rgba(0, 0, 0, 0.34));
  color: #f0e5d2;
}

.btn.ghost {
  border-color: rgba(199, 165, 116, 0.32);
}

.btn.full {
  width: 100%;
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 52%;
  display: grid;
  width: 46px;
  height: 64px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #d8d0c4;
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1;
  opacity: 0.72;
}

.hero-arrow.prev {
  left: 32px;
}

.hero-arrow.next {
  right: 32px;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(232, 225, 212, 0.8);
  background: rgba(0, 0, 0, 0.42);
  transform: rotate(45deg);
}

.hero-dots .active {
  background: #e8e1d4;
}

.section {
  padding: 70px 0;
}

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

.section-heading.centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-heading.centered::before,
.section-heading.centered::after {
  width: min(360px, 54vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(199, 165, 116, 0.38), transparent);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading a,
.text-button,
.news-grid a {
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.games-showcase {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding-right: clamp(18px, 5vw, 92px);
  padding-left: clamp(18px, 5vw, 92px);
  background: linear-gradient(180deg, rgba(10, 10, 9, 0.92), rgba(3, 3, 3, 0.96));
}

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

.game-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.game-card,
.service-grid article,
.detail-panel,
.launcher-panel,
.download-row,
.pay-form,
.order-card,
.profile-card,
.account-panels article,
.auth-card,
.news-grid article {
  border: 1px solid rgba(199, 165, 116, 0.18);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 24px 64px rgba(0, 0, 0, 0.44);
}

.game-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #070706;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    filter 220ms ease;
}

.game-card:hover {
  border-color: rgba(199, 165, 116, 0.62);
  filter: brightness(1.08);
}

.game-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.94) 82%),
    var(--image) center / cover no-repeat,
    var(--art);
  transition: transform 400ms ease;
}

.game-card:hover .game-art {
  transform: scale(1.045);
}

.game-art::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 34%, rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.24), transparent 9rem);
}

.game-art::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(199, 165, 116, 0.6), transparent);
}

.game-card-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px;
  text-align: center;
}

.game-card-body p {
  display: none;
}

.game-card-body h3 {
  margin-bottom: 4px;
  font-size: clamp(26px, 2.3vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.tag,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(199, 165, 116, 0.22);
  background: rgba(0, 0, 0, 0.44);
  color: #b9ad9d;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 1px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 260px;
  margin: 16px auto 0;
}

.card-actions .btn {
  min-height: 38px;
  padding: 0 12px;
  font-size: 11px;
}

.center-action {
  display: grid;
  justify-items: center;
  margin-top: 28px;
}

.news-section {
  margin: 0 calc(50% - 50vw);
  padding-right: clamp(18px, 7vw, 120px);
  padding-left: clamp(18px, 7vw, 120px);
  border-top: 1px solid rgba(199, 165, 116, 0.12);
  background: rgba(0, 0, 0, 0.62);
}

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

.news-grid article {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
}

.news-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent),
    url("assets/echo.svg") center / cover no-repeat;
  opacity: 0.28;
}

.news-grid article > * {
  position: relative;
  z-index: 1;
}

.news-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 1px;
}

.page-hero.slim {
  position: relative;
  margin-bottom: 34px;
  padding: 86px clamp(26px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(199, 165, 116, 0.2);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.24)),
    url("assets/iron.svg") center / cover no-repeat;
}

.page-hero.slim::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(199, 165, 116, 0.12);
  pointer-events: none;
}

.page-hero.slim > * {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero.slim h1 {
  margin-bottom: 14px;
  font-size: clamp(44px, 6.2vw, 86px);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip {
  min-width: 82px;
  border-radius: var(--radius);
}

.chip.active,
.method.active,
.product-card.active {
  border-color: rgba(199, 165, 116, 0.72);
  background: rgba(199, 165, 116, 0.14);
  color: var(--gold);
}

.detail-shell {
  display: grid;
  gap: 18px;
}

.text-button {
  justify-self: start;
  padding: 8px 0;
  background: transparent;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(199, 165, 116, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.22)),
    var(--detail-image) center / cover no-repeat,
    var(--detail-art);
}

.detail-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(28px, 5vw, 62px);
}

.detail-hero-copy h1 {
  font-size: clamp(48px, 6vw, 92px);
}

.detail-visual {
  position: relative;
}

.detail-visual::before {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(199, 165, 116, 0.32);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  animation: sigilPulse 4s ease-in-out infinite;
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
}

.detail-panel {
  padding: 26px;
}

.detail-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(199, 165, 116, 0.12);
}

.detail-panel dt {
  color: var(--muted);
}

.detail-panel dd {
  margin: 0;
  color: #d5c9b7;
  text-align: right;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.feature-list span {
  padding: 14px;
  border: 1px solid rgba(199, 165, 116, 0.16);
  background: rgba(0, 0, 0, 0.28);
  color: #c8bdad;
  font-family: var(--serif);
}

.download-layout,
.pay-shell,
.account-dashboard {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.launcher-panel,
.pay-form,
.order-card,
.profile-card,
.auth-card {
  padding: 26px;
}

.launcher-icon {
  width: 64px;
  height: 76px;
  margin-bottom: 22px;
}

.download-table {
  display: grid;
  gap: 12px;
}

.download-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(199, 165, 116, 0.06), transparent),
    var(--panel);
}

.download-row p {
  margin: 8px 0 0;
  color: var(--muted);
}

label {
  display: grid;
  gap: 8px;
  color: #b2a797;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(199, 165, 116, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.42);
  color: var(--text);
}

select option {
  color: #111;
}

.pay-form {
  display: grid;
  gap: 18px;
}

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

.product-card,
.method,
.settings-row button,
.settings-row a {
  min-height: 44px;
  border: 1px solid rgba(199, 165, 116, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.36);
  color: var(--text);
}

.product-card {
  padding: 14px;
  text-align: left;
}

.product-card strong,
.product-card span {
  display: block;
}

.product-card span {
  margin-top: 6px;
  color: var(--gold);
}

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

.order-card {
  position: sticky;
  top: 112px;
}

.order-card dl {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.order-card dl div,
.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.order-card dt,
.settings-row span {
  color: var(--muted);
}

.order-card dd {
  margin: 0;
  color: #d7c9b4;
  font-weight: 800;
}

.profile-card {
  text-align: center;
}

.avatar {
  display: grid;
  width: 84px;
  height: 96px;
  margin: 0 auto 18px;
  place-items: center;
  border: 1px solid var(--line-bright);
  clip-path: polygon(50% 0, 94% 18%, 82% 82%, 50% 100%, 18% 82%, 6% 18%);
  background: linear-gradient(135deg, rgba(199, 165, 116, 0.26), rgba(0, 0, 0, 0.52));
  color: var(--gold);
  font-family: var(--serif);
  font-size: 32px;
}

.account-panels {
  display: grid;
  gap: 14px;
}

.account-panels article {
  padding: 22px;
}

.settings-row {
  padding: 13px 0;
  border-bottom: 1px solid rgba(199, 165, 116, 0.12);
}

.settings-row:last-child {
  border-bottom: 0;
}

.settings-row button,
.settings-row a {
  min-height: 34px;
  padding: 0 12px;
  color: var(--gold);
}

.auth-shell {
  display: grid;
  min-height: 640px;
  place-items: center;
}

.auth-card {
  display: grid;
  width: min(460px, 100%);
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.92), rgba(0, 0, 0, 0.84)),
    url("assets/party.svg") center / cover no-repeat;
}

.auth-card h1 {
  margin-bottom: 4px;
  font-size: 44px;
}

.checkline {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--muted);
  line-height: 1.5;
}

.checkline input {
  width: 18px;
  min-height: 18px;
}

.auth-card > a {
  justify-self: center;
  color: var(--gold);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 28px clamp(18px, 5vw, 92px) 34px;
  border-top: 1px solid rgba(199, 165, 116, 0.18);
  background: #050505;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  max-width: 920px;
  margin: 6px auto 0;
  font-size: 12px;
  line-height: 1.75;
}

.site-footer strong {
  color: var(--text);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 1px;
}

.footer-links,
.licenses {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  font-size: 12px;
}

.footer-links a {
  color: var(--gold);
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.95);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 8px;
  }

  .hero,
  .detail-layout,
  .download-layout,
  .pay-shell,
  .account-dashboard {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: center;
  }

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

  .order-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    padding: 0 16px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    letter-spacing: 3px;
  }

  .brand-mark {
    width: 38px;
    height: 48px;
  }

  .site-nav {
    top: 74px;
  }

  .page {
    width: min(100% - 24px, 1320px);
    padding-top: 92px;
  }

  .hero {
    min-height: 780px;
    margin-top: -92px;
    padding: 128px 22px 54px;
  }

  .hero-copy {
    padding-bottom: 220px;
  }

  .hero-arrow {
    display: none;
  }

  .section {
    padding: 52px 0;
  }

  .page-hero.slim {
    padding: 44px 22px;
  }

  .section-heading,
  .download-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .game-grid,
  .game-grid.compact,
  .news-grid,
  .product-options,
  .payment-methods,
  .feature-list,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: 460px;
  }

  .detail-hero {
    min-height: 620px;
  }

  .detail-visual {
    min-height: 180px;
  }

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

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