:root {
    color-scheme: light;
}

html,
body {
    background: #f4ead9;
}

body.is-gamedev-page .container-modules,
body.is-gamedev-page .com-content-article,
body.is-gamedev-page .item-page,
body.is-gamedev-page .com-content-article__body,
.gamedev-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

body.is-gamedev-page .page-header {
    display: none;
}

body.is-gamedev-page [data-theme-option],
body.is-gamedev-page [data-theme-toggle] {
    display: none !important;
}

.gamedev-page {
    overflow: clip;
}

.game-shell {
    width: min(100% - 48px, 1480px);
    max-width: none;
    margin-inline: auto;
}

.game-header {
    color: var(--ink);
    background: color-mix(in srgb, #f4ead9 88%, transparent);
}

.game-header__inner {
    display: grid;
    grid-template-columns: minmax(210px, .7fr) auto minmax(260px, .7fr);
    align-items: center;
    min-height: var(--header-height);
    gap: 30px;
}

.game-header__inner>.brand {
    transform: translateY(-10px);
}

.game-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 3vw, 48px);
}

.game-nav a {
    position: relative;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.game-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.game-nav a:hover::after {
    transform: scaleX(1);
}

.game-header__actions {
    display: flex;
    justify-content: flex-end;
}

.game-header__back {
    gap: 18px;
}

.game-hero {
    position: relative;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
    background: #fbf4e851;
    isolation: isolate;
}

.game-hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgb(251 244 232 / 93%) 0%, rgb(251 244 232 / 51%) 25%, rgb(251 244 232 / 0%) 43%, rgb(251 244 232 / 0%) 66%, transparent 100%), linear-gradient(180deg, rgba(251, 244, 232, 0.0), rgba(251, 244, 232, 0.18));
    content: "";
}

.game-hero__scene {
    position: absolute;
    z-index: 0;
    inset: 0;
}

.game-hero__scene iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #fbf4e8;
}

.game-hero__inner {
    display: grid;
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 90px;
    pointer-events: none;
}

.game-hero__content {
    width: min(48%, 760px);
    max-width: 760px;
    pointer-events: auto;
}

.game-hero__visual[hidden] {
    display: none !important;
}

.game-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 32px;
}

.game-hero__meta span {
    padding: 8px 12px;
    border: 1px solid rgba(37, 28, 17, .18);
    border-radius: 999px;
    color: rgba(25, 23, 17, .62);
    background: rgba(251, 244, 232, .64);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.game-hero h1,
.games-heading h2,
.android-card h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(72px, 7.4vw, 116px);
    font-weight: 400;
    line-height: .82;
    letter-spacing: -.055em;
}

.game-hero h1 em,
.games-heading h2 em,
.android-card h2 em,
.game-card h3 em {
    color: var(--muted);
    font-style: normal;
}

