:root {
    --black: #000000;
    --white: #ffffff;
    --soft-white: #f4f4f4;
    --blue: #47a6dc;
    --blue-light: #78c4ef;
    --muted: #b8b8b8;
    --line: #303030;
    --content: 1324px;
    --reading: 840px;
    --font-rounded: "Avenir Next Rounded", "Arial Rounded MT Bold", "Avenir Next", "Trebuchet MS", sans-serif;
    --font-body: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    color: var(--white);
    background: var(--black);
    font-family: var(--font-rounded);
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

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

h1,
h2,
h3 {
    font-family: var(--font-rounded);
    font-weight: 500;
    line-height: 1.04;
}

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

.site-shell {
    width: 100%;
}

.section-shell {
    width: min(calc(100% - 112px), var(--content));
    margin-inline: auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    width: 100%;
    min-height: 79px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 14px clamp(24px, 4vw, 58px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
}

.site-header-solid {
    position: relative;
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
}

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

.brand span {
    font-weight: 600;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a {
    position: relative;
    padding: 3px 0;
    color: var(--soft-white);
    text-decoration: none;
    font-size: clamp(16px, 1.5vw, 21px);
    font-weight: 400;
    line-height: 1.6;
    white-space: nowrap;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 11px 8px;
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.home-hero {
    position: relative;
    min-height: min(760px, 92vh);
    overflow: hidden;
    background: #111;
}

.home-hero-background,
.home-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero-background {
    object-fit: cover;
    object-position: center;
}

.home-hero-shade {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 30%, rgba(0, 0, 0, 0.32)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 35%, rgba(0, 0, 0, 0.12) 70%, rgba(0, 0, 0, 0.26) 100%);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(calc(100% - 112px), var(--content));
    min-height: min(760px, 92vh);
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
    align-items: center;
    gap: clamp(42px, 7vw, 110px);
    padding: 108px 0 64px;
}

.home-store-stack {
    display: flex;
    width: min(100%, 470px);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.home-hero-label,
.section-label,
.article-byline {
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-store-link {
    display: block;
    width: min(100%, 440px);
    transition: transform 160ms ease, filter 160ms ease;
}

.hero-store-link:hover,
.hero-store-link:focus-visible,
.home-game-icon:hover,
.home-game-icon:focus-visible {
    transform: translateY(-4px);
    filter: brightness(1.08);
}

.hero-store-link img {
    width: 100%;
    max-height: 172px;
    border-radius: 16px;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.hero-store-link:not(.hero-store-link-apple) img {
    transform: scale(1.1);
}

.hero-store-link-apple {
    width: min(100%, 440px);
    margin-left: 0;
}

.hero-store-link-apple img {
    width: 100%;
    max-height: 150px;
}

.home-game-icon {
    display: block;
    width: min(30vw, 360px);
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 24%;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48), 0 0 0 8px rgba(0, 0, 0, 0.12);
    justify-self: center;
    transition: transform 160ms ease, filter 160ms ease;
}

.home-game-icon img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 21%;
    object-fit: cover;
}

.home-news,
.game-news {
    padding-block: 110px;
}

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

.section-title-row h2,
.simple-contact h2 {
    margin-bottom: 0;
    font-size: clamp(48px, 6vw, 78px);
}

.text-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid currentColor;
    transition: color 150ms ease;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--blue);
}

.home-news-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 28px;
    align-items: start;
}

.editorial-card {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(71, 166, 220, 0.025));
    transition: border-color 180ms ease, transform 180ms ease;
}

.editorial-card:hover,
.editorial-card:focus-within {
    border-color: rgba(71, 166, 220, 0.38);
    transform: translateY(-3px);
}

.editorial-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #111;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.editorial-image:hover img,
.editorial-image:focus-visible img {
    transform: scale(1.02);
}

.editorial-copy {
    padding: 22px 8px 8px;
}

.editorial-copy h3 {
    margin-bottom: 20px;
    font-size: clamp(28px, 3.2vw, 44px);
}

.editorial-copy h3 a {
    text-decoration: none;
}

.about-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 15% 18%, rgba(71, 166, 220, 0.15), transparent 34%),
        linear-gradient(135deg, #07141b 0%, #050b0f 58%, #07141b 100%);
}

