@font-face {
    font-family: "SuisseIntl";
    src: url("fonts/Suisse_Intl_Book.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --container: min(100% - 80px, 1360px);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "SuisseIntl", Arial, sans-serif;
    transition: background 0.32s ease, color 0.32s ease;
}

body[data-theme="gray"] {
    --bg: #ffffff;
    --surface: #efefec;
    --surface-hover: #e5e5df;
    --text: #111112;
    --muted: rgba(17, 17, 18, 0.62);
    --faint: rgba(17, 17, 18, 0.38);
    --line: rgba(17, 17, 18, 0.12);
    --logo-filter: brightness(0);
}

body[data-theme="white"] {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-hover: #f5f5f2;
    --text: #111112;
    --muted: rgba(17, 17, 18, 0.62);
    --faint: rgba(17, 17, 18, 0.38);
    --line: rgba(17, 17, 18, 0.1);
    --logo-filter: brightness(0);
}

body[data-theme="night"] {
    --bg: #141416;
    --surface: #39393f;
    --surface-hover: #44444b;
    --text: #f6f6f3;
    --muted: rgba(246, 246, 243, 0.66);
    --faint: rgba(246, 246, 243, 0.38);
    --line: rgba(255, 255, 255, 0.09);
    --logo-filter: brightness(0) invert(1);
}

a,
button {
    color: inherit;
    font: inherit;
}

a {
    text-decoration: none;
}

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

button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

main {
    min-height: 0;
}

img {
    max-width: 100%;
}

.status-ticker {
    width: 100%;
    overflow: hidden;
    background: #e7ff00;
    color: #050505;
    border-bottom: 1px solid rgba(5, 5, 5, 0.12);
}

.status-ticker-track {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    padding: 11px 0 10px;
}

.status-ticker span {
    flex: 0 0 auto;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    animation: statusTickerSingle 22s linear infinite;
    animation-delay: -5s;
    will-change: transform;
}

@keyframes statusTickerSingle {
    from {
        transform: translateX(48vw);
    }

    to {
        transform: translateX(-48vw);
    }
}

.site-header {
    width: var(--container);
    margin: 0 auto;
    padding: 28px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--bg);
}

.site-header::before {
    content: none;
}

.header-logo {
    width: 92px;
    flex: 0 0 auto;
    display: inline-flex;
}

.header-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: var(--logo-filter);
    transition: filter 0.32s ease;
}

.header-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 34px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1;
}

.header-nav a,
.card-button {
    position: relative;
    transition: color 0.28s ease, opacity 0.28s ease;
}

.header-nav a {
    padding-bottom: 0;
}

.theme-toggle {
    position: relative;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    color: var(--muted);
    transition: color 0.28s ease, opacity 0.28s ease;
}

.theme-toggle-icon {
    position: absolute;
    inset: 2px;
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity 0.22s ease, transform 0.22s var(--ease);
}

.theme-toggle-sun {
    opacity: 0;
    transform: scale(0.84);
}

.theme-toggle-moon {
    opacity: 1;
    transform: scale(1);
}

.theme-toggle.is-light .theme-toggle-sun {
    opacity: 0;
    transform: scale(0.84);
}

.theme-toggle.is-light .theme-toggle-moon {
    opacity: 1;
    transform: scale(1);
}

.theme-toggle:hover .theme-toggle-icon,
.theme-toggle:focus-visible .theme-toggle-icon {
    opacity: 0.82;
}

.theme-toggle.is-night .theme-toggle-sun,
body[data-theme="night"] .theme-toggle-sun {
    opacity: 1;
    transform: scale(1);
}

.theme-toggle.is-night .theme-toggle-moon,
body[data-theme="night"] .theme-toggle-moon {
    opacity: 0;
    transform: scale(0.84);
}

.header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s var(--ease);
}

.header-nav a:hover,
.header-nav a:focus-visible {
    color: var(--text);
    outline: none;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
    transform: scaleX(1);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    color: var(--text);
    outline: none;
}

.intro-section {
    width: var(--container);
    margin: 0 auto;
    padding: 156px 0 0;
}