.game-hero__lead {
    max-width: 590px;
    margin: 36px 0 30px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.game-primary-button,
.game-play {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    color: #fff8e9;
    background: #242018;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.game-primary-button:hover,
.game-play:hover {
    color: #fff8e9;
    box-shadow: 0 20px 45px rgba(62, 36, 17, .16);
    transform: translateY(-3px);
}

.game-hero__visual {
    position: relative;
    min-height: 590px;
    perspective: 1000px;
}

.game-visual-switcher {
    display: flex;
    position: absolute;
    z-index: 20;
    top: calc(4% + 18px);
    right: 18px;
    gap: 3px;
    max-width: calc(100% - 36px);
    padding: 3px;
    overflow-x: auto;
    border: 1px solid rgba(37, 28, 17, .16);
    border-radius: 999px;
    background: rgba(255, 248, 235, .8);
    box-shadow: 0 12px 30px rgba(61, 36, 18, .1);
    backdrop-filter: blur(12px);
    scrollbar-width: none;
}

.game-visual-switcher::-webkit-scrollbar {
    display: none;
}

.game-visual-switcher button {
    min-width: 54px;
    height: 30px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    color: rgba(25, 23, 17, .58);
    background: transparent;
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease;
}

.game-visual-switcher button.is-active {
    color: #fff5df;
    background: #242018;
}

.game-visual-panel {
    position: absolute;
    inset: 4% 0 0 3%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(.985);
    transition: opacity 360ms ease, transform 420ms ease;
}

.game-visual-panel.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.game-abstract {
    overflow: hidden;
    border: 1px solid rgba(37, 28, 17, .2);
    border-radius: 3px 52px 3px 3px;
    background:
        radial-gradient(circle at 50% 44%, rgba(226, 178, 125, .7), transparent 16%),
        linear-gradient(145deg, rgba(255, 249, 238, .9), rgba(226, 178, 125, .3));
    box-shadow: 0 30px 80px rgba(74, 43, 17, .12);
    transform-style: preserve-3d;
}

.game-abstract::before,
.game-abstract::after {
    position: absolute;
    z-index: 5;
    width: 9px;
    height: 9px;
    border: 1px solid rgba(25, 23, 17, .45);
    content: "";
}

.game-abstract::before {
    top: 22px;
    left: 22px;
    border-right: 0;
    border-bottom: 0;
}

.game-abstract::after {
    right: 22px;
    bottom: 22px;
    border-top: 0;
    border-left: 0;
}

.game-abstract__grid {
    position: absolute;
    right: -18%;
    bottom: -46%;
    left: -18%;
    height: 78%;
    background-image:
        linear-gradient(rgba(37, 28, 17, .13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 28, 17, .13) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, transparent, #000 34%);
    transform: rotateX(64deg) translateY(0);
    transform-origin: center bottom;
    animation: game-grid-drift 8s linear infinite;
}

.game-abstract__halo {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(185, 102, 53, .4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.game-abstract__halo::before,
.game-abstract__halo::after {
    position: absolute;
    border-radius: 50%;
    background: #b96635;
    box-shadow: 0 0 0 7px rgba(185, 102, 53, .11);
    content: "";
}

.game-abstract__halo--outer {
    width: 66%;
    aspect-ratio: 1;
    animation: game-orbit-turn 22s linear infinite;
}

.game-abstract__halo--outer::before {
    top: 11%;
    right: 9%;
    width: 7px;
    height: 7px;
}

.game-abstract__halo--outer::after {
    bottom: 13%;
    left: 7%;
    width: 5px;
    height: 5px;
}

.game-abstract__halo--inner {
    width: 43%;
    aspect-ratio: 1;
    border-style: dashed;
    animation: game-orbit-turn-reverse 15s linear infinite;
}

.game-abstract__halo--inner::before {
    top: 47%;
    right: -4px;
    width: 6px;
    height: 6px;
}

.game-abstract__halo--inner::after {
    display: none;
}

.game-abstract__cube {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 112px;
    height: 112px;
    transform: translate(-50%, -50%) rotateX(-18deg) rotateY(28deg);
    transform-style: preserve-3d;
    animation: game-cube-turn 13s ease-in-out infinite;
}

.game-abstract__face {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(25, 23, 17, .68);
    background:
        linear-gradient(45deg, transparent 49.5%, rgba(25, 23, 17, .24) 50%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgba(25, 23, 17, .24) 50%, transparent 50.5%),
        rgba(255, 247, 232, .15);
    backface-visibility: visible;
}

.game-abstract__face--front {
    transform: translateZ(56px);
}

.game-abstract__face--back {
    transform: rotateY(180deg) translateZ(56px);
}

.game-abstract__face--right {
    transform: rotateY(90deg) translateZ(56px);
}

.game-abstract__face--left {
    transform: rotateY(-90deg) translateZ(56px);
}

.game-abstract__face--top {
    transform: rotateX(90deg) translateZ(56px);
}

.game-abstract__face--bottom {
    transform: rotateX(-90deg) translateZ(56px);
}

.game-abstract__path {
    position: absolute;
    z-index: 2;
    right: 9%;
    bottom: 14%;
    left: 9%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(25, 23, 17, .4) 12%, rgba(25, 23, 17, .4) 88%, transparent);
    transform: rotate(-8deg);
}

.game-abstract__path i {
    position: absolute;
    top: -4px;
    width: 9px;
    height: 9px;
    border: 1px solid rgba(25, 23, 17, .52);
    background: #f4ead9;
    transform: rotate(45deg);
}

.game-abstract__path i:nth-child(1) {
    left: 7%;
}

.game-abstract__path i:nth-child(2) {
    left: 28%;
}

.game-abstract__path i:nth-child(3) {
    left: 50%;
}

.game-abstract__path i:nth-child(4) {
    left: 71%;
}

.game-abstract__path i:nth-child(5) {
    left: 92%;
}

.game-abstract__node {
    position: absolute;
    z-index: 4;
    width: 13px;
    height: 13px;
    border: 1px solid rgba(25, 23, 17, .56);
    background: rgba(255, 247, 232, .72);
    animation: game-node-float 5s ease-in-out infinite;
}

.game-abstract__node--one {
    top: 18%;
    left: 18%;
    border-radius: 50%;
}

.game-abstract__node--two {
    top: 25%;
    right: 16%;
    width: 19px;
    height: 19px;
    animation-delay: -1.4s;
    transform: rotate(45deg);
}

.game-abstract__node--three {
    right: 22%;
    bottom: 24%;
    border-radius: 50%;
    animation-delay: -2.7s;
}

.game-abstract__node--four {
    bottom: 20%;
    left: 14%;
    width: 8px;
    height: 8px;
    animation-delay: -3.6s;
}

.game-abstract__player {
    position: absolute;
    z-index: 6;
    bottom: 13.5%;
    left: 13%;
    width: 16px;
    height: 16px;
    border: 4px solid #fff5df;
    border-radius: 50%;
    background: #b96635;
    box-shadow: 0 0 0 1px rgba(25, 23, 17, .5), 0 0 30px rgba(185, 102, 53, .45);
    animation: game-player-run 7s cubic-bezier(.45, 0, .55, 1) infinite alternate;
}

.game-abstract__scan {
    position: absolute;
    z-index: 1;
    top: -20%;
    right: 0;
    left: 0;
    height: 22%;
    background: linear-gradient(180deg, transparent, rgba(185, 102, 53, .09), transparent);
    animation: game-scan 6s linear infinite;
}

@keyframes game-grid-drift {
    to {
        background-position: 0 44px, 44px 0;
    }
}

@keyframes game-orbit-turn {
    from {
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes game-orbit-turn-reverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0);
    }
}

@keyframes game-cube-turn {

    0%,
    100% {
        transform: translate(-50%, -50%) rotateX(-18deg) rotateY(28deg);
    }

    50% {
        transform: translate(-50%, -54%) rotateX(22deg) rotateY(208deg);
    }
}

@keyframes game-node-float {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -14px;
    }
}

@keyframes game-player-run {
    0% {
        left: 12%;
        translate: 0 0;
    }

    35% {
        translate: 0 -17px;
    }

    70% {
        translate: 0 10px;
    }

    100% {
        left: 84%;
        translate: 0 -3px;
    }
}

@keyframes game-scan {
    from {
        top: -22%;
    }

    to {
        top: 105%;
    }
}

.code-abstract {
    overflow: hidden;
    border: 1px solid rgba(37, 28, 17, .22);
    border-radius: 3px 52px 3px 3px;
    color: #fff5df;
    background:
        radial-gradient(circle at 76% 70%, rgba(185, 102, 53, .24), transparent 25%),
        #242018;
    box-shadow: 0 30px 80px rgba(74, 43, 17, .16);
}

.code-abstract::before {
    position: absolute;
    inset: 55px 0 0 62px;
    background-image:
        linear-gradient(rgba(255, 245, 223, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 245, 223, .035) 1px, transparent 1px);
    background-size: 34px 34px;
    content: "";
}

.code-abstract__chrome {
    display: flex;
    position: relative;
    z-index: 3;
    align-items: center;
    gap: 7px;
    height: 55px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 245, 223, .12);
}

.code-abstract__chrome i {
    width: 7px;
    height: 7px;
    border: 1px solid rgba(255, 245, 223, .5);
    border-radius: 50%;
}

.code-abstract__chrome i:first-child {
    background: #b96635;
}

.code-abstract__chrome span {
    margin-left: 14px;
    color: rgba(255, 245, 223, .48);
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    letter-spacing: .05em;
}

.code-abstract__sidebar {
    display: grid;
    position: absolute;
    z-index: 2;
    top: 55px;
    bottom: 0;
    left: 0;
    align-content: start;
    justify-items: center;
    gap: 22px;
    width: 62px;
    padding-top: 26px;
    border-right: 1px solid rgba(255, 245, 223, .1);
}

.code-abstract__sidebar span {
    width: 17px;
    height: 17px;
    border: 1px solid rgba(255, 245, 223, .25);
    border-radius: 3px;
}

.code-abstract__sidebar span:nth-child(2) {
    border-radius: 50%;
}

.code-abstract__sidebar span:nth-child(3) {
    background: rgba(185, 102, 53, .45);
    transform: rotate(45deg);
}

.code-abstract__editor {
    position: absolute;
    z-index: 3;
    top: 94px;
    right: 14%;
    left: 15%;
    padding: clamp(20px, 3vw, 38px);
    border: 1px solid rgba(255, 245, 223, .14);
    border-radius: 3px 24px 3px 3px;
    background: rgba(255, 245, 223, .035);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .15);
    backdrop-filter: blur(8px);
}

