:root {
    --ink-950: #080b10;
    --ink-925: #0a0e14;
    --ink-900: #0d1219;
    --ink-850: #111822;
    --ink-800: #17212d;
    --line: rgba(148, 163, 184, .14);
    --line-strong: rgba(148, 163, 184, .24);
    --text: #f8fafc;
    --muted: #93a4b8;
    --quiet: #64748b;
    --brand: #38bdf8;
    --brand-strong: #0ea5e9;
    --success: #34d399;
    --warning: #fbbf24;
    --danger: #fb7185;
    --shell: min(1180px, calc(100% - 48px));
    --radius: 18px;
    color-scheme: dark;
    font-family: Geist, Inter, "Segoe UI Variable", "Segoe UI", sans-serif;
}

@property --outline-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--ink-950);
}

body {
    position: relative;
    min-width: 320px;
    margin: 0;
    color: var(--text);
    background: var(--ink-950);
    -webkit-font-smoothing: antialiased;
    isolation: isolate;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    z-index: 0;
    inset: 0;
    background:
        radial-gradient(ellipse 68% 42% at 50% -12%, rgba(56, 189, 248, .085), transparent 72%),
        linear-gradient(180deg, rgba(17, 24, 34, .26), transparent 32%);
    content: "";
    opacity: 1;
    pointer-events: none;
}

body::after {
    position: fixed;
    z-index: 9998;
    inset: 0;
    opacity: .012;
    background-image:
        radial-gradient(circle at 18% 32%, white 0 .55px, transparent .75px),
        radial-gradient(circle at 72% 68%, white 0 .45px, transparent .7px);
    background-position: 0 0, 7px 9px;
    background-size: 13px 13px, 17px 17px;
    content: "";
    pointer-events: none;
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

main {
    isolation: isolate;
}

button,
input {
    font: inherit;
}

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

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

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

svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

::selection {
    color: white;
    background: rgba(56, 189, 248, .28);
}

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 200;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 9px;
    color: var(--ink-950);
    background: var(--brand);
    font-size: .84rem;
    font-weight: 800;
    transform: translateY(-150%);
}

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

.site-shell {
    width: var(--shell);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(8, 11, 16, .72);
    backdrop-filter: blur(18px) saturate(130%);
    transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(8, 11, 16, .93);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 42px;
}

.brand {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 10px;
    font-size: .79rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.header-navigation {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.primary-nav,
.header-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.primary-nav a,
.text-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border: 0;
    color: var(--muted);
    background: transparent;
    font-size: .83rem;
    font-weight: 650;
    cursor: pointer;
    transition: color 150ms ease, background-color 150ms ease;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover,
.text-button:hover {
    color: white;
}

.primary-nav a[aria-current="page"]::after {
    position: absolute;
    bottom: -1px;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
    content: "";
}

.primary-nav a {
    position: relative;
}

.header-actions form {
    margin: 0;
}

.account-avatar {
    display: grid;
    width: 32px;
    height: 32px;
    flex: none;
    place-items: center;
    border: 1px solid rgba(56, 189, 248, .24);
    border-radius: 10px;
    color: var(--brand);
    background: rgba(56, 189, 248, .08);
}

.account-avatar svg {
    width: 18px;
    height: 18px;
}

.account-menu {
    position: relative;
}

.account-trigger {
    display: grid;
    min-width: 178px;
    min-height: 48px;
    grid-template-columns: 32px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 9px;
    padding: 6px 10px 6px 7px;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    color: #dce7f4;
    background: rgba(13, 18, 25, .72);
    cursor: pointer;
    list-style: none;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.account-trigger::-webkit-details-marker {
    display: none;
}

.account-trigger::marker {
    display: none;
    content: "";
}

.account-trigger-copy {
    display: grid;
    min-width: 0;
    gap: 1px;
}

.account-trigger-copy small,
.account-summary small {
    color: var(--quiet);
    font-size: .57rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.account-trigger-copy strong {
    overflow: hidden;
    font-size: .76rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-chevron {
    width: 17px;
    color: var(--quiet);
    transition: color 150ms ease, transform 180ms ease-in-out;
}

.account-menu[open] .account-trigger {
    border-color: rgba(56, 189, 248, .48);
    background: rgba(17, 24, 34, .94);
}

.account-menu[open] .account-chevron {
    color: var(--brand);
    transform: rotate(180deg);
}

.account-popover {
    position: absolute;
    z-index: 120;
    top: calc(100% + 11px);
    right: 0;
    width: min(320px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 17px;
    background: rgba(13, 18, 25, .985);
    box-shadow: 0 24px 72px rgba(0, 0, 0, .5);
    transform-origin: top right;
    animation: account-popover-in 170ms ease-out both;
}

.account-summary {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
}

.account-avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(56, 189, 248, .12);
}

.account-avatar-large svg {
    width: 23px;
    height: 23px;
}

.account-summary > div {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.account-summary strong,
.account-summary span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-summary strong {
    color: white;
    font-size: .96rem;
}

.account-summary span {
    color: var(--quiet);
    font-size: .72rem;
}

.account-links {
    padding: 9px;
}

.account-links a,
.account-logout button {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    border: 0;
    border-radius: 10px;
    color: #cbd5e1;
    background: transparent;
    font-size: .82rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color 150ms ease, background-color 150ms ease;
}

.account-links svg,
.account-logout svg {
    width: 19px;
    height: 19px;
    flex: none;
    color: var(--brand);
}

.account-links a[aria-current="page"] {
    color: white;
    background: rgba(56, 189, 248, .08);
}

.account-logout {
    padding: 9px;
    border-top: 1px solid var(--line);
}

.account-logout button {
    color: var(--danger);
}

.account-logout svg {
    color: currentColor;
}

@keyframes account-popover-in {
    from { opacity: 0; transform: translateY(-6px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--text);
    background: var(--ink-900);
}

.menu-toggle svg {
    width: 21px;
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    overflow: hidden;
    transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
    transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, box-shadow 180ms ease, transform 180ms ease-out;
}

.button:active {
    transform: translate3d(var(--magnet-x, 0), calc(var(--magnet-y, 0px) + 1px), 0) scale(.985);
}

.button::before {
    position: absolute;
    inset: -40% auto -40% -55%;
    width: 36%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    content: "";
    pointer-events: none;
    transform: skewX(-18deg);
    transition: left 480ms ease-out;
}

.button:hover::before,
.button:focus-visible::before {
    left: 125%;
}

.button-small {
    min-height: 41px;
    padding-inline: 15px;
    font-size: .76rem;
}

.button-primary {
    color: #041018;
    background: var(--brand);
    box-shadow: 0 8px 28px rgba(14, 165, 233, .12);
}

.button-primary:hover {
    background: #68cdf8;
    box-shadow: 0 10px 34px rgba(14, 165, 233, .22);
}

.button-secondary {
    border-color: var(--line-strong);
    color: #e7eef7;
    background: rgba(17, 24, 34, .7);
}

.button-secondary:hover {
    border-color: rgba(56, 189, 248, .34);
    color: white;
    background: var(--ink-850);
}

.button-disabled {
    color: var(--quiet);
    background: var(--ink-800);
    cursor: not-allowed;
}

.button-block {
    width: 100%;
}

.button-note {
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: .68rem;
    font-weight: 700;
    opacity: .68;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 17px;
    color: var(--brand);
    font-size: .69rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 18px;
    height: 1px;
    background: currentColor;
}

.home-showcase {
    position: relative;
    overflow: hidden;
    overflow: clip;
    padding-block: 48px 76px;
    isolation: isolate;
}

.home-showcase::before,
.home-showcase::after {
    position: absolute;
    z-index: -1;
    top: -80px;
    bottom: 0;
    width: 46%;
    content: "";
    opacity: .22;
    pointer-events: none;
    filter: blur(18px);
}

.home-showcase::before {
    left: -13%;
    background: repeating-linear-gradient(112deg, transparent 0 32px, rgba(56, 189, 248, .16) 34px 35px, transparent 38px 66px);
    mask-image: linear-gradient(90deg, transparent, black 38%, transparent 92%);
    animation: light-rays-drift 11s ease-in-out infinite alternate;
}

.home-showcase::after {
    right: -12%;
    background: repeating-linear-gradient(68deg, transparent 0 42px, rgba(56, 189, 248, .12) 44px 45px, transparent 48px 78px);
    mask-image: linear-gradient(270deg, transparent, black 34%, transparent 92%);
    animation: light-rays-drift 13s ease-in-out -4s infinite alternate-reverse;
}

@keyframes light-rays-drift {
    from { opacity: .12; transform: translate3d(-2%, -1%, 0); }
    to { opacity: .28; transform: translate3d(4%, 2%, 0); }
}

.hero-carousel {
    position: relative;
    min-height: clamp(300px, 32vw, 390px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--ink-900);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .24);
    isolation: isolate;
}

.hero-carousel::after {
    position: absolute;
    z-index: 4;
    inset: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    background: conic-gradient(from var(--outline-angle), transparent 0 56%, rgba(14, 165, 233, .18) 66%, #9ce8ff 75%, rgba(56, 189, 248, .72) 81%, transparent 93%) border-box;
    content: "";
    pointer-events: none;
    opacity: .92;
    filter: drop-shadow(0 0 7px rgba(56, 189, 248, .36));
    -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: outline-flow 5.2s linear infinite;
}

@keyframes outline-flow {
    to { --outline-angle: 360deg; }
}

.hero-carousel-viewport,
.hero-slide,
.hero-slide > a {
    position: absolute;
    inset: 0;
}

.hero-slide {
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(5%);
    transition: opacity 520ms ease, transform 620ms cubic-bezier(.2, .72, .2, 1);
}

.hero-carousel.is-backward .hero-slide:not(.is-active) {
    transform: translateX(-5%);
}

.hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.025) translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0);
    transition: transform 650ms cubic-bezier(.2, .7, .2, 1), filter 250ms ease;
}

.hero-slide-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 8, 13, .93) 0%, rgba(4, 8, 13, .72) 31%, rgba(4, 8, 13, .12) 68%, rgba(4, 8, 13, .18) 100%),
        linear-gradient(0deg, rgba(4, 8, 13, .48), transparent 56%);
}

.hero-slide-copy {
    position: absolute;
    z-index: 2;
    bottom: clamp(42px, 5vw, 62px);
    left: clamp(58px, 7vw, 88px);
    display: block;
    width: min(520px, 55%);
}

.hero-slide-copy small {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--brand);
    font-size: .64rem;
    font-style: normal;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-slide-copy small i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 13px rgba(56, 189, 248, .62);
}