.about-contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(56px, 8vw, 110px);
    align-items: start;
    padding-block: 96px;
}

.about-logo {
    width: min(100%, 390px);
    margin: 18px 0 42px;
    filter: drop-shadow(0 18px 42px rgba(71, 166, 220, 0.18));
}

.about-column > p {
    max-width: 550px;
    color: var(--soft-white);
    font-size: clamp(22px, 2.1vw, 27px);
    line-height: 1.6;
}

.contact-column {
    padding: clamp(34px, 5vw, 64px);
    color: var(--white);
    border: 1px solid rgba(71, 166, 220, 0.3);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(19, 48, 62, 0.92), rgba(7, 20, 27, 0.96));
    box-shadow: 18px 18px 0 rgba(71, 166, 220, 0.08), 0 30px 80px rgba(0, 0, 0, 0.28);
}

.contact-eyebrow {
    margin-bottom: 14px;
    color: var(--blue-light);
}

.social-links,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
}

.social-links {
    margin-top: 32px;
}

.social-links a,
.footer-links a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.social-links a:hover,
.footer-links a:hover,
.social-links a:focus-visible,
.footer-links a:focus-visible {
    border-bottom-color: currentColor;
}

.contact-column h2 {
    margin-bottom: 38px;
    color: var(--white);
    font-size: clamp(52px, 6vw, 78px);
}

.pill-button,
.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border: 1px solid var(--white);
    border-radius: 999px;
    color: var(--white);
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.pill-button:hover,
.pill-button:focus-visible,
.button:hover,
.button:focus-visible {
    color: var(--black);
    background: var(--white);
}

.button-primary {
    border-color: var(--blue);
    background: var(--blue);
}

.button-warm {
    border-color: var(--white);
}

.site-footer {
    display: flex;
    min-height: 120px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--muted);
    font-size: 16px;
}

.game-banner-section {
    position: relative;
    min-height: 1015px;
    padding-top: 79px;
    text-align: center;
}

.game-banner {
    width: 100%;
    height: 621px;
    object-fit: cover;
    object-position: center;
}

.game-app-icon {
    position: relative;
    z-index: 2;
    width: 265px;
    height: 265px;
    margin: -148px auto 0;
    border: 7px solid rgba(255, 255, 255, 0.92);
    border-radius: 24%;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.52);
    object-fit: cover;
}

.game-banner-section h1 {
    max-width: 1100px;
    margin: 82px auto 0;
    padding-inline: 30px;
    font-size: clamp(58px, 6.5vw, 84px);
}

.game-intro {
    min-height: 742px;
    padding-block: 106px 82px;
    text-align: center;
}

.game-store-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(48px, 7vw, 90px);
    margin-bottom: 64px;
}

.game-store-row a:first-child {
    width: min(42%, 434px);
}

.game-store-row a:last-child {
    width: min(37%, 379px);
}

.game-store-row img {
    width: 100%;
    max-height: 170px;
    object-fit: contain;
    transition: transform 160ms ease;
}

.game-store-row a:hover img,
.game-store-row a:focus-visible img {
    transform: translateY(-4px);
}

.game-intro h2 {
    margin-bottom: 18px;
    color: var(--blue);
    font-size: clamp(34px, 3.8vw, 50px);
}

.game-intro > p {
    max-width: 1000px;
    margin-inline: auto;
    color: var(--blue);
    font-size: clamp(27px, 3.1vw, 44px);
    font-weight: 500;
    line-height: 1.13;
}

.game-trailer {
    padding: 70px clamp(20px, 6vw, 90px) 92px;
}

.video-frame {
    position: relative;
    overflow: hidden;
    width: min(100%, 1300px);
    margin-inline: auto;
    aspect-ratio: 16 / 9;
    background: #111;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.game-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 0 6px;
}

.game-gallery a {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111;
}

.game-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease, filter 220ms ease;
}

.game-gallery a:hover img,
.game-gallery a:focus-visible img {
    transform: scale(1.015);
    filter: brightness(1.05);
}

.simple-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-block: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.simple-contact-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.news-hero {
    padding-top: 170px;
    padding-bottom: 90px;
}

.news-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(64px, 8vw, 108px);
}

.news-hero > p:last-child {
    max-width: 760px;
    color: var(--muted);
    font-size: 24px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 34px;
    padding-bottom: 120px;
}