.code-line {
    display: block;
    margin: 0 0 14px;
    color: rgba(255, 245, 223, .78);
    font-family: Consolas, "Courier New", monospace;
    font-size: clamp(11px, 1.1vw, 15px);
    line-height: 1.3;
    white-space: nowrap;
}

.is-active .code-line {
    opacity: 0;
    transform: translateX(-12px);
    animation: code-line-enter 440ms ease forwards;
}

.is-active .code-line--one {
    animation-delay: 100ms;
}

.is-active .code-line--two {
    animation-delay: 210ms;
}

.is-active .code-line--three {
    animation-delay: 320ms;
}

.is-active .code-line--four {
    animation-delay: 430ms;
}

.is-active .code-line--five {
    animation-delay: 540ms;
}

.is-active .code-line--six {
    animation-delay: 650ms;
}

.is-active .code-line--seven {
    animation-delay: 760ms;
}

.is-active .code-line--eight {
    animation-delay: 870ms;
}

.is-active .code-line--nine {
    animation-delay: 980ms;
}

.code-line--three,
.code-line--four,
.code-line--seven,
.code-line--eight {
    padding-left: 24px;
}

.code-line b,
.code-line em {
    color: #e2b27d;
    font-style: normal;
    font-weight: 400;
}

.code-line i {
    color: #d77e49;
    font-style: normal;
}

.code-line strong {
    color: #ef9560;
    font-weight: 400;
}

.code-caret {
    display: inline-block;
    width: 2px;
    height: 1.05em;
    margin-left: 5px;
    vertical-align: -.18em;
    background: #e2b27d;
    animation: code-caret-blink 850ms steps(1) infinite;
}

.code-abstract__map {
    display: grid;
    position: absolute;
    z-index: 4;
    right: 5%;
    bottom: 7%;
    grid-template-columns: repeat(3, 12px);
    gap: 5px;
    padding: 13px;
    border: 1px solid rgba(255, 245, 223, .16);
    background: rgba(36, 32, 24, .82);
}

.code-abstract__map i {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 245, 223, .18);
}

.code-abstract__map i:nth-child(2),
.code-abstract__map i:nth-child(5),
.code-abstract__map i:nth-child(8) {
    background: rgba(185, 102, 53, .75);
}

.code-abstract__badge {
    display: grid;
    position: absolute;
    z-index: 5;
    place-items: center;
    border: 1px solid rgba(255, 245, 223, .18);
    color: rgba(255, 245, 223, .62);
    background: rgba(36, 32, 24, .8);
    font-family: Consolas, "Courier New", monospace;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .14);
    animation: code-badge-float 5s ease-in-out infinite;
}