.hero-slide-copy > strong {
    display: block;
    overflow: hidden;
    color: white;
    font-size: clamp(1.9rem, 4.1vw, 3.65rem);
    line-height: .98;
    letter-spacing: -.05em;
    text-wrap: balance;
}

.hero-slide-copy > span {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
}

.hero-slide-copy b {
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: .9rem;
    font-weight: 750;
}

.hero-slide-copy em {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--brand);
    font-size: .74rem;
    font-style: normal;
    font-weight: 800;
}

.hero-slide-copy em span {
    transition: transform 160ms ease-out;
}

.hero-carousel-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(148, 163, 184, .2);
    border-radius: 50%;
    color: #d8e4ef;
    background: rgba(5, 10, 16, .7);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .24);
    cursor: pointer;
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 140ms ease-out;
}

.hero-carousel-arrow svg {
    width: 19px;
    height: 19px;
}

.hero-carousel-arrow.is-previous {
    left: 18px;
}

.hero-carousel-arrow.is-next {
    right: 18px;
}

.hero-carousel-arrow:active {
    transform: translateY(-50%) scale(.94);
}

.hero-carousel-dots {
    position: absolute;
    z-index: 5;
    right: 24px;
    bottom: 22px;
    display: flex;
    gap: 0;
    padding: 2px;
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 999px;
    background: rgba(5, 10, 16, .68);
    backdrop-filter: blur(12px);
}

.hero-carousel-dots button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 0;
    color: rgba(203, 213, 225, .45);
    background: transparent;
    cursor: pointer;
}

.hero-carousel-dots button span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: currentColor;
    transition: width 200ms ease-out, color 200ms ease;
}

.hero-carousel-dots button.is-active {
    color: var(--brand);
}

.hero-carousel-dots button.is-active span {
    width: 19px;
}

.hero-carousel-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: radial-gradient(circle at 50% 42%, rgba(56, 189, 248, .1), transparent 40%), var(--ink-900);
}

.hero-carousel-empty img {
    width: 94px;
    height: 94px;
    object-fit: contain;
    opacity: .4;
}

.hero-carousel-empty small,
.hero-carousel-empty strong {
    display: block;
}

.hero-carousel-empty small {
    margin-bottom: 7px;
    color: var(--brand);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-carousel-empty strong {
    font-size: 1.5rem;
}

.catalog-hero h1,
.game-title-block h1,
.login-message h1,
.message-page h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(3rem, 5.6vw, 5.7rem);
    line-height: .94;
    letter-spacing: -.065em;
}

.catalog-section {
    padding-block: 80px 110px;
    border-top: 1px solid var(--line);
}

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

.section-heading.compact {
    margin-bottom: 18px;
}

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

.section-heading h2,
.experience-copy h2,
.download-callout h2,
.about-game h2,
.requirements-section h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.section-heading.compact h2 {
    font-size: 1.45rem;
}

.section-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    color: #cbd5e1;
    font-size: .77rem;
    font-weight: 750;
}

.section-link span {
    color: var(--brand);
    font-size: 1rem;
    transition: transform 150ms ease;
}

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

.game-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(13, 18, 25, .82);
    transition: transform 220ms cubic-bezier(.2, .7, .2, 1), border-color 180ms ease, background-color 180ms ease;
}

.home-latest .game-card {
    border-color: transparent;
    background:
        linear-gradient(rgba(13, 18, 25, .96), rgba(10, 15, 21, .98)) padding-box,
        conic-gradient(from var(--outline-angle), rgba(56, 189, 248, .18), transparent 18% 62%, rgba(14, 165, 233, .78) 75%, #c8f3ff 81%, rgba(56, 189, 248, .3) 88%, transparent 96%) border-box;
    animation: outline-flow 7s linear infinite;
}

.home-latest .game-card:nth-child(2n) { animation-delay: -2.2s; }
.home-latest .game-card:nth-child(3n) { animation-delay: -4.4s; }

.game-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--ink-850);
}