.intro-copy h1 {
    max-width: 100%;
    margin: 0;
    color: var(--text);
    font-size: clamp(48px, 5.3vw, 84px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0;
}

.intro-copy h1 span {
    display: block;
    white-space: nowrap;
}

.intro-copy p {
    max-width: 680px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.34;
}

.game-media-grid {
    margin-top: 76px;
    display: flex;
    gap: 8px;
}

.game-media-grid:hover .game-media-card,
.game-media-grid:focus-within .game-media-card {
    flex: 0.82 1 0;
}

.game-media-grid .game-media-card:hover,
.game-media-grid .game-media-card:focus-visible {
    flex: 1.18 1 0;
}

.game-media-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    flex: 1 1 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: #fff;
    transition: flex 0.42s var(--ease), border-color 0.32s ease;
}

.game-media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

.game-media-slider,
.game-media-slider img {
    position: absolute;
    inset: 0;
}

.game-media-slider {
    z-index: 0;
}

.game-media-slider img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    filter: grayscale(0.18) contrast(1.05);
    transform: scale(1.01);
    transition: opacity 0.7s ease, transform 1.2s var(--ease), filter 0.5s ease;
}

.game-media-slider img.is-active {
    opacity: 1;
}

.game-media-card:hover,
.game-media-card:focus-visible {
    border-color: var(--muted);
    outline: none;
}

.game-media-card:hover .game-media-slider img.is-active,
.game-media-card:focus-visible .game-media-slider img.is-active {
    transform: scale(1.055);
    filter: grayscale(0) contrast(1.08);
}

.media-label,
.media-meta,
.media-actions,
.media-cta {
    position: relative;
    z-index: 2;
    margin-left: 24px;
    margin-right: 24px;
}

.media-label {
    margin-bottom: 8px;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 0.95;
}

.media-meta {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.media-cta {
    width: max-content;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    transition: opacity 0.28s ease;
}

.media-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.media-actions .media-cta {
    margin: 0;
}

.game-media-card:hover .media-cta,
.game-media-card:focus-visible .media-cta {
    opacity: 0.84;
}

.studio-notes {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.studio-notes article {
    min-height: 184px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
}

.studio-notes span {
    color: var(--muted);
    font-size: 12px;
}

.studio-notes p {
    max-width: 560px;
    margin: 0;
    font-size: clamp(24px, 2.8vw, 40px);
    line-height: 1.02;
}

.cards-section {
    min-height: 0;
    padding: 8px 0 76px;
    background: var(--bg);
}

.page-hero {
    width: var(--container);
    margin: 0 auto;
    padding: 150px 0 66px;
}

.page-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1;
}

.page-hero h1 {
    max-width: 1020px;
    margin: 0;
    font-size: clamp(48px, 6.2vw, 96px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: 0;
}

.page-hero p {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.34;
}

.fab-projects,
.doc-section {
    width: var(--container);
    margin: 0 auto;
    padding: 0 0 84px;
}

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

.empty-state {
    min-height: 280px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.empty-state span {
    color: var(--muted);
    font-size: 13px;
}

.empty-state p {
    max-width: 760px;
    margin: 30px 0 0;
    color: var(--text);
    font-size: clamp(32px, 4.8vw, 72px);
    line-height: 0.98;
}

.fab-project-card {
    min-height: 390px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    transition: background 0.32s ease, border-color 0.32s ease;
}

.fab-project-card:hover,
.fab-project-card:focus-visible {
    background: var(--surface-hover);
    border-color: var(--muted);
    outline: none;
}

.fab-project-card span {
    color: var(--muted);
    font-size: 12px;
}

.fab-project-card h2 {
    max-width: 360px;
    margin: 34px 0 0;
    font-size: clamp(34px, 3.4vw, 54px);
    font-weight: 400;
    line-height: 0.96;
}

.fab-project-card p {
    margin: auto 0 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.35;
}

.fab-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fab-tags em {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    font-size: 12px;
    font-style: normal;
    line-height: 1;
}

.doc-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.6fr);
    gap: 8px;
}

.doc-aside,
.doc-content {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
}

.doc-aside {
    min-height: 360px;
    padding: 24px;
}

.doc-aside a,
.doc-aside span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.doc-aside a {
    width: max-content;
    margin-bottom: 18px;
    color: var(--text);
}

.doc-content {
    padding: clamp(28px, 4vw, 58px);
}

.doc-content h2 {
    margin: 0 0 22px;
    font-size: clamp(36px, 4.4vw, 72px);
    font-weight: 400;
    line-height: 0.96;
}

.doc-content h3 {
    margin: 46px 0 12px;
    font-size: 24px;
    font-weight: 400;
}

.doc-content p,
.doc-content li {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.45;
}

.doc-content ul {
    margin: 0;
    padding-left: 20px;
}

.team-list,
.legal-text {
    width: var(--container);
    margin: 0 auto;
    padding: 0 0 84px;
}

.team-row {
    min-height: 168px;
    padding: 26px 0;
    display: grid;
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.95fr) minmax(260px, 0.72fr);
    gap: 40px;
    border-top: 1px solid var(--line);
}