.code-abstract__badge--one {
    top: 17%;
    right: 6%;
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.code-abstract__badge--two {
    bottom: 8%;
    left: 10%;
    width: 48px;
    height: 48px;
    animation-delay: -1.8s;
    transform: rotate(8deg);
}

.code-abstract__badge--three {
    top: 23%;
    left: 7%;
    width: 54px;
    height: 34px;
    animation-delay: -3.1s;
}

.code-abstract__scan {
    position: absolute;
    z-index: 1;
    top: 55px;
    bottom: 0;
    left: 62px;
    width: 18%;
    background: linear-gradient(90deg, transparent, rgba(226, 178, 125, .07), transparent);
    animation: code-scan-x 7s linear infinite;
}

@keyframes code-line-enter {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes code-caret-blink {
    50% {
        opacity: 0;
    }
}

@keyframes code-badge-float {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -12px;
    }
}

@keyframes code-scan-x {
    from {
        left: 42px;
    }

    to {
        left: 102%;
    }
}

.physics-abstract {
    overflow: hidden;
    border: 1px solid rgba(37, 28, 17, .2);
    border-radius: 3px 52px 3px 3px;
    background:
        radial-gradient(circle at 50% 48%, rgba(255, 248, 235, .9), transparent 36%),
        linear-gradient(145deg, #dfb17e, #f4e5ce 72%);
    box-shadow: 0 30px 80px rgba(74, 43, 17, .13);
}

.physics-abstract__field {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(37, 28, 17, .22) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(circle at center, #000, transparent 76%);
}

.physics-abstract__links {
    position: absolute;
    inset: 5%;
    width: 90%;
    height: 90%;
    overflow: visible;
    fill: none;
    stroke: rgba(37, 28, 17, .32);
    stroke-dasharray: 5 7;
    stroke-width: 1;
    animation: physics-links-pulse 4s ease-in-out infinite;
}

.physics-node {
    position: absolute;
    z-index: 3;
    width: 18px;
    height: 18px;
    border: 4px solid rgba(255, 248, 235, .95);
    border-radius: 50%;
    background: #b96635;
    box-shadow: 0 0 0 1px rgba(37, 28, 17, .38), 0 10px 28px rgba(92, 46, 19, .18);
    animation: physics-node-drift 5.5s ease-in-out infinite;
}

.physics-node--one {
    top: 68%;
    left: 13%;
}

.physics-node--two {
    top: 24%;
    left: 29%;
    animation-delay: -1.2s;
}

.physics-node--three {
    top: 46%;
    left: 49%;
    animation-delay: -2.1s;
}

.physics-node--four {
    top: 16%;
    right: 24%;
    animation-delay: -3.3s;
}

.physics-node--five {
    right: 11%;
    bottom: 30%;
    animation-delay: -4.4s;
}

.physics-abstract__ball {
    position: absolute;
    z-index: 5;
    top: 17%;
    left: 10%;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(37, 28, 17, .55);
    border-radius: 50%;
    background: rgba(255, 248, 235, .86);
    box-shadow: inset -9px -9px 0 rgba(185, 102, 53, .18), 0 20px 35px rgba(69, 37, 17, .16);
    animation: physics-ball-flight 6.5s cubic-bezier(.45, 0, .55, 1) infinite;
}

.physics-abstract__target {
    display: grid;
    position: absolute;
    right: 11%;
    bottom: 12%;
    place-items: center;
    width: 92px;
    height: 26px;
    border: 1px solid rgba(37, 28, 17, .38);
    border-radius: 50%;
}

.physics-abstract__target i {
    width: 42px;
    height: 10px;
    border: 1px solid rgba(185, 102, 53, .72);
    border-radius: 50%;
    animation: physics-target-pulse 1.8s ease-out infinite;
}

.physics-vector {
    position: absolute;
    z-index: 2;
    color: rgba(37, 28, 17, .5);
    font-family: Consolas, monospace;
    font-size: 9px;
}

.physics-vector::before {
    position: absolute;
    background: currentColor;
    content: "";
}

.physics-vector--x {
    right: 10%;
    bottom: 9%;
    width: 32%;
    border-top: 1px solid currentColor;
    text-align: right;
}

.physics-vector--y {
    right: 8%;
    bottom: 10%;
    height: 34%;
    border-left: 1px solid currentColor;
}

.physics-abstract__meter {
    position: absolute;
    bottom: 8%;
    left: 8%;
    width: 27%;
    height: 5px;
    background: rgba(37, 28, 17, .12);
}

.physics-abstract__meter i {
    display: block;
    width: 34%;
    height: 100%;
    background: #b96635;
    animation: physics-meter 3.2s ease-in-out infinite alternate;
}

@keyframes physics-links-pulse {
    50% {
        stroke: rgba(185, 102, 53, .62);
        stroke-dashoffset: 30;
    }
}

@keyframes physics-node-drift {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -11px;
    }
}

@keyframes physics-ball-flight {
    0% {
        top: 17%;
        left: 10%;
    }

    24% {
        top: 60%;
        left: 30%;
    }

    48% {
        top: 27%;
        left: 50%;
    }

    72% {
        top: 67%;
        left: 68%;
    }

    100% {
        top: 76%;
        left: 82%;
    }
}

@keyframes physics-target-pulse {
    to {
        scale: 1.9;
        opacity: 0;
    }
}

@keyframes physics-meter {
    to {
        width: 92%;
    }
}

.pixel-abstract {
    overflow: hidden;
    border: 1px solid rgba(37, 28, 17, .24);
    border-radius: 3px 52px 3px 3px;
    background: #e8c99f;
    box-shadow: 0 30px 80px rgba(74, 43, 17, .13);
    image-rendering: pixelated;
}

.pixel-abstract__sky {
    position: absolute;
    inset: 0 0 34%;
    background:
        linear-gradient(180deg, rgba(255, 248, 235, .88), rgba(226, 178, 125, .52)),
        repeating-linear-gradient(90deg, transparent 0 39px, rgba(37, 28, 17, .05) 40px);
}

.pixel-abstract__sky::after {
    position: absolute;
    top: 18%;
    right: 17%;
    width: 52px;
    height: 52px;
    background: #d88a4f;
    box-shadow: 0 0 0 10px rgba(216, 138, 79, .12);
    content: "";
    animation: pixel-sun-pulse 3s steps(2) infinite;
}

.pixel-abstract__sky i {
    position: absolute;
    width: 42px;
    height: 14px;
    background: rgba(255, 248, 235, .72);
    box-shadow: 14px -9px 0 rgba(255, 248, 235, .72), 28px 0 0 rgba(255, 248, 235, .72);
    animation: pixel-cloud-move 12s linear infinite;
}

.pixel-abstract__sky i:nth-child(1) {
    top: 19%;
    left: 8%;
}

.pixel-abstract__sky i:nth-child(2) {
    top: 35%;
    left: 43%;
    animation-delay: -4s;
}

.pixel-abstract__sky i:nth-child(3) {
    top: 12%;
    left: 70%;
    animation-delay: -8s;
}

.pixel-abstract__world {
    display: grid;
    position: absolute;
    right: -6%;
    bottom: -13%;
    left: -6%;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    height: 57%;
    transform: rotateX(58deg) rotateZ(-2deg);
    transform-origin: center bottom;
}

.pixel-tile {
    border: 1px solid rgba(37, 28, 17, .2);
    background-color: #b96635;
    background-image:
        linear-gradient(rgba(255, 248, 235, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 248, 235, .14) 1px, transparent 1px);
    background-size: 28px 28px;
}

.pixel-tile:nth-child(2n) {
    background-color: #cb8150;
}

.pixel-tile:nth-child(3n) {
    background-color: #9c5d38;
}

.pixel-abstract__portal {
    display: grid;
    position: absolute;
    z-index: 4;
    right: 13%;
    bottom: 23%;
    place-items: center;
    width: 82px;
    height: 118px;
    border: 12px solid #36271d;
    border-bottom-width: 18px;
    background: rgba(226, 178, 125, .38);
    box-shadow: 0 0 0 5px #8c5434, 0 0 34px rgba(185, 102, 53, .36);
}

.pixel-abstract__portal i {
    width: 28px;
    height: 70px;
    background: repeating-linear-gradient(180deg, #fff1d9 0 7px, #d88a4f 7px 14px);
    animation: pixel-portal 800ms steps(2) infinite;
}

.pixel-abstract__character {
    position: absolute;
    z-index: 6;
    bottom: 26%;
    left: 14%;
    width: 28px;
    height: 36px;
    background: #242018;
    box-shadow: 0 -22px 0 -5px #242018;
    animation: pixel-character-run 6s steps(12) infinite alternate;
}

.pixel-abstract__character i,
.pixel-abstract__character span {
    position: absolute;
    bottom: -13px;
    width: 9px;
    height: 15px;
    background: #242018;
}

.pixel-abstract__character i {
    left: 1px;
}

.pixel-abstract__character span {
    right: 1px;
}

.pixel-abstract__character b {
    position: absolute;
    top: 8px;
    right: -6px;
    width: 7px;
    height: 7px;
    background: #fff1d9;
}

.pixel-abstract__coin {
    position: absolute;
    z-index: 5;
    width: 15px;
    height: 21px;
    border: 3px solid #fff1d9;
    background: #d88a4f;
    animation: pixel-coin 1.4s steps(4) infinite;
}

.pixel-abstract__coin--one {
    bottom: 31%;
    left: 37%;
}

.pixel-abstract__coin--two {
    bottom: 38%;
    left: 50%;
    animation-delay: -.4s;
}

.pixel-abstract__coin--three {
    bottom: 32%;
    left: 63%;
    animation-delay: -.8s;
}

.pixel-abstract__hud {
    display: flex;
    position: absolute;
    z-index: 8;
    top: 22px;
    left: 22px;
    gap: 6px;
}

.pixel-abstract__hud span {
    width: 18px;
    height: 18px;
    background: #b96635;
    clip-path: polygon(50% 100%, 0 42%, 10% 10%, 36% 0, 50% 22%, 64% 0, 90% 10%, 100% 42%);
}

@keyframes pixel-sun-pulse {
    50% {
        box-shadow: 0 0 0 18px rgba(216, 138, 79, .08);
    }
}

@keyframes pixel-cloud-move {
    from {
        translate: -110px 0;
    }

    to {
        translate: 520px 0;
    }
}

@keyframes pixel-portal {
    50% {
        filter: brightness(1.35);
    }
}

@keyframes pixel-character-run {
    0% {
        left: 14%;
        translate: 0 0;
    }

    45% {
        translate: 0 -12px;
    }

    100% {
        left: 76%;
        translate: 0 0;
    }
}

@keyframes pixel-coin {
    50% {
        scale: .45 1;
        translate: 0 -5px;
    }
}

.shader-abstract {
    overflow: hidden;
    border: 1px solid rgba(37, 28, 17, .24);
    border-radius: 3px 52px 3px 3px;
    background: #231b16;
    box-shadow: 0 30px 80px rgba(74, 43, 17, .16);
    isolation: isolate;
}

.shader-abstract__mesh {
    position: absolute;
    z-index: 5;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 245, 223, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 245, 223, .08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, #000 15%, transparent 78%);
    transform: scale(1.4) rotate(8deg);
    animation: shader-mesh 12s ease-in-out infinite alternate;
}

.shader-abstract__blob {
    position: absolute;
    border-radius: 46% 54% 62% 38% / 52% 38% 62% 48%;
    filter: blur(12px);
    mix-blend-mode: screen;
    animation: shader-blob 9s ease-in-out infinite alternate;
}

.shader-abstract__blob--one {
    top: 6%;
    left: 7%;
    width: 56%;
    height: 62%;
    background: #a94f2d;
}

.shader-abstract__blob--two {
    right: 5%;
    bottom: 3%;
    width: 62%;
    height: 65%;
    background: #e0a567;
    animation-delay: -3s;
}

.shader-abstract__blob--three {
    top: 30%;
    left: 31%;
    width: 35%;
    height: 42%;
    background: #6f4334;
    animation-delay: -5.5s;
}

.shader-abstract__rings {
    position: absolute;
    z-index: 6;
    top: 50%;
    left: 50%;
    width: 48%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
}

.shader-abstract__rings i {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 245, 223, .48);
    border-radius: 50%;
    animation: shader-ring 4.5s ease-out infinite;
}

.shader-abstract__rings i:nth-child(2) {
    animation-delay: -1.5s;
}

.shader-abstract__rings i:nth-child(3) {
    animation-delay: -3s;
}

.shader-abstract__axis {
    position: absolute;
    z-index: 7;
    background: rgba(255, 245, 223, .38);
}

.shader-abstract__axis--x {
    top: 50%;
    right: 7%;
    left: 7%;
    height: 1px;
}

.shader-abstract__axis--y {
    top: 8%;
    bottom: 8%;
    left: 50%;
    width: 1px;
}

.shader-abstract__cross {
    position: absolute;
    z-index: 8;
    top: calc(50% - 7px);
    left: calc(50% - 7px);
    width: 15px;
    height: 15px;
    border: 2px solid #fff5df;
    transform: rotate(45deg);
}

.shader-abstract__values {
    display: flex;
    position: absolute;
    z-index: 8;
    right: 22px;
    bottom: 20px;
    gap: 5px;
}

.shader-abstract__values span {
    padding: 7px 9px;
    border: 1px solid rgba(255, 245, 223, .2);
    color: rgba(255, 245, 223, .68);
    font-family: Consolas, monospace;
    font-size: 8px;
}

@keyframes shader-mesh {
    to {
        transform: scale(1.15) rotate(-7deg);
    }
}

@keyframes shader-blob {
    0% {
        transform: translate3d(-7%, -5%, 0) rotate(-8deg) scale(.9);
    }

    100% {
        transform: translate3d(9%, 8%, 0) rotate(14deg) scale(1.12);
    }
}

@keyframes shader-ring {
    0% {
        scale: .18;
        opacity: 0;
    }

    22% {
        opacity: .8;
    }

    100% {
        scale: 1.35;
        opacity: 0;
    }
}

.games-section {
    padding: clamp(95px, 9vw, 145px) 0;
    border-top: 1px solid var(--line);
    background: #fbf7ef;
}

.games-heading {
    display: grid;
    grid-template-areas: "title text";
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
    align-items: end;
    gap: clamp(50px, 7vw, 120px);
    margin-bottom: clamp(58px, 7vw, 96px);
}

.games-heading h2 {
    grid-area: title;
    font-size: clamp(66px, 6.8vw, 106px);
}

.games-heading>p:last-child {
    grid-area: text;
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

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

.game-card {
    display: flex;
    grid-column: span 6;
    flex-direction: column;
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 3px 24px 3px 3px;
    background: #f8efe1;
    transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.game-card:nth-child(1),
.game-card:nth-child(6) {
    grid-column: span 7;
}

.game-card:nth-child(2),
.game-card:nth-child(5) {
    grid-column: span 5;
}

.game-card:hover {
    z-index: 2;
    border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
    box-shadow: 0 26px 65px rgba(68, 40, 17, .13);
    transform: translateY(-6px);
}

.game-card--dark,
.game-card--accent,
.game-card--soft,
.game-card--winter {
    color: var(--ink);
}

.game-card--dark {
    background: linear-gradient(145deg, #edcfaa, #f8efe1 72%);
}

.game-card--accent {
    background: linear-gradient(145deg, #e3aa72, #f4dfc3 75%);
}

.game-card--soft {
    background: linear-gradient(145deg, #f0dcc0, #f9f2e7);
}

.game-card--winter {
    background: linear-gradient(145deg, #dce7e8, #f7efe2 76%);
}

.game-card__gallery {
    display: grid;
    order: -1;
    grid-template-columns: minmax(0, 1fr) minmax(84px, .28fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 8px;
    height: clamp(270px, 30vw, 420px);
    margin-bottom: 26px;
}

.game-card__gallery img {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 2px 12px 2px 2px;
    object-fit: cover;
}

.game-card__gallery .game-card__cover {
    grid-row: 1 / 3;
}

.game-card__gallery--placeholder {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .38), transparent 58%),
        repeating-linear-gradient(90deg, transparent 0 39px, rgba(37, 28, 17, .055) 39px 40px),
        repeating-linear-gradient(0deg, transparent 0 39px, rgba(37, 28, 17, .055) 39px 40px),
        #dfc8aa;
}

.game-card__gallery--letters {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .46), transparent 62%),
        repeating-linear-gradient(90deg, transparent 0 54px, rgba(37, 28, 17, .05) 54px 55px),
        #e7c18f;
}

.game-card__placeholder {
    display: flex;
    z-index: 1;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: clamp(24px, 4vw, 48px);
}

.game-card__placeholder span {
    padding: 7px 10px;
    border: 1px solid rgba(37, 28, 17, .18);
    border-radius: 999px;
    color: rgba(37, 28, 17, .58);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.game-card__placeholder strong {
    color: rgba(37, 28, 17, .76);
    font-family: var(--font-heading);
    font-size: clamp(50px, 7vw, 104px);
    font-weight: 400;
    line-height: .8;
    letter-spacing: -.04em;
}

.game-card__info {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: start;
    gap: 0 16px;
    padding: 0 6px 7px;
}

.game-card__number {
    grid-column: 1;
    grid-row: 1 / 5;
    padding-top: 5px;
    color: var(--soft);
    font-size: 11px;
}

.game-card__info>div {
    grid-column: 2 / 4;
}

.game-card__type {
    margin: 0 0 8px;
    color: var(--soft);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.game-card h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(38px, 3.5vw, 56px);
    font-weight: 400;
    line-height: .92;
}

.game-card h3 em {
    display: inline;
    font-size: .7em;
}

.game-card__info>p {
    grid-column: 2 / 4;
    max-width: 620px;
    margin: 18px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.game-tags {
    display: flex;
    grid-column: 2;
    flex-wrap: wrap;
    gap: 6px;
    align-self: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.game-tags li {
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.game-play {
    grid-column: 3;
    min-height: 43px;
    padding-inline: 18px;
}

.game-action {
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-card__info>.game-action {
    grid-column: 3;
    justify-self: end;
}

.game-action .game-play {
    grid-column: auto;
}

.game-click-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 31px;
    padding: 0 11px;
    border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
    border-radius: 999px;
    color: color-mix(in srgb, var(--ink) 68%, transparent);
    background: rgba(255, 250, 240, .66);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
    font-size: 9px;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    letter-spacing: .025em;
    white-space: nowrap;
}

.game-click-counter::before {
    width: 14px;
    height: 14px;
    background: currentColor;
    content: '';
    opacity: .62;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2.5 12s3.5-6 9.5-6 9.5 6 9.5 6-3.5 6-9.5 6-9.5-6-9.5-6Z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='12' r='3' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2.5 12s3.5-6 9.5-6 9.5 6 9.5 6-3.5 6-9.5 6-9.5-6-9.5-6Z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='12' r='3' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.android-section {
    padding: 40px 0;
    border-top: 1px solid var(--line);
    background: #f4ead9;
}

.android-list {
    display: grid;
    gap: 18px;
}

.android-card {
    display: grid;
    grid-template-columns: minmax(190px, .5fr) minmax(0, 1fr) minmax(250px, .65fr) auto;
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
    padding: clamp(28px, 4vw, 52px);
    border-radius: 3px 42px 3px 3px;
    color: #fff5df;
    background: #242018;
}

.android-card--secondary {
    background: #342d23;
}

.android-card__media {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 190px;
    overflow: hidden;
    border: 1px dashed rgba(255, 245, 223, .28);
    border-radius: 3px 24px 3px 3px;
    aspect-ratio: 16 / 10;
    background: rgba(255, 245, 223, .06);
}

.android-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.android-card__media span {
    color: rgba(255, 245, 223, .42);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.android-card h2 {
    color: #fff5df;
    font-size: clamp(54px, 5.7vw, 88px);
}

.android-card h2 em {
    color: rgba(255, 245, 223, .62);
}

.android-card .game-card__type,
.android-card>p {
    color: rgba(255, 245, 223, .64);
}

.android-card__tags {
    margin-top: 22px;
}

.android-card .game-tags li {
    border-color: rgba(255, 245, 223, .22);
    color: rgba(255, 245, 223, .7);
}

.android-card>p {
    margin: 0;
    line-height: 1.7;
}

.android-card .game-primary-button {
    color: #242018;
    background: #fff5df;
}

.android-card .game-primary-button:hover {
    color: #242018;
}

.android-card>.game-action {
    justify-self: end;
}

.android-card .game-click-counter {
    border-color: rgba(255, 245, 223, .18);
    color: rgba(255, 245, 223, .7);
    background: rgba(255, 245, 223, .07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.game-tests {
    padding: clamp(42px, 5vw, 72px) 0;
    border-top: 1px solid var(--line);
    background: #eadfce;
}

.game-tests__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .65fr);
    align-items: end;
    gap: 32px;
    margin-bottom: 30px;
}

.game-tests__header .game-card__type {
    margin-bottom: 10px;
}

.game-tests__header h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.035em;
}

.game-tests__header>p {
    max-width: 480px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.game-tests__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
    border-left: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
}

.game-tests__grid a {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 12px 17px;
    border-right: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
    color: var(--ink);
    transition: color 180ms ease, background 180ms ease;
}

.game-tests__grid a:hover {
    color: #fff8e9;
    background: #242018;
}

.game-tests__grid span {
    color: var(--soft);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.game-tests__grid strong {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .015em;
}

.game-tests__grid i {
    font-size: 13px;
    font-style: normal;
    opacity: .55;
}

.game-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.game-footer a:not(.brand),
.game-footer p,
.game-footer span {
    margin: 0;
    color: color-mix(in srgb, var(--dark-ink) 56%, transparent);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.game-footer a:not(.brand):hover {
    color: var(--accent-soft);
}

@media (max-width: 1199px) {
    .game-hero__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .game-card,
    .game-card:nth-child(n) {
        grid-column: span 6;
    }

    .android-card {
        grid-template-columns: minmax(220px, .65fr) minmax(0, 1fr);
    }

    .android-card__media {
        grid-row: 1 / 4;
    }

    .android-card__heading,
    .android-card>p,
    .android-card .game-primary-button {
        grid-column: 2;
    }

    .android-card .game-primary-button {
        justify-self: start;
    }

    .android-card>.game-action {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 959px) {
    .game-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .game-nav {
        display: none;
    }

    .game-hero {
        padding: 0;
        background: #fbf4e8;
    }

    .game-hero__inner {
        grid-template-columns: minmax(0, 1fr);
        padding-top: calc(var(--header-height) + 60px);
        padding-bottom: 72px;
    }

    .game-hero__content {
        width: min(62%, 700px);
        max-width: 700px;
    }

    .game-hero::before {
        background: linear-gradient(90deg, rgba(251, 244, 232, .94) 0%, rgba(251, 244, 232, .84) 40%, rgba(251, 244, 232, .3) 72%, rgba(251, 244, 232, .08));
    }

    .game-hero__visual {
        min-height: 560px;
    }

    .games-heading {
        grid-template-areas: "title" "text";
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .game-card,
    .game-card:nth-child(n) {
        grid-column: 1 / -1;
    }

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

@media (max-width: 639px) {
    .game-shell {
        width: min(100% - 30px, 1480px);
    }

    .game-header__inner {
        width: 100%;
        padding-inline: 15px;
    }

    .game-header__inner>.brand {
        transform: translateY(-8px);
    }

    .game-header .brand__name {
        width: 142px;
    }

    .game-header__back {
        min-width: auto;
        min-height: 38px;
        padding-inline: 15px;
        font-size: 9px;
    }

    .game-header__back span {
        display: none;
    }

    .game-hero {
        min-height: 680px;
        padding: 0;
    }

    .game-hero__inner {
        min-height: 680px;
        padding-top: calc(var(--header-height) + 42px);
        padding-bottom: 58px;
    }

    .game-hero__content {
        width: 100%;
        max-width: none;
    }

    .game-hero::before {
        background: linear-gradient(180deg, rgba(251, 244, 232, .68), rgba(251, 244, 232, .5));
    }

    .game-hero__meta {
        margin-bottom: 28px;
    }

    .game-hero h1,
    .games-heading h2 {
        font-size: clamp(50px, 16vw, 68px);
    }

    .game-hero__lead {
        margin: 28px 0;
        font-size: 15px;
    }

    .game-hero__visual {
        min-height: 390px;
    }

    .game-visual-panel {
        inset: 0;
    }

    .game-abstract,
    .code-abstract {
        border-radius: 3px 30px 3px 3px;
    }

    .game-visual-switcher {
        top: 12px;
        right: 12px;
        max-width: calc(100% - 24px);
    }

    .game-visual-switcher button {
        min-width: 0;
        height: 28px;
        padding-inline: 8px;
        font-size: 7px;
    }

    .game-abstract__halo--outer {
        width: 78%;
    }

    .game-abstract__halo--inner {
        width: 54%;
    }

    .game-abstract__cube {
        width: 92px;
        height: 92px;
    }

    .game-abstract__face--front {
        transform: translateZ(46px);
    }

    .game-abstract__face--back {
        transform: rotateY(180deg) translateZ(46px);
    }

    .game-abstract__face--right {
        transform: rotateY(90deg) translateZ(46px);
    }

    .game-abstract__face--left {
        transform: rotateY(-90deg) translateZ(46px);
    }

    .game-abstract__face--top {
        transform: rotateX(90deg) translateZ(46px);
    }

    .game-abstract__face--bottom {
        transform: rotateX(-90deg) translateZ(46px);
    }

    .game-abstract__node--two {
        right: 10%;
    }

    .code-abstract::before {
        inset: 48px 0 0 44px;
        background-size: 26px 26px;
    }

    .code-abstract__chrome {
        height: 48px;
        padding-inline: 14px;
    }

    .code-abstract__chrome span {
        margin-left: 6px;
        font-size: 8px;
    }

    .code-abstract__sidebar {
        top: 48px;
        width: 44px;
        gap: 18px;
    }

    .code-abstract__sidebar span {
        width: 13px;
        height: 13px;
    }

    .code-abstract__editor {
        top: 76px;
        right: 5%;
        left: 14%;
        padding: 16px 13px;
    }

    .code-line {
        margin-bottom: 11px;
        font-size: clamp(7px, 2.45vw, 10px);
    }

    .code-line--three,
    .code-line--four,
    .code-line--seven,
    .code-line--eight {
        padding-left: 12px;
    }

    .code-abstract__badge--one {
        top: 19%;
        right: 4%;
        width: 38px;
        height: 38px;
        font-size: 10px;
    }

    .code-abstract__badge--two {
        bottom: 6%;
        left: 15%;
        width: 36px;
        height: 36px;
        font-size: 9px;
    }

    .code-abstract__badge--three,
    .code-abstract__map {
        display: none;
    }

    .physics-abstract__ball {
        width: 27px;
        height: 27px;
    }

    .physics-node {
        width: 13px;
        height: 13px;
        border-width: 3px;
    }

    .physics-abstract__target {
        right: 7%;
        width: 62px;
    }

    .pixel-abstract__portal {
        right: 9%;
        width: 58px;
        height: 84px;
        border-width: 8px;
        border-bottom-width: 12px;
    }

    .pixel-abstract__portal i {
        width: 19px;
        height: 49px;
    }

    .pixel-abstract__character {
        scale: .78;
        transform-origin: bottom left;
    }

    .pixel-abstract__coin--three {
        display: none;
    }

    .shader-abstract__rings {
        width: 68%;
    }

    .games-section {
        padding: 82px 0;
    }

    .games-heading {
        margin-bottom: 50px;
    }

    .games-heading>p:last-child {
        font-size: 15px;
    }

    .game-card {
        padding: 10px;
        border-radius: 3px 18px 3px 3px;
    }

    .game-card__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto auto;
        height: auto;
        margin-bottom: 22px;
    }

    .game-card__gallery .game-card__cover {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }

    .game-card__gallery img:not(.game-card__cover) {
        aspect-ratio: 1.35;
    }

    .game-card__info {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 0 10px;
        padding: 0 5px 8px;
    }

    .game-card__number {
        grid-row: 1 / 6;
    }

    .game-card__info>div,
    .game-card__info>p,
    .game-tags,
    .game-play,
    .game-card__info>.game-action {
        grid-column: 2;
    }

    .game-card h3 {
        font-size: clamp(38px, 12vw, 50px);
        overflow-wrap: anywhere;
    }

    .game-card__info>p {
        font-size: 14px;
    }

    .game-play {
        justify-self: start;
        margin-top: 18px;
    }

    .game-card__info>.game-action {
        justify-self: start;
        flex-wrap: wrap;
        margin-top: 18px;
    }

    .game-action .game-play {
        margin-top: 0;
    }

    .android-card {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 30px 24px;
        border-radius: 3px 28px 3px 3px;
    }

    .android-card__media {
        grid-row: auto;
        min-height: 0;
    }

    .android-card__heading,
    .android-card>p,
    .android-card .game-primary-button {
        grid-column: auto;
    }

    .android-card h2 {
        font-size: clamp(46px, 15vw, 62px);
    }

    .android-card .game-primary-button {
        justify-self: start;
    }

    .android-card>.game-action {
        grid-column: auto;
    }

    .game-tests__header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .game-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {

    .game-abstract__grid,
    .game-abstract__halo,
    .game-abstract__cube,
    .game-abstract__node,
    .game-abstract__player,
    .game-abstract__scan,
    .code-line,
    .code-caret,
    .code-abstract__badge,
    .code-abstract__scan,
    .physics-abstract__links,
    .physics-node,
    .physics-abstract__ball,
    .physics-abstract__target i,
    .physics-abstract__meter i,
    .pixel-abstract__sky i,
    .pixel-abstract__sky::after,
    .pixel-abstract__portal i,
    .pixel-abstract__character,
    .pixel-abstract__coin,
    .shader-abstract__mesh,
    .shader-abstract__blob,
    .shader-abstract__rings i {
        animation: none !important;
    }
}