.game-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms cubic-bezier(.2, .7, .2, 1), filter 180ms ease;
}

.media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(6, 9, 13, .48));
    opacity: .6;
}

.game-state {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 7px;
    background: rgba(7, 10, 15, .78);
    backdrop-filter: blur(10px);
    font-size: .58rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.state-owned {
    color: var(--success);
}

.state-sold-out {
    color: #cbd5e1;
}

.game-card-body {
    padding: 17px;
}

.game-line {
    overflow: hidden;
    margin: 0 0 7px;
    color: var(--brand);
    font-size: .6rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.game-card h3 {
    min-height: 2.5em;
    margin: 0;
    font-size: .98rem;
    line-height: 1.25;
    letter-spacing: -.015em;
}

.game-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.game-card-footer {
    display: flex;
    min-height: 44px;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, .09);
}

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

.price-stack del,
.purchase-price del {
    color: var(--quiet);
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: .65rem;
}

.price-stack strong {
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: .94rem;
    font-variant-numeric: tabular-nums;
}

.card-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    flex: none;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
    transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.card-arrow svg {
    width: 17px;
}

.experience-section {
    border-block: 1px solid var(--line);
    background: rgba(10, 14, 20, .7);
}

.experience-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    padding-block: 104px;
}

.experience-copy > p:not(.eyebrow) {
    max-width: 450px;
    margin: 23px 0 22px;
    color: var(--muted);
    line-height: 1.7;
}

.experience-steps {
    position: relative;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.experience-steps::before {
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 23px;
    width: 1px;
    background: var(--line-strong);
    content: "";
}

.experience-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding: 20px 0;
}

.experience-steps li > span {
    z-index: 1;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    color: var(--brand);
    background: var(--ink-900);
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: .69rem;
    font-weight: 800;
}

.experience-steps strong {
    font-size: 1.06rem;
}

.experience-steps p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: .87rem;
    line-height: 1.55;
}

.download-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    margin-block: 92px;
    padding: 42px 46px;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, .18);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 50%, rgba(56, 189, 248, .10), transparent 32%),
        var(--ink-900);
}

.download-callout .eyebrow {
    margin-bottom: 11px;
}

.download-callout p:not(.eyebrow) {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: .87rem;
}

.download-status {
    color: var(--warning);
    font-size: .79rem;
}

.catalog-hero {
    display: grid;
    grid-template-columns: 1fr minmax(340px, 480px);
    align-items: end;
    gap: 70px;
    padding-block: 86px 50px;
}

.catalog-hero h1 {
    max-width: 730px;
    padding-bottom: .08em;
    font-size: clamp(2.8rem, 5vw, 4.9rem);
    line-height: 1;
}

.catalog-hero > div > p:not(.eyebrow) {
    max-width: 630px;
    margin: 23px 0 0;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.65;
}

.catalog-search {
    display: grid;
    min-height: 56px;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 5px 5px 5px 17px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(13, 18, 25, .82);
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.catalog-search:focus-within {
    border-color: rgba(56, 189, 248, .56);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, .08);
}

.catalog-search svg {
    width: 20px;
    color: var(--quiet);
}

.catalog-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    color: white;
    background: transparent;
    font-size: .84rem;
}

.catalog-search input::placeholder {
    color: #5f7084;
}

.catalog-search button {
    min-height: 44px;
    padding-inline: 16px;
    border: 0;
    border-radius: 10px;
    color: var(--ink-950);
    background: var(--brand);
    font-size: .73rem;
    font-weight: 850;
    cursor: pointer;
}

.catalog-search[aria-busy="true"] {
    border-color: rgba(56, 189, 248, .4);
}

.catalog-search[aria-busy="true"] button {
    cursor: progress;
    opacity: .7;
}

.catalog-search.has-search-error {
    border-color: rgba(251, 191, 36, .48);
}

.catalog-content {
    min-height: 520px;
    padding-bottom: 110px;
}

.filter-row {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-block: 20px;
    border-block: 1px solid var(--line);
    scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
    display: none;
}

.filter-row a {
    display: inline-flex;
    min-height: 44px;
    flex: none;
    align-items: center;
    padding-inline: 14px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 700;
}

.filter-row a:hover {
    color: white;
    background: var(--ink-900);
}

.filter-row a[aria-current="page"] {
    border-color: rgba(56, 189, 248, .22);
    color: var(--brand);
    background: rgba(56, 189, 248, .07);
}

.results-line {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--quiet);
    font-size: .76rem;
}

.results-line strong {
    color: #dbe5f1;
    font-family: "Geist Mono", "Cascadia Code", monospace;
}

.results-line a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--brand);
    font-weight: 700;
}

.catalog-pagination {
    display: grid;
    grid-template-columns: minmax(118px, 1fr) auto minmax(118px, 1fr);
    grid-template-areas:
        "previous pages next"
        "status status status";
    align-items: center;
    gap: 20px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.catalog-pagination ol {
    grid-area: pages;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalog-pagination a,
.catalog-pagination .pagination-ellipsis {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 760;
}

.catalog-pagination a:hover {
    border-color: rgba(56, 189, 248, .42);
    color: white;
    background: rgba(56, 189, 248, .07);
}

.catalog-pagination a[aria-current="page"] {
    border-color: rgba(56, 189, 248, .55);
    color: var(--ink-950);
    background: var(--brand);
}

.catalog-pagination .pagination-direction {
    gap: 8px;
    width: max-content;
    padding-inline: 14px;
}

.catalog-pagination > .pagination-direction:first-child {
    grid-area: previous;
}

.catalog-pagination > .pagination-direction:nth-child(3) {
    grid-area: next;
    justify-self: end;
}

.catalog-pagination .pagination-ellipsis {
    border-color: transparent;
}

.catalog-pagination .is-disabled {
    opacity: .36;
}

.catalog-pagination > p {
    grid-area: status;
    margin: -8px 0 0;
    color: var(--quiet);
    font-size: .7rem;
    text-align: center;
}

.empty-state {
    display: grid;
    min-height: 300px;
    place-items: center;
    align-content: center;
    padding: 40px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    text-align: center;
}

.empty-state svg {
    width: 34px;
    margin-bottom: 18px;
    color: var(--brand);
}

.empty-state h2,
.empty-state h3 {
    margin: 0;
    font-size: 1.25rem;
}

.empty-state p {
    margin: 10px 0 22px;
    color: var(--muted);
    font-size: .85rem;
}

.game-hero {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--ink-900);
}

.game-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.game-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 10, 15, .96) 0%, rgba(7, 10, 15, .69) 45%, rgba(7, 10, 15, .1) 78%),
        linear-gradient(0deg, var(--ink-950) 0%, transparent 35%);
}

.game-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 590px;
    flex-direction: column;
    justify-content: space-between;
    padding-block: 40px 76px;
}