.team-row:last-child,
.legal-block:last-child {
    border-bottom: 1px solid var(--line);
}

.team-row span,
.legal-meta span,
.legal-meta a {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.team-row h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 54px);
    font-weight: 400;
    line-height: 0.98;
}

.team-row p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.42;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1.44fr);
    gap: 80px;
    border-top: 1px solid var(--line);
    padding-top: 28px;
}

.legal-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-meta a {
    width: max-content;
    color: var(--text);
}

.legal-block {
    padding: 0 0 34px;
    margin: 0 0 34px;
    border-bottom: 1px solid var(--line);
}

.legal-block h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 3.8vw, 58px);
    font-weight: 400;
    line-height: 0.98;
}

.legal-block h3 {
    margin: 34px 0 10px;
    font-size: 22px;
    font-weight: 400;
}

.legal-block p,
.legal-block li {
    max-width: 820px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.45;
}

.legal-block ul {
    margin: 0;
    padding-left: 20px;
}

.cards-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.8fr);
    gap: 8px;
}

.feature-card {
    position: relative;
    min-height: 316px;
    padding: 25px 24px 22px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    transition: background 0.32s ease, border-color 0.32s ease;
}

.feature-card:hover,
.feature-card:focus-visible {
    background: var(--surface-hover);
    border-color: var(--muted);
    outline: none;
}

.card-kicker {
    color: var(--text);
    font-size: 11px;
    line-height: 1;
}

.card-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 15px;
    line-height: 1;
    transform: rotate(45deg);
    transition: transform 0.28s var(--ease);
}

.feature-card:hover .card-arrow,
.feature-card:focus-visible .card-arrow {
    transform: rotate(90deg);
}

.feature-card-small h1 {
    max-width: 260px;
    margin: 26px 0 0;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.02;
}

.feature-card-small p {
    max-width: 250px;
    margin: auto 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.3;
}

.card-dot {
    position: absolute;
    right: 54px;
    bottom: 48px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text);
}

.feature-card-large p {
    margin: 28px 0 0;
    color: var(--text);
    font-size: 24px;
    line-height: 1.05;
}

.feature-card-large h2 {
    margin: auto 0 14px;
    font-size: clamp(72px, 7.4vw, 132px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
}

.card-button {
    width: max-content;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--text);
    border-radius: 999px;
    color: var(--text);
    font-size: 13px;
    line-height: 1;
}

.feature-card:hover .card-button,
.feature-card:focus-visible .card-button {
    opacity: 0.78;
}

.site-footer {
    background: #e7ff00;
    color: #050505;
}

.footer-cta {
    background: #e7ff00;
}

.footer-cta-inner {
    width: var(--container);
    min-height: 276px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(48px, 7vw, 96px);
}

.footer-cta h2 {
    margin: 0;
    font-size: clamp(54px, 6vw, 86px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0;
}

.footer-cta h2 strong {
    font-weight: 700;
}

.footer-cta-links {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-top: 10px;
}

.footer-cta-links a {
    position: relative;
    padding-bottom: 7px;
    color: #050505;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: color 0.28s ease, opacity 0.28s ease;
}

.footer-cta-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s var(--ease);
}

.footer-cta-links a:hover,
.footer-cta-links a:focus-visible {
    outline: none;
}

.footer-cta-links a:hover::after,
.footer-cta-links a:focus-visible::after {
    transform: scaleX(1);
}

.footer-info {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #fff;
    color: #050505;
}

body[data-theme="night"] .site-footer {
    background: #141416;
}

body[data-theme="night"] .footer-info {
    background: #141416;
    color: #f6f6f3;
}

body[data-theme="night"] .footer-legal,
body[data-theme="night"] .footer-addresses address {
    color: rgba(246, 246, 243, 0.62);
}

body[data-theme="night"] .footer-legal a,
body[data-theme="night"] .footer-addresses a,
body[data-theme="night"] .footer-addresses strong {
    color: #f6f6f3;
}

body[data-theme="night"] .footer-logo-wrap img {
    filter: brightness(0) invert(1);
}