.blog-card-featured {
    grid-column: 1 / -1;
}

.blog-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.blog-card-image:hover img,
.blog-card-image:focus-visible img {
    transform: scale(1.018);
}

.blog-logo-image img {
    padding: 10%;
    object-fit: contain;
    background: #fff;
}

.blog-card-copy {
    padding-top: 22px;
}

.blog-card-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(30px, 3.3vw, 48px);
}

.blog-card-copy h2 a {
    text-decoration: none;
}

@media (max-width: 980px) {
    .section-shell,
    .home-hero-content {
        width: min(calc(100% - 48px), var(--content));
    }

    .site-nav {
        gap: 16px;
    }

    .site-nav a {
        font-size: 15px;
    }

    .home-hero-content {
        grid-template-columns: 1fr 0.7fr;
        gap: 28px;
    }

    .about-contact-inner {
        grid-template-columns: 1fr;
    }

    .about-column,
    .contact-column {
        max-width: 720px;
    }

    .home-news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .section-shell,
    .home-hero-content {
        width: min(calc(100% - 32px), var(--content));
    }

    .site-header {
        min-height: 84px;
        padding: 16px 20px;
    }

    .brand img {
        height: 42px;
        max-width: 230px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 3;
        touch-action: manipulation;
    }

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

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

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

    .site-nav {
        position: fixed;
        z-index: 2;
        inset: 0;
        display: flex;
        padding: 120px 28px 40px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
        background: rgba(0, 0, 0, 0.98);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overscroll-behavior: contain;
        transition: opacity 160ms ease, visibility 0s linear 160ms;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 160ms ease;
    }

    .site-nav a {
        display: flex;
        width: 100%;
        min-height: 56px;
        padding: 10px 0;
        align-items: center;
        font-size: 26px;
        line-height: 1.15;
        white-space: normal;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(71, 166, 220, 0.2);
    }

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

    .site-nav a.is-current {
        color: var(--blue-light);
    }

    .home-hero {
        min-height: 900px;
    }

    .home-hero-content {
        display: flex;
        min-height: 900px;
        padding: 132px 0 54px;
        flex-direction: column;
        justify-content: flex-start;
        gap: 38px;
    }

    .home-game-icon {
        order: 1;
        width: min(68vw, 300px);
    }

    .home-store-stack {
        order: 2;
        width: min(92%, 440px);
        align-items: center;
    }

    .home-hero-label {
        display: none;
    }

    .hero-store-link img {
        width: 100%;
        max-height: 146px;
    }

    .hero-store-link-apple {
        width: 100%;
        margin-left: 0;
    }

    .home-news,
    .game-news {
        padding-block: 76px;
    }

    .section-title-row,
    .simple-contact,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-news-grid,
    .news-list {
        grid-template-columns: 1fr;
    }

    .blog-card-featured {
        grid-column: auto;
    }

    .about-contact-inner {
        padding-block: 76px 54px;
    }

    .about-logo {
        width: min(100%, 420px);
    }

    .game-banner-section {
        min-height: auto;
        padding-top: 84px;
        padding-bottom: 68px;
    }

    .game-banner {
        height: 310px;
    }

    .game-app-icon {
        width: 190px;
        height: 190px;
        margin-top: -92px;
    }

    .game-banner-section h1 {
        margin-top: 52px;
        font-size: 48px;
    }

    .game-intro {
        min-height: auto;
        padding-block: 76px;
    }

    .game-store-row {
        flex-direction: column;
        gap: 26px;
        margin-bottom: 52px;
    }

    .game-store-row a:first-child,
    .game-store-row a:last-child {
        width: min(100%, 380px);
    }

    .game-intro > p {
        font-size: 29px;
    }

    .game-trailer {
        padding: 24px 0 72px;
    }

    .game-gallery {
        grid-template-columns: 1fr;
        padding-inline: 0;
    }

    .simple-contact-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-hero {
        padding-top: 140px;
        padding-bottom: 64px;
    }

    .news-list {
        gap: 58px;
    }
}

/* Game page refresh */
.game-page-refresh {
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 35%, rgba(71, 166, 220, 0.08), transparent 30%),
        var(--black);
}

.game-hero-refresh {
    position: relative;
    display: grid;
    min-height: min(920px, 100svh);
    align-items: end;
    isolation: isolate;
}