.back-link {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
    color: #bdc9d7;
    font-size: .76rem;
    font-weight: 700;
}

.game-title-block {
    max-width: 720px;
}

.game-title-block h1 {
    font-size: clamp(3rem, 6.4vw, 6.1rem);
}

.game-title-block > p:not(.eyebrow) {
    max-width: 640px;
    margin: 24px 0 0;
    color: #b3c1d1;
    font-size: 1rem;
    line-height: 1.65;
}

.game-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 54px;
    padding-block: 70px;
}

.game-main-column {
    min-width: 0;
}

.screenshot-section,
.about-game,
.requirements-section {
    padding-bottom: 64px;
}

.screenshot-strip {
    display: grid;
    grid-auto-columns: minmax(280px, 62%);
    grid-auto-flow: column;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 11px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--ink-800) transparent;
}

.screenshot-strip a {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 13px;
    scroll-snap-align: start;
}

.screenshot-strip img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 300ms ease;
}

.about-game .eyebrow,
.requirements-section .eyebrow {
    margin-bottom: 11px;
}

.long-copy {
    max-width: 780px;
    margin-top: 24px;
    color: #9fafc0;
    font-size: .94rem;
    line-height: 1.82;
    white-space: pre-line;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 25px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--line);
}

.requirements-grid > div {
    min-width: 0;
    padding: 24px;
    background: var(--ink-900);
}

.requirements-grid strong {
    color: var(--brand);
    font-size: .69rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.requirements-grid p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .77rem;
    line-height: 1.65;
    white-space: pre-line;
}

.purchase-panel {
    position: sticky;
    top: 102px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: var(--ink-900);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.purchase-panel > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.purchase-content {
    padding: 24px;
}

.edition-label {
    margin: 0 0 13px;
    color: var(--brand);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.purchase-price {
    display: flex;
    min-height: 55px;
    flex-direction: column;
    justify-content: end;
    margin-bottom: 20px;
}

.purchase-price strong {
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: 1.7rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.04em;
}

.purchase-note {
    margin: 12px 0 0;
    color: var(--quiet);
    font-size: .7rem;
    line-height: 1.5;
    text-align: center;
}

.purchase-form .button {
    justify-content: space-between;
}

.purchase-form .button-price {
    padding-left: 14px;
    border-left: 1px solid rgba(5, 12, 19, .2);
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: .72rem;
    font-variant-numeric: tabular-nums;
}

.purchase-form .button.is-loading {
    cursor: wait;
    opacity: .78;
}

.purchase-confirmed-banner {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid rgba(52, 211, 153, .26);
    border-radius: 16px;
    background: rgba(52, 211, 153, .065);
}

.purchase-confirmed-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--success);
    color: var(--ink-950);
    font-weight: 900;
}

.purchase-confirmed-copy {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.purchase-confirmed-copy small {
    color: var(--success);
    font-size: .61rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.purchase-confirmed-banner strong {
    color: white;
    font-size: 1rem;
}

.purchase-confirmed-banner p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: .74rem;
}

.purchase-confirmed-banner .button {
    min-height: 44px;
}

.checkout-page {
    min-height: 72dvh;
    padding-block: 132px 92px;
}

.checkout-page > .back-link {
    display: inline-flex;
    margin-bottom: 30px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 370px);
    gap: 26px;
    align-items: start;
}

.checkout-main,
.checkout-summary {
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: var(--ink-900);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
}

.checkout-main {
    padding: clamp(28px, 4vw, 48px);
}

.checkout-main h1 {
    max-width: 660px;
    margin: 13px 0 0;
    font-size: clamp(2.1rem, 5vw, 4rem);
    letter-spacing: -.055em;
}

.checkout-intro {
    max-width: 620px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
}

.pix-payment-area {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    margin-top: 38px;
}

.pix-qr-frame {
    display: grid;
    overflow: hidden;
    aspect-ratio: 1;
    place-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
}

.pix-qr-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pix-copy-area label {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 760;
}

.pix-code-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.pix-code-row input {
    min-width: 0;
    height: 48px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: var(--ink-950);
    color: var(--muted);
    padding-inline: 14px;
    font: 600 .72rem/1 "Geist Mono", "Cascadia Code", monospace;
    text-overflow: ellipsis;
}

.pix-code-row input:focus-visible {
    border-color: var(--brand);
    outline: 3px solid rgba(56, 189, 248, .16);
}

.pix-copy-feedback {
    min-height: 18px;
    margin: 8px 0 0;
    color: var(--success);
    font-size: .68rem;
}

.checkout-status {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.checkout-status-pulse {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, .35);
    animation: pix-status-pulse 1.8s ease-out infinite;
}

.checkout-status strong {
    font-size: .8rem;
}

.checkout-status p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: .7rem;
}

.checkout-status.is-success .checkout-status-pulse {
    background: var(--success);
    animation: none;
}

.checkout-status.is-error .checkout-status-pulse {
    background: var(--danger);
    animation: none;
}

.checkout-status.is-warning .checkout-status-pulse {
    background: var(--warning);
}

.checkout-summary {
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.checkout-summary > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.checkout-summary > div {
    padding: 24px;
}

.checkout-summary h2 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 24px;
    padding-block: 18px;
    border-block: 1px solid var(--line);
}

.checkout-total span,
.checkout-summary dt {
    color: var(--quiet);
    font-size: .67rem;
}

.checkout-total strong {
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: 1.25rem;
    font-variant-numeric: tabular-nums;
}

.checkout-summary dl {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
}

.checkout-summary dl > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.checkout-summary dd {
    margin: 0;
    color: var(--text);
    font-size: .68rem;
    font-weight: 720;
    text-align: right;
}

.checkout-security-note {
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--quiet);
    font-size: .68rem;
    line-height: 1.6;
}

.checkout-security-note strong {
    color: var(--muted);
}

.checkout-error-page {
    min-height: 66dvh;
}

body.has-open-dialog {
    overflow: hidden;
}

.checkout-dialog {
    width: min(1160px, calc(100% - 32px));
    max-width: none;
    max-height: calc(100dvh - 32px);
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    background: var(--ink-950);
    color: var(--text);
    box-shadow: 0 32px 110px rgba(0, 0, 0, .65);
}

.checkout-dialog::backdrop {
    background: rgba(2, 5, 9, .78);
    backdrop-filter: blur(7px);
}

.checkout-dialog-shell {
    display: flex;
    max-height: calc(100dvh - 32px);
    flex-direction: column;
}

.checkout-dialog-header {
    display: flex;
    min-height: 72px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 18px 14px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(13, 18, 25, .96);
}

.checkout-dialog-header > div {
    display: grid;
    gap: 3px;
}

.checkout-dialog-header span {
    color: var(--brand);
    font-size: .62rem;
    font-weight: 820;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.checkout-dialog-header strong {
    font-size: .92rem;
}

.checkout-dialog-header button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    background: var(--ink-800);
    color: var(--muted);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}

.checkout-dialog-header button:hover {
    border-color: rgba(56, 189, 248, .35);
    background: rgba(56, 189, 248, .08);
    color: white;
}