.footer-info-grid {
    position: relative;
    z-index: 2;
    width: var(--container);
    margin: 0 auto;
    padding: 90px 0 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    max-width: 360px;
}

.footer-social a {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.28s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    opacity: 0.72;
    outline: none;
}

.footer-social svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    color: #777a80;
    font-size: 14px;
    line-height: 1.2;
}

.footer-legal a,
.footer-addresses a {
    position: relative;
    color: #050505;
    transition: color 0.28s ease, opacity 0.28s ease;
}

.footer-legal a::after,
.footer-addresses a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s var(--ease);
}

.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-addresses a:hover,
.footer-addresses a:focus-visible {
    outline: none;
}

.footer-legal a:hover::after,
.footer-legal a:focus-visible::after,
.footer-addresses a:hover::after,
.footer-addresses a:focus-visible::after {
    transform: scaleX(1);
}

.footer-addresses {
    display: grid;
    grid-template-columns: repeat(2, minmax(170px, 1fr));
    gap: 78px;
}

.footer-addresses address {
    margin: 0;
    color: #6f7379;
    font-style: normal;
    font-size: 15px;
    line-height: 1.4;
}

.footer-addresses strong,
.footer-addresses span,
.footer-addresses a {
    display: block;
}

.footer-addresses strong {
    margin-bottom: 4px;
    color: #050505;
    font-weight: 700;
}

.footer-addresses a {
    width: max-content;
}

.footer-logo-wrap {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: var(--container);
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.footer-logo-wrap img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0);
}

@media (max-width: 900px) {
    :root {
        --container: min(100% - 48px, 1360px);
    }

    .header-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .cards-section {
        min-height: auto;
        padding-top: 8px;
    }

    .page-hero {
        padding-top: 112px;
    }

    .fab-project-grid,
    .doc-layout {
        grid-template-columns: 1fr;
    }

    .team-row,
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .intro-section {
        padding-top: 112px;
    }

    .game-media-grid,
    .studio-notes {
        grid-template-columns: 1fr;
    }

    .game-media-grid {
        flex-direction: column;
    }

    .game-media-grid:hover .game-media-card,
    .game-media-grid:focus-within .game-media-card,
    .game-media-grid .game-media-card:hover,
    .game-media-grid .game-media-card:focus-visible {
        flex: 1 1 auto;
    }

    .game-media-card {
        min-height: 320px;
    }

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

    .feature-card {
        min-height: 280px;
    }

    .footer-cta-inner {
        min-height: 240px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 24px;
    }

    .footer-cta-links {
        padding-top: 0;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 44px;
        padding-top: 64px;
    }

    .footer-addresses {
        gap: 32px;
    }
}

@media (max-width: 560px) {
    :root {
        --container: min(100% - 32px, 1360px);
    }

    .site-header {
        padding-top: 22px;
        align-items: flex-start;
        flex-direction: column;
    }

    .header-logo {
        width: 78px;
    }

    .header-nav {
        gap: 20px;
        font-size: 13px;
    }

    .cards-section {
        padding: 8px 0 54px;
    }

    .intro-section {
        padding-top: 86px;
    }

    .page-hero {
        padding-top: 86px;
        padding-bottom: 48px;
    }

    .page-hero h1 {
        font-size: 44px;
    }

    .page-hero p {
        font-size: 17px;
    }

    .fab-project-card {
        min-height: 310px;
    }

    .team-row {
        min-height: auto;
    }

    .intro-copy h1 {
        font-size: 44px;
    }

    .intro-copy h1 span {
        white-space: normal;
    }

    .intro-copy p {
        margin-left: 0;
        font-size: 17px;
    }

    .game-media-card {
        min-height: 260px;
    }

    .studio-notes p {
        font-size: 25px;
    }

    .feature-card {
        min-height: 250px;
        padding: 20px;
    }

    .feature-card-small h1 {
        font-size: 27px;
    }

    .feature-card-large p {
        font-size: 21px;
    }

    .feature-card-large h2 {
        font-size: 56px;
    }

    .footer-cta-inner {
        min-height: 220px;
    }

    .footer-cta h2 {
        font-size: 48px;
    }

    .footer-cta-links {
        gap: 24px;
    }

    .footer-info {
        min-height: 700px;
    }

    .footer-info-grid {
        padding-top: 52px;
    }

    .footer-legal {
        gap: 18px;
        font-size: 13px;
    }

    .footer-addresses {
        grid-template-columns: 1fr;
    }
}