.game-hero-art,
.game-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.game-hero-art {
    z-index: -2;
    object-fit: cover;
    object-position: center 38%;
}

.game-hero-shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 39%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.28) 100%),
        linear-gradient(0deg, #000 0%, transparent 30%, rgba(0, 0, 0, 0.36) 100%);
}

.game-hero-inner {
    display: flex;
    min-height: min(920px, 100svh);
    align-items: center;
    padding-top: 120px;
    padding-bottom: 72px;
}

.game-hero-copy {
    width: min(100%, 710px);
}

.game-title-lockup {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3.2vw, 42px);
}

.game-hero-icon {
    width: clamp(118px, 13vw, 176px);
    flex: 0 0 auto;
    aspect-ratio: 1;
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 24%;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.52);
    object-fit: cover;
}

.game-hero-copy .section-label {
    margin-bottom: 12px;
}

.game-hero-copy h1 {
    margin-bottom: 0;
    font-size: clamp(58px, 6.7vw, 100px);
    letter-spacing: -0.055em;
    white-space: nowrap;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

.game-hero-copy h1 span {
    color: var(--blue-light);
}

.game-hero-line {
    margin: 40px 0 26px;
    color: var(--soft-white);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 500;
}

.game-store-choices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 660px;
}

.game-store-choice {
    position: relative;
    display: grid;
    min-height: 132px;
    place-items: center;
    padding: 18px 24px 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(4, 10, 15, 0.78);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    color: var(--white);
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.game-store-choice::after {
    content: "↗";
    position: absolute;
    top: 10px;
    right: 13px;
    color: var(--blue-light);
    font-size: 18px;
}

.game-store-choice > span {
    justify-self: start;
    color: var(--blue-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.game-store-choice img {
    width: 100%;
    height: 67px;
    object-fit: contain;
}

.game-store-choice-steam img {
    height: 82px;
    transform: scale(1.08);
}

.game-store-choice-ios img {
    width: 86%;
}

.game-store-choice:hover,
.game-store-choice:focus-visible {
    z-index: 1;
    transform: translateY(-4px);
    border-color: var(--blue-light);
    background: rgba(8, 27, 40, 0.92);
}

.game-overview-refresh {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(60px, 9vw, 140px);
    align-items: start;
    padding-block: clamp(110px, 13vw, 180px);
}

.game-overview-heading h2,
.game-section-heading h2,
.game-download-copy h2 {
    margin-bottom: 0;
    font-size: clamp(48px, 6vw, 80px);
    letter-spacing: -0.045em;
}

.game-overview-heading h2 {
    color: var(--blue-light);
}

.game-overview-refresh > p {
    max-width: 760px;
    margin-bottom: 0;
    padding-top: 34px;
    color: var(--soft-white);
    font-size: clamp(24px, 2.5vw, 38px);
    font-weight: 500;
    line-height: 1.28;
}

.game-trailer-refresh,
.game-screenshots-refresh {
    padding-bottom: clamp(110px, 13vw, 180px);
}

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

.game-file-number {
    color: rgba(71, 166, 220, 0.22);
    font-size: clamp(72px, 10vw, 148px);
    font-weight: 700;
    line-height: 0.76;
    letter-spacing: -0.08em;
}

.game-video-shell {
    padding: 6px;
    border: 1px solid rgba(120, 196, 239, 0.34);
    background: #0a1116;
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.55), 0 0 70px rgba(71, 166, 220, 0.08);
}

.game-window-bar {
    display: flex;
    height: 42px;
    align-items: center;
    gap: 8px;
    padding-inline: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.game-window-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.game-window-bar span:nth-child(2) {
    opacity: 0.62;
}

.game-window-bar span:nth-child(3) {
    opacity: 0.3;
}

.game-window-bar strong {
    margin-left: auto;
    font-weight: 600;
}

.game-video-shell .video-frame {
    width: 100%;
}

.game-gallery-refresh {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.game-shot {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #071018;
}

.game-shot-featured,
.game-shot-wide {
    grid-column: 1 / -1;
}

.game-shot-featured {
    aspect-ratio: 2.15 / 1;
}

.game-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease, filter 260ms ease;
}

.game-shot::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
    pointer-events: none;
}

.game-shot span {
    position: absolute;
    z-index: 1;
    left: 20px;
    bottom: 15px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.game-shot:hover img,
.game-shot:focus-visible img {
    transform: scale(1.025);
    filter: brightness(1.08);
}

.game-download-refresh {
    padding: 50px 0;
    border-block: 1px solid rgba(120, 196, 239, 0.2);
    background:
        linear-gradient(100deg, rgba(5, 25, 38, 0.98), rgba(9, 57, 83, 0.78)),
        repeating-linear-gradient(0deg, transparent, transparent 27px, rgba(255, 255, 255, 0.035) 28px);
}

.game-download-inner {
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) minmax(330px, 0.8fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: center;
}

.game-download-inner > img {
    width: clamp(112px, 12vw, 164px);
    aspect-ratio: 1;
    border: 3px solid rgba(255, 255, 255, 0.75);
    border-radius: 24%;
    object-fit: cover;
}

.game-download-copy h2 {
    margin-bottom: 12px;
}

.game-download-copy > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 19px;
}

.game-download-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.game-download-badges a {
    display: grid;
    width: 100%;
    min-height: 94px;
    place-items: center;
    padding: 8px 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.32);
    transition: transform 160ms ease, border-color 160ms ease;
}

.game-download-badges a:hover,
.game-download-badges a:focus-visible {
    transform: translateX(4px);
    border-color: var(--blue-light);
}

.game-download-badges img {
    width: min(100%, 270px);
    height: 58px;
    object-fit: contain;
}

.game-download-badges a:first-child img {
    height: 74px;
    transform: scale(1.08);
}

.game-download-badges a:last-child img {
    width: min(86%, 230px);
}

@media (max-width: 980px) {
    .game-hero-refresh,
    .game-hero-inner {
        min-height: 860px;
    }

    .game-hero-art {
        object-position: 58% center;
    }

    .game-hero-shade {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.64) 64%, rgba(0, 0, 0, 0.18)),
            linear-gradient(0deg, #000 0%, transparent 34%, rgba(0, 0, 0, 0.34) 100%);
    }

    .game-overview-refresh {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .game-overview-refresh > p {
        max-width: none;
        padding-top: 0;
    }

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

    .game-download-badges {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .game-hero-refresh,
    .game-hero-inner {
        min-height: 820px;
    }

    .game-hero-art {
        object-position: 64% center;
    }

    .game-hero-shade {
        background:
            linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.88) 44%, rgba(0, 0, 0, 0.15) 82%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent);
    }

    .game-hero-inner {
        align-items: end;
        padding-top: 170px;
        padding-bottom: 52px;
    }

    .game-title-lockup {
        align-items: flex-end;
        gap: 18px;
    }

    .game-hero-icon {
        width: 100px;
    }

    .game-hero-copy h1 {
        font-size: clamp(46px, 13vw, 66px);
    }

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

    .game-store-choice {
        grid-template-columns: 88px 1fr;
        min-height: 96px;
        padding: 10px 36px 10px 16px;
    }

    .game-store-choice > span {
        justify-self: start;
    }

    .game-store-choice img {
        height: 62px;
    }

    .game-store-choice-steam img {
        height: 74px;
    }

    .game-overview-refresh,
    .game-screenshots-refresh {
        width: min(calc(100% - 40px), var(--content));
    }

    .game-section-heading {
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .game-file-number {
        font-size: 70px;
    }

    .game-video-shell {
        width: 100%;
        padding-inline: 0;
        border-inline: 0;
    }

    .game-gallery-refresh {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .game-shot-featured,
    .game-shot-wide {
        grid-column: auto;
        aspect-ratio: 16 / 9;
    }

    .game-download-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .game-download-inner > img {
        margin-inline: auto;
    }

    .game-download-badges {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .game-download-badges a:hover,
    .game-download-badges a:focus-visible {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .game-title-lockup {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .game-hero-icon {
        width: 84px;
        border-width: 3px;
    }

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

    .game-hero-line {
        margin-top: 24px;
    }

    .game-store-choice {
        grid-template-columns: 74px 1fr;
    }

    .game-overview-heading h2,
    .game-section-heading h2,
    .game-download-copy h2 {
        font-size: clamp(42px, 13vw, 58px);
    }
}