.checkout-dialog-header button:focus-visible {
    outline: 3px solid rgba(56, 189, 248, .2);
    outline-offset: 2px;
}

.checkout-dialog-body {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 24px;
}

.checkout-dialog .checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
    gap: 20px;
}

.checkout-dialog .checkout-main,
.checkout-dialog .checkout-summary {
    box-shadow: none;
}

.checkout-dialog .checkout-main {
    padding: clamp(24px, 3vw, 36px);
}

.checkout-dialog .checkout-main h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.checkout-dialog .pix-payment-area {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.checkout-dialog .checkout-summary {
    position: static;
}

.checkout-dialog .checkout-error-page {
    min-height: min(420px, 65dvh);
    padding: 42px;
}

.checkout-dialog .checkout-error-page h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

@keyframes pix-status-pulse {
    70%, 100% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
}

.owned-message {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid rgba(52, 211, 153, .16);
    border-radius: 11px;
    background: rgba(52, 211, 153, .055);
}

.owned-message > span {
    color: var(--success);
    font-weight: 900;
}

.owned-message strong {
    font-size: .77rem;
}

.owned-message p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: .68rem;
}

.purchase-benefits,
.included-content-list {
    display: grid;
    gap: 11px;
    margin: 23px 0 0;
    padding: 21px 0 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .72rem;
    list-style: none;
}

.purchase-benefits li {
    display: flex;
    gap: 9px;
}

.purchase-benefits span {
    color: var(--success);
    font-weight: 900;
}

.included-content {
    margin-top: 24px;
}

.included-content > strong {
    font-size: .75rem;
}

.included-content-list {
    gap: 8px;
    margin-top: 12px;
    padding-top: 13px;
}

.included-content-list li::before {
    margin-right: 8px;
    color: var(--brand);
    content: "—";
}

.included-content-more {
    margin-top: 7px;
}

.included-content-more summary {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-inline: -10px;
    padding-inline: 10px;
    border-radius: 9px;
    color: var(--brand);
    cursor: pointer;
    font-size: .69rem;
    font-weight: 780;
    list-style: none;
}

.included-content-more summary::-webkit-details-marker {
    display: none;
}

.included-more-expanded {
    display: none;
}

.included-more-arrow {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease-in-out;
}

.included-content-more[open] .included-more-collapsed {
    display: none;
}

.included-content-more[open] .included-more-expanded {
    display: inline;
}

.included-content-more[open] .included-more-arrow {
    transform: translateY(2px) rotate(225deg);
}

.included-content-more .included-content-list {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.included-content-overflow {
    margin: 12px 0 3px;
    padding: 10px 12px;
    border-left: 2px solid rgba(56, 189, 248, .48);
    border-radius: 0 7px 7px 0;
    background: rgba(56, 189, 248, .055);
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.45;
}

.included-content-more summary:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
    .account-trigger:hover {
        border-color: rgba(56, 189, 248, .48);
        background: rgba(17, 24, 34, .94);
    }

    .account-links a:hover {
        color: white;
        background: rgba(56, 189, 248, .08);
    }

    .account-logout button:hover {
        color: #fda4af;
        background: rgba(251, 113, 133, .08);
    }

    .included-content-more summary:hover {
        background: rgba(56, 189, 248, .06);
        color: #7dd3fc;
    }
}

.game-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1px;
    margin-bottom: 100px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--line);
}

.game-facts > div {
    min-width: 0;
    padding: 22px;
    background: var(--ink-900);
}

.game-facts span {
    display: block;
    margin-bottom: 7px;
    color: var(--quiet);
    font-size: .61rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.game-facts strong {
    display: block;
    overflow: hidden;
    color: #dbe4ee;
    font-size: .78rem;
    line-height: 1.5;
    text-overflow: ellipsis;
}

.login-section {
    display: grid;
    min-height: calc(100dvh - 77px);
    grid-template-columns: 1fr 440px;
    align-items: center;
    gap: 110px;
    padding-block: 74px;
}

.login-message {
    max-width: 630px;
}

.login-message h1 {
    font-size: clamp(3.2rem, 6vw, 5.7rem);
}

.login-message > p:not(.eyebrow) {
    max-width: 570px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.72;
}

.login-message ul {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 35px 0 0;
    padding: 0;
    color: #aebdcc;
    font-size: .74rem;
    list-style: none;
}

.login-message li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.login-message li span {
    color: var(--brand);
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: .63rem;
}

.login-panel {
    padding: 34px;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    background: rgba(13, 18, 25, .9);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.login-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.login-heading img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.login-heading p {
    margin: 0 0 4px;
    color: var(--brand);
    font-size: .61rem;
    font-weight: 850;
    letter-spacing: .14em;
}

.login-heading h1 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: -.025em;
}

.login-intro,
.account-help {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.55;
}

.account-help a,
.form-link,
.form-error a {
    color: var(--brand);
    font-weight: 750;
    text-decoration: underline;
    text-decoration-color: rgba(56, 189, 248, .36);
    text-underline-offset: 3px;
}

.form-link {
    width: max-content;
    margin-top: 2px;
    font-size: .73rem;
}

.field-help {
    margin: -3px 0 0;
    color: var(--quiet);
    font-size: .69rem;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 13px;
    border: 1px solid rgba(52, 211, 153, .22);
    border-radius: 10px;
    color: #a7f3d0;
    background: rgba(52, 211, 153, .07);
    font-size: .76rem;
}

.form-success span {
    display: grid;
    width: 19px;
    height: 19px;
    flex: none;
    place-items: center;
    border-radius: 50%;
    color: var(--ink-950);
    background: var(--success);
    font-weight: 900;
}

.login-intro {
    margin: 24px 0;
}

.account-help {
    margin: 22px 0 0;
    text-align: center;
}

.form-error {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 13px;
    border: 1px solid rgba(251, 113, 133, .22);
    border-radius: 10px;
    color: #fecdd3;
    background: rgba(251, 113, 133, .07);
    font-size: .76rem;
    line-height: 1.5;
}

.form-error span {
    display: grid;
    width: 19px;
    height: 19px;
    flex: none;
    place-items: center;
    border-radius: 50%;
    color: var(--ink-950);
    background: var(--danger);
    font-size: .68rem;
    font-weight: 900;
}

.login-form {
    display: grid;
    gap: 10px;
}

.login-form label {
    margin-top: 7px;
    color: #cbd5e1;
    font-size: .72rem;
    font-weight: 700;
}

.login-form > input,
.password-field {
    width: 100%;
    min-height: 49px;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    color: white;
    background: #090d13;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.login-form > input {
    padding: 0 14px;
    outline: 0;
}

.login-form > input:focus,
.password-field:focus-within {
    border-color: rgba(56, 189, 248, .6);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, .08);
}

.password-field {
    display: grid;
    grid-template-columns: 1fr 48px;
    align-items: center;
}

.password-field input {
    min-width: 0;
    height: 47px;
    padding: 0 0 0 14px;
    border: 0;
    outline: 0;
    color: white;
    background: transparent;
}

.password-field button {
    display: grid;
    width: 48px;
    height: 47px;
    place-items: center;
    border: 0;
    color: var(--quiet);
    background: transparent;
    cursor: pointer;
}

.password-field button:hover {
    color: white;
}

.password-field svg {
    width: 20px;
}

.login-form .button {
    margin-top: 14px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #f8fafc;
    -webkit-box-shadow: 0 0 0 1000px #090d13 inset;
    transition: background-color 9999s ease-in-out 0s;
}

.orders-page {
    min-height: 720px;
    padding-block: 76px 110px;
}

.orders-heading {
    max-width: 680px;
    margin-bottom: 34px;
}

.orders-heading h1 {
    margin: 10px 0 12px;
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.orders-heading > p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.orders-list {
    display: grid;
    gap: 16px;
}

.orders-current-empty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 26px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(13, 18, 25, .72);
}

.orders-current-empty strong {
    font-size: .94rem;
}

.orders-current-empty p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: .76rem;
}

.order-card {
    position: relative;
    display: grid;
    grid-template-columns: 172px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(13, 18, 25, .92);
    scroll-margin-top: 104px;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.order-card.is-highlighted {
    border-color: rgba(52, 211, 153, .42);
    background: rgba(15, 27, 29, .94);
    box-shadow: 0 0 0 1px rgba(52, 211, 153, .08), 0 18px 55px rgba(0, 0, 0, .18);
}

.order-card.is-highlighted::before {
    position: absolute;
    z-index: 1;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--success);
    content: "";
}

.order-card > img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.order-summary {
    min-width: 0;
    padding: 24px 26px;
}

.order-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
}

.order-number {
    margin: 0 0 6px;
    color: var(--quiet);
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: .63rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.order-number span {
    display: inline-flex;
    margin-left: 9px;
    padding-left: 9px;
    border-left: 1px solid rgba(52, 211, 153, .3);
    color: var(--success);
}

.order-title-row h2 {
    margin: 0;
    font-size: 1.35rem;
}

.order-status {
    flex: none;
    padding: 7px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    color: var(--muted);
    font-size: .66rem;
    font-weight: 800;
}

.order-status.is-approved {
    border-color: rgba(52, 211, 153, .25);
    color: var(--success);
    background: rgba(52, 211, 153, .06);
}

.order-status.is-used {
    border-color: rgba(56, 189, 248, .24);
    color: #8bdcff;
    background: rgba(56, 189, 248, .06);
}

.order-meta {
    display: flex;
    gap: 18px;
    margin-top: 12px;
    color: var(--muted);
    font-size: .71rem;
}

.delivered-key {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.delivered-key label {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: .7rem;
    font-weight: 750;
}

.delivered-key > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.delivered-key input {
    min-width: 0;
    padding: 0 14px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    outline: 0;
    color: #dff6ff;
    background: #090d13;
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: .82rem;
}

.delivered-key p {
    margin: 8px 0 0;
    color: var(--quiet);
    font-size: .69rem;
}

.activation-guide {
    display: grid;
    margin-top: 24px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--ink-900);
}

.activation-guide h2 {
    margin: 9px 0 22px;
    font-size: 1.55rem;
}

.activation-guide ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.activation-guide li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    color: var(--muted);
    font-size: .77rem;
    line-height: 1.55;
}

.activation-guide li span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(56, 189, 248, .28);
    border-radius: 8px;
    color: var(--brand);
    font-family: "Geist Mono", "Cascadia Code", monospace;
}

.activation-guide .button {
    width: max-content;
}

.orders-history {
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(13, 18, 25, .66);
}

.orders-history summary {
    display: grid;
    min-height: 82px;
    grid-template-columns: 38px minmax(0, 1fr) auto 12px;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    transition: background-color 160ms ease;
}

.orders-history summary::-webkit-details-marker {
    display: none;
}

.orders-history summary:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: -3px;
}

.orders-history-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    color: var(--muted);
    font-size: 1rem;
}

.orders-history summary strong,
.orders-history summary small {
    display: block;
}

.orders-history summary strong {
    font-size: .86rem;
}

.orders-history summary small {
    margin-top: 4px;
    color: var(--quiet);
    font-size: .68rem;
}

.orders-history-count {
    min-width: 28px;
    padding: 5px 8px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    color: var(--muted);
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: .68rem;
    text-align: center;
}

.orders-history-chevron {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--muted);
    border-bottom: 1.5px solid var(--muted);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 180ms ease;
}

.orders-history[open] .orders-history-chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

.orders-history-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.order-history-item {
    display: grid;
    min-width: 0;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    padding: 13px 22px;
}

.order-history-item + .order-history-item {
    border-top: 1px solid rgba(148, 163, 184, .09);
}

.order-history-item > img {
    width: 54px;
    height: 54px;
    border-radius: 9px;
    object-fit: cover;
}

.order-history-item p {
    margin: 0 0 4px;
    color: var(--quiet);
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: .58rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.order-history-item h2 {
    margin: 0;
    overflow: hidden;
    font-size: .84rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-history-item .order-meta {
    margin-top: 5px;
    font-size: .64rem;
}

@media (hover: hover) and (pointer: fine) {
    .orders-history summary:hover {
        background: rgba(148, 163, 184, .035);
    }
}

.orders-empty {
    display: grid;
    min-height: 380px;
    place-items: center;
    align-content: center;
    padding: 40px;
    border: 1px dashed var(--line-strong);
    border-radius: 18px;
    text-align: center;
    background: rgba(13, 18, 25, .55);
}

.orders-empty > span {
    color: var(--brand);
    font-size: 2.4rem;
}

.orders-empty h2 {
    margin: 12px 0 8px;
}

.orders-empty p {
    margin: 0 0 22px;
    color: var(--muted);
}

.message-page {
    display: flex;
    min-height: 640px;
    max-width: 760px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 100px;
}

.message-page h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
}

.message-page > p:not(.eyebrow) {
    max-width: 620px;
    margin: 24px 0 30px;
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #070a0e;
}

.footer-inner {
    display: grid;
    min-height: 140px;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 45px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

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

.footer-brand strong {
    display: block;
    font-size: .72rem;
    letter-spacing: .08em;
}

.footer-brand p {
    margin: 4px 0 0;
    color: var(--quiet);
    font-size: .66rem;
}

.footer-inner nav {
    display: flex;
    gap: 22px;
    color: var(--muted);
    font-size: .72rem;
}

.footer-inner nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
}

.footer-inner nav a:hover {
    color: white;
}

.copyright {
    color: var(--quiet);
    font-family: "Geist Mono", "Cascadia Code", monospace;
    font-size: .65rem;
}

html.has-js [data-reveal] {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, 18px, 0) scale(.992);
    transition: opacity 540ms ease-out var(--reveal-delay, 0ms), filter 540ms ease-out var(--reveal-delay, 0ms), transform 540ms ease-out var(--reveal-delay, 0ms);
}

html.has-js [data-reveal].is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

[data-spotlight] {
    --pointer-x: 50%;
    --pointer-y: 50%;
    position: relative;
    isolation: isolate;
}

[data-spotlight]::after {
    position: absolute;
    z-index: 4;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(260px circle at var(--pointer-x) var(--pointer-y), rgba(56, 189, 248, .095), transparent 68%);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

[data-border-glow] {
    animation: border-glow-breathe 5.4s ease-in-out infinite;
}

[data-outline-flow] {
    position: relative;
    isolation: isolate;
}

[data-outline-flow]::before {
    position: absolute;
    z-index: 5;
    inset: -1px;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(from var(--outline-angle), transparent 0 58%, rgba(14, 165, 233, .22) 68%, #b9efff 76%, rgba(56, 189, 248, .82) 81%, transparent 92%);
    content: "";
    pointer-events: none;
    filter: drop-shadow(0 0 6px rgba(56, 189, 248, .24));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: outline-flow 4.6s linear infinite;
}

@keyframes border-glow-breathe {
    0%, 100% { box-shadow: 0 0 0 rgba(56, 189, 248, 0); }
    50% { box-shadow: 0 0 28px rgba(56, 189, 248, .075); }
}

.eyebrow {
    background: linear-gradient(100deg, var(--brand) 0 38%, #d9f4ff 49%, var(--brand) 60% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 240% 100%;
    color: transparent;
    animation: eyebrow-shine 7s ease-in-out infinite;
}

.eyebrow > span {
    background: var(--brand);
}

@keyframes eyebrow-shine {
    0%, 28% { background-position: 115% 0; }
    62%, 100% { background-position: -85% 0; }
}

[data-motion-heading] {
    color: var(--text);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    [data-motion-heading][data-motion-heading] {
        background: linear-gradient(105deg, #f8fafc 0 30%, #96e5ff 42%, #ffffff 50%, #38bdf8 58%, #f8fafc 70% 100%);
        -webkit-background-clip: text;
        background-clip: text;
        background-size: 240% 100%;
        color: transparent;
        animation: heading-energy 6.8s ease-in-out infinite;
    }
}

#catalog-title[data-motion-heading] {
    background: none;
    color: var(--text);
    -webkit-text-fill-color: currentColor;
    animation: none;
}

@keyframes heading-energy {
    0%, 18% { background-position: 115% 0; }
    68%, 100% { background-position: -75% 0; }
}

.motion-click-spark {
    position: fixed;
    z-index: 10000;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.motion-click-spark i {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 2px;
    height: 9px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 7px rgba(56, 189, 248, .75);
    transform: rotate(var(--spark-angle)) translateY(-4px) scaleY(.9);
    transform-origin: 1px 1px;
    animation: click-spark-out 480ms ease-out forwards;
}

@keyframes click-spark-out {
    0% { opacity: 1; transform: rotate(var(--spark-angle)) translateY(-3px) scaleY(.85); }
    100% { opacity: 0; transform: rotate(var(--spark-angle)) translateY(-24px) scaleY(.15); }
}

html.motion-paused *,
html.motion-paused *::before,
html.motion-paused *::after {
    animation-play-state: paused !important;
}

html[data-motion="lite"] body::before,
html[data-motion="lite"] main::before,
html[data-motion="lite"] .home-showcase::before,
html[data-motion="lite"] .home-showcase::after,
html[data-motion="lite"] .hero-carousel::after,
html[data-motion="lite"] [data-border-glow],
html[data-motion="lite"] [data-outline-flow]::before,
html[data-motion="lite"] [data-motion-heading],
html[data-motion="lite"] .home-latest .game-card {
    animation: none;
}

html[data-motion="lite"] .home-showcase::before,
html[data-motion="lite"] .home-showcase::after {
    opacity: .12;
}

html[data-motion="lite"] body::after {
    opacity: .016;
}

html[data-motion="lite"] [data-spotlight]::after {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .hero-slide.is-active > a:hover img {
        transform: scale(1.045) translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0);
        filter: saturate(1.05);
    }

    .hero-slide.is-active > a:hover .hero-slide-copy em span {
        transform: translateX(3px);
    }

    .hero-carousel-arrow:hover {
        border-color: rgba(56, 189, 248, .42);
        color: white;
        background: rgba(14, 165, 233, .16);
    }

    .hero-carousel-dots button:hover {
        color: #d8e4ef;
    }

    .game-card:hover {
        border-color: transparent;
        background:
            linear-gradient(var(--ink-900), var(--ink-900)) padding-box,
            conic-gradient(from var(--outline-angle), transparent 0 52%, rgba(14, 165, 233, .35) 65%, #c8f3ff 75%, rgba(56, 189, 248, .92) 81%, transparent 94%) border-box;
        animation: outline-flow 2.8s linear infinite;
        transform: perspective(900px) translateY(-4px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    }

    [data-spotlight]:hover::after {
        opacity: 1;
    }

    .game-card::before {
        position: absolute;
        z-index: 5;
        inset: -50% auto -50% -70%;
        width: 34%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
        content: "";
        pointer-events: none;
        transform: skewX(-16deg);
    }

    .game-card:hover::before {
        left: 135%;
        transition: left 640ms ease-out;
    }

    .game-card:hover .game-card-media img {
        transform: scale(1.035);
    }

    .game-card:hover .card-arrow {
        border-color: rgba(56, 189, 248, .32);
        color: var(--brand);
        background: rgba(56, 189, 248, .07);
    }

    .section-link:hover span {
        transform: translateX(3px);
    }

    .screenshot-strip a:hover img {
        transform: scale(1.025);
    }
}

@media (max-width: 1060px) {
    :root {
        --shell: min(100% - 40px, 940px);
    }

    .home-showcase {
        padding-block: 40px 68px;
    }

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

    .experience-layout {
        gap: 60px;
    }

    .game-detail-layout {
        gap: 30px;
    }

    .login-section {
        gap: 60px;
    }
}

@media (max-width: 820px) {
    :root {
        --shell: calc(100% - 32px);
    }

    .header-inner {
        min-height: 68px;
    }

    .menu-toggle {
        display: grid;
    }

    .header-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 16px;
        left: 16px;
        display: none;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--line-strong);
        border-radius: 15px;
        background: rgba(10, 14, 20, .98);
        box-shadow: 0 24px 70px rgba(0, 0, 0, .4);
    }

    .header-navigation.is-open,
    .primary-nav,
    .header-actions {
        display: grid;
    }

    .primary-nav a,
    .text-button,
    .header-actions .button {
        width: 100%;
        justify-content: flex-start;
    }

    .primary-nav a[aria-current="page"]::after {
        display: none;
    }

    .header-actions {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--line);
    }

    .account-menu,
    .account-trigger {
        width: 100%;
    }

    .account-trigger {
        min-height: 52px;
    }

    .account-popover {
        position: static;
        width: 100%;
        margin-top: 8px;
        border-radius: 13px;
        box-shadow: none;
        transform-origin: top center;
    }

    .catalog-hero,
    .experience-layout,
    .login-section {
        grid-template-columns: 1fr;
    }

    .home-showcase {
        padding-block: 32px 58px;
    }

    .hero-carousel {
        min-height: 360px;
    }

    .hero-slide-copy {
        width: min(520px, 68%);
    }

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

    .experience-layout {
        gap: 52px;
        padding-block: 78px;
    }

    .download-callout {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-hero {
        gap: 36px;
        padding-top: 70px;
    }

    .catalog-search {
        max-width: 560px;
    }

    .game-hero,
    .game-hero-content {
        min-height: 520px;
    }

    .game-hero-shade {
        background: linear-gradient(0deg, var(--ink-950), rgba(7, 10, 15, .56) 72%, rgba(7, 10, 15, .16));
    }

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

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-dialog .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-dialog .checkout-summary {
        display: grid;
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .checkout-dialog .checkout-summary > img {
        height: 100%;
        aspect-ratio: auto;
    }

    .checkout-summary {
        position: static;
        width: 100%;
        max-width: none;
        grid-row: auto;
    }

    .purchase-panel {
        position: static;
        max-width: 520px;
        grid-row: 1;
    }

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

    .login-section {
        min-height: auto;
        gap: 50px;
    }

    .login-message ul {
        display: grid;
    }

    .login-panel {
        max-width: 520px;
    }

    .activation-guide ol {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr auto;
        padding-block: 34px;
    }

    .copyright {
        grid-column: 1 / -1;
        margin: 0;
    }
}

@media (max-width: 540px) {
    :root {
        --shell: calc(100% - 24px);
        --radius: 14px;
    }

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

    .orders-page {
        padding-block: 52px 80px;
    }

    .purchase-confirmed-banner {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 17px;
    }

    .purchase-confirmed-icon {
        width: 38px;
        height: 38px;
    }

    .purchase-confirmed-banner .button {
        width: 100%;
        grid-column: 1 / -1;
    }

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

    .orders-current-empty {
        align-items: stretch;
        flex-direction: column;
    }

    .orders-current-empty .button {
        width: 100%;
    }

    .order-card > img {
        height: 170px;
        min-height: 0;
    }

    .order-summary {
        padding: 20px;
    }

    .order-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .delivered-key > div {
        grid-template-columns: 1fr;
    }

    .delivered-key input,
    .delivered-key .button {
        min-height: 46px;
        width: 100%;
    }

    .activation-guide {
        padding: 22px;
    }

    .orders-history summary {
        min-height: 76px;
        grid-template-columns: 34px minmax(0, 1fr) auto 10px;
        gap: 10px;
        padding: 15px;
    }

    .orders-history-icon {
        width: 34px;
        height: 34px;
    }

    .order-history-item {
        grid-template-columns: 46px minmax(0, 1fr);
        padding: 13px 15px;
    }

    .order-history-item > img {
        width: 46px;
        height: 56px;
    }

    .order-history-item > .order-status {
        width: max-content;
        grid-column: 2;
    }

    .catalog-hero h1,
    .login-message h1,
    .message-page h1 {
        font-size: clamp(2.65rem, 14vw, 4rem);
    }

    .home-showcase {
        padding-block: 24px 48px;
    }

    .hero-carousel {
        min-height: 390px;
        border-radius: 17px;
    }

    .hero-slide img {
        object-position: 62% center;
    }

    .hero-slide-shade {
        background: linear-gradient(0deg, rgba(4, 8, 13, .96) 0%, rgba(4, 8, 13, .72) 42%, rgba(4, 8, 13, .08) 88%);
    }

    .hero-slide-copy {
        right: 22px;
        bottom: 58px;
        left: 22px;
        width: auto;
    }

    .hero-slide-copy > strong {
        font-size: clamp(1.75rem, 9vw, 2.8rem);
    }

    .hero-carousel-arrow {
        top: 24px;
        transform: none;
    }

    .hero-carousel-arrow:active {
        transform: scale(.94);
    }

    .hero-carousel-arrow.is-previous {
        left: 14px;
    }

    .hero-carousel-arrow.is-next {
        right: 14px;
    }

    .hero-carousel-dots {
        right: 50%;
        bottom: 16px;
        transform: translateX(50%);
    }

    .catalog-section {
        padding-block: 66px 82px;
    }

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

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

    .game-card h3 {
        min-height: auto;
    }

    .experience-layout {
        padding-block: 68px;
    }

    .download-callout {
        margin-block: 68px;
        padding: 30px 24px;
    }

    .download-callout .button {
        width: 100%;
    }

    .catalog-hero {
        padding-block: 62px 36px;
    }

    .catalog-search {
        grid-template-columns: 20px 1fr;
        padding-right: 14px;
    }

    .catalog-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .catalog-pagination {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "pages pages"
            "previous next"
            "status status";
        gap: 14px 8px;
    }

    .catalog-pagination ol {
        flex-wrap: wrap;
    }

    .catalog-pagination .pagination-direction {
        width: 100%;
    }

    .results-line {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 18px;
    }

    .game-hero,
    .game-hero-content {
        min-height: 480px;
    }

    .game-hero-content {
        padding-block: 24px 48px;
    }

    .game-title-block h1 {
        font-size: clamp(2.7rem, 14vw, 4.2rem);
    }

    .game-detail-layout {
        padding-block: 42px;
    }

    .purchase-panel {
        width: 100%;
    }

    .checkout-page {
        padding-block: 96px 68px;
    }

    .checkout-dialog {
        width: calc(100% - 12px);
        max-height: calc(100dvh - 12px);
        border-radius: 15px;
    }

    .checkout-dialog-shell {
        max-height: calc(100dvh - 12px);
    }

    .checkout-dialog-header {
        min-height: 64px;
        padding: 10px 10px 10px 16px;
    }

    .checkout-dialog-body {
        padding: 10px;
    }

    .checkout-dialog .checkout-main {
        padding: 24px 18px;
    }

    .checkout-dialog .checkout-summary {
        display: block;
    }

    .checkout-dialog .checkout-summary > img {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .checkout-dialog .pix-payment-area {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .checkout-dialog .pix-qr-frame {
        width: min(100%, 240px);
        margin-inline: auto;
    }

    .checkout-main {
        padding: 26px 20px;
    }

    .checkout-main h1 {
        font-size: clamp(2.25rem, 13vw, 3.6rem);
    }

    .pix-payment-area {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pix-qr-frame {
        width: min(100%, 280px);
        margin-inline: auto;
    }

    .pix-code-row {
        grid-template-columns: 1fr;
    }

    .pix-code-row .button {
        width: 100%;
    }

    .screenshot-strip {
        grid-auto-columns: 88%;
    }

    .requirements-grid,
    .game-facts {
        grid-template-columns: 1fr;
    }

    .game-facts {
        margin-bottom: 72px;
    }

    .login-section {
        padding-block: 56px;
    }

    .login-message ul {
        margin-top: 28px;
    }

    .login-panel {
        padding: 25px 21px;
    }

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

    .footer-inner nav {
        flex-wrap: wrap;
    }

    .copyright {
        grid-column: auto;
    }
}

@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;
    }

    html.has-js [data-reveal] {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .home-showcase::before,
    .home-showcase::after,
    .hero-carousel::after,
    body::before,
    main::before,
    [data-border-glow],
    [data-outline-flow]::before,
    [data-motion-heading][data-motion-heading],
    .home-latest .game-card,
    .eyebrow {
        animation: none;
    }

    [data-spotlight]::after {
        display: none;
    }

    .button::before,
    .game-card::before {
        display: none;
    }
}
