.hidden {visibility: hidden !important; display: none !important;}

@font-face
{
    font-family: 'Golos';
    src: local('Golos Text'),
        url('../fonts/GolosText-VariableFont_wght.ttf');
}

@font-face
{
    font-family: 'Neue';
    font-style: normal;
    font-weight: 300;
    src: local('PP Neue Machina'),
        url('../fonts/PPNeueMachina-Light.otf');
}

@font-face
{
    font-family: 'Neue';
    font-style: normal;
    font-weight: 400;
    src: local('PP Neue Machina'),
        url('../fonts/PPNeueMachina-Regular.otf');
}

@font-face
{
    font-family: 'Neue';
    font-style: normal;
    font-weight: 800;
    src: local('PP Neue Machina'),
        url('../fonts/PPNeueMachina-Ultrabold.otf');
}

:root {
    --background-color: #FFFFFF;
    --frame-color: #F4F4F4;
    --primary-text-color: #000000;
    --primary-color: #00a161;
    --background-primary-color: rgba(0, 255, 154, 0.1);
    --text-color: rgba(0,0,0,0.75);
    --text-dark-color: rgba(0,0,0,0.4);
    --inframe-color: #ececec;
    --text-green-color: #11d311;
    --text-red-color: #ec1313;
    --yellow-primary: rgb(255, 193, 7);
    --yellow-background: rgba(255, 193, 7, 0.1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #000000;
        --frame-color: #0D0D0D;
        --primary-text-color: #FFF;
        --primary-color: #00FF9A;
        --background-primary-color: rgba(0, 255, 154, 0.1);
        --text-color: rgba(255,255,255,0.75);
        --text-dark-color: rgba(255,255,255,0.4);
        --inframe-color: #141516;
        --text-green-color: #13ec13;
        --text-red-color: #ec1313;
        --yellow-primary: rgb(255, 193, 7);
        --yellow-background: rgba(255, 193, 7, 0.1);
    }
}

:root[data-theme="light"] {
    --background-color: #FFFFFF;
    --frame-color: #F4F4F4;
    --primary-text-color: #000000;
    --primary-color: #00a161;
    --background-primary-color: rgba(0, 255, 154, 0.1);
    --text-color: rgba(0,0,0,0.75);
    --text-dark-color: rgba(0,0,0,0.4);
    --inframe-color: #ececec;
    --text-green-color: #11d311;
    --text-red-color: #ec1313;
    --yellow-primary: rgb(255, 193, 7);
    --yellow-background: rgba(255, 193, 7, 0.1);
}

:root[data-theme="dark"] {
    --background-color: #000000;
    --frame-color: #0D0D0D;
    --primary-text-color: #FFF;
    --primary-color: #00FF9A;
    --background-primary-color: rgba(0, 255, 154, 0.1);
    --text-color: rgba(255,255,255,0.75);
    --text-dark-color: rgba(255,255,255,0.4);
    --inframe-color: #141516;
    --text-green-color: #13ec13;
    --text-red-color: #ec1313;
    --yellow-primary: rgb(255, 193, 7);
    --yellow-background: rgba(255, 193, 7, 0.1);
}

*
{
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
}

body
{
    margin: 0;
    background-color: var(--background-color);
}

.hidden {visibility: hidden !important; display: none !important;}

.background-frame { background: var(--frame-color); }

button:focus,
button:focus-visible
{
    outline: none;
}

button
{
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
}

.margin-0 { margin: 0; }

.height-100p { height: 100%; }
.width-100p  { width: 100%; }

.font-primary-color { color: var(--primary-text-color) !important; }
.font-dark-color { color: var(--text-dark-color) }
.font-color { color: var(--text-color) }
.font-green { color: var(--text-green-color); }
.font-red { color: var(--text-red-color); }

.font-golos {font-family: 'Golos', sans-serif;}
.font-neue {font-family: 'Neue', sans-serif;}

.font-light,   .font-w300 {font-weight: 300;}
.font-regular, .font-w400 {font-weight: 400;}
.font-medium,  .font-w500 {font-weight: 500;}
.font-semibold,.font-w600 {font-weight: 600;}
.font-bold,    .font-w700 {font-weight: 700;}

/* .fs8  { font-size: 8px; }
.fs12 { font-size: 12px; }
.fs14 { font-size: 14px; }
.fs16 { font-size: 16px; }
.fs20 { font-size: 20px; }
.fs24 { font-size: 24px; }
.fs32 { font-size: 32px; }
.fs48 { font-size: 48px; }
.fs64 { font-size: 64px; } */

.fs8  { font-size: 0.5rem; }
.fs12 { font-size: 0.75rem; }
.fs14 { font-size: 0.9rem; }
.fs16 { font-size: 1rem; }
.fs20 { font-size: 1.25rem; }
.fs24 { font-size: 1.5rem; }
.fs32 { font-size: 2rem; }
.fs48 { font-size: 2.5rem; }
.fs64 { font-size: 4rem; }

.flex { display: flex; }
.flex-item {flex: 1;}
.flex-wrap {display: flex; flex-wrap: wrap;}
.flex-rows    { display: flex; flex-direction: row; }
.flex-columns { display: flex; flex-direction: column; }
.flex-between { display: flex; justify-content: space-between;}
.flex-right   { display: flex; justify-content: flex-end; }
.flex-left    { display: flex; justify-content: flex-start; }
.flex-around  { display: flex; justify-content: space-around; }
.flex-middle  { display: flex; align-items: center;}
.flex-baseline{ display: flex; align-items: baseline; }

.g5  { gap: 5px; }
.g10 { gap: 10px; }
.g15 { gap: 15px; }
.g20 { gap: 20px; }
.g25 { gap: 25px; }
.g30 { gap: 30px; }
.g35 { gap: 40px; }
.g40 { gap: 40px; }
.g45 { gap: 45px; }
.g50 { gap: 50px; }

.p5  { padding: 5px; }
.p10 { padding: 10px; }
.p15 { padding: 15px; }
.p20 { padding: 20px; }
.p25 { padding: 25px; }
.p30 { padding: 30px; }
.p35 { padding: 40px; }
.p40 { padding: 40px; }
.p45 { padding: 45px; }
.p50 { padding: 50px; }

.border-full   { border: 1px solid var(--frame-color); }
.border-bottom { border-bottom: 1px solid var(--frame-color); }
.border-left   { border-left: 1px solid var(--frame-color); }
.border-right  { border-right: 1px solid var(--frame-color); }
.border-top    { border-top: 1px solid var(--frame-color); }

.landing-body
{
    min-height: 100vh;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.landing-body.landing-loaded
{
    opacity: 1;
}

.landing-body a
{
    text-decoration: none;
}

#landing-header
{
    position: fixed;
    z-index: 100;
    left: 50%;
    top: 0;
    width: min(100%, 2160px);
    transform: translateX(-50%);
    padding: 18px 74px;
    pointer-events: none;
    background-color: var(--background-color);
    border-radius: 0 0 18px 18px;
}

.landing-header-inner
{
    width: 100%;
    min-height: 52px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    pointer-events: auto;
}

.logotype
{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logotype h1
{
    margin: 0;
    color: var(--primary-text-color);
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.logotype img
{
    width: auto;
    height: 24px;
}

:root[data-theme="light"] .logotype img
{
    filter: invert(1);
}

.landing-logo
{
    flex: 0 0 auto;
    grid-column: 1;
}

.landing-nav,
.landing-header-actions,
.landing-hero-actions
{
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-nav
{
    grid-column: 2;
    justify-content: center;
}

.landing-header-actions
{
    grid-column: 3;
    justify-content: flex-end;
    min-width: 0;
}

.landing-theme-toggle
{
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 10px;
    background-color: var(--inframe-color);
    color: var(--primary-text-color);
    font-size: 17px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, opacity 0.2s;
}

.landing-theme-toggle:hover
{
    color: var(--primary-color);
    opacity: 0.86;
}

.dropdown-box
{
    position: relative;
}

.dropdown-button
{
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 8px 12px;
    color: var(--primary-text-color);
    border-radius: 5px;
    transition: background 0.2s, opacity 0.2s;
    cursor: default;
}

.dropdown-button p
{
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Neue', sans-serif;
    white-space: nowrap;
}

.dropdown-button .dropdown-arrow
{
    font-size: 12px;
}

.dropdown-button:hover
{
    background-color: var(--frame-color);
}

.dropdown-body
{
    position: absolute;
    z-index: 99;
    left: 50%;
    right: auto;
    top: calc(100% + 5px);
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: max-content;
    min-width: 190px;
    padding: 5px;
    background-color: var(--background-color);
    border-radius: 5px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.dropdown-box:hover .dropdown-body,
.dropdown-box:focus-within .dropdown-body
{
    visibility: visible;
    transform: translateX(-50%);
    opacity: 1;
}

.header-dropdown-button
{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--frame-color);
    color: var(--primary-text-color);
    cursor: pointer;
    font-family: 'Neue', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    white-space: nowrap;
    transition: background 0.2s;
}

.header-dropdown-button:hover
{
    background-color: var(--inframe-color);
}

.landing-body a.base-button,
.landing-body a.grey-button,
.landing-body button.base-button,
.landing-body button.grey-button
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    min-height: 42px;
    white-space: nowrap;
}

.landing-hero
{
    position: relative;
    width: min(100%, 2160px);
    min-height: 760px;
    margin: 0 auto 90px;
    padding: 145px 74px 44px;
    overflow: hidden;
    border-radius: 0 0 76px 76px;
    background:
        linear-gradient(180deg, #000000 0%, #0A3E2E 100%);
}

.landing-hero::before
{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.34), rgba(0,0,0,0)),
        linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(10,62,46,0.18) 100%);
    pointer-events: none;
}

.landing-hero-text
{
    position: absolute;
    left: 50%;
    bottom: 0;
    width: auto;
    height: 100%;
    max-width: none;
    transform: translateX(-50%);
    opacity: 0.34;
    mix-blend-mode: overlay;
    object-fit: cover;
    pointer-events: none;
}

.landing-hero-content
{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(330px, 0.82fr) minmax(420px, 1fr);
    align-items: center;
    gap: 28px;
}

.landing-hero-copy
{
    max-width: 560px;
}

.landing-kicker
{
    margin: 0 0 14px;
    color: rgba(255,255,255,0.75);
    font-family: 'Golos', sans-serif;
    font-size: 16px;
    line-height: 150%;
}

.landing-hero h1,
.game-hero h1
{
    margin: 0;
    color: white;
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0;
}

.landing-hero h1 span,
.landing-section-head h2 span,
.landing-feature-copy span,
.landing-game-card p span,
.game-point span
{
    color: var(--primary-color);
}

.landing-game-card p
{
    font-family: 'Golos', sans-serif;
}

.bg-text-primary
{
    margin: 0 -6px;
    padding: 0 6px 4px;
    /* border-radius: 8px; */
    background: linear-gradient(180deg, rgb(0, 255, 154, 0) 0%, rgb(0, 255, 154, 0.10) 100%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    color: var(--primary-color);
}

.landing-hero-actions
{
    margin-top: 28px;
}

.landing-hero-art
{
    min-width: 0;
    transform: perspective(900px) rotateY(-9deg) rotateZ(3deg);
}

.landing-hero-art img
{
    width: 112%;
    max-width: none;
    filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.45));
}

.landing-stats
{
    position: absolute;
    z-index: 1;
    left: 74px;
    right: 74px;
    bottom: 38px;
    display: flex;
    gap: 50px;
    max-width: 1040px;
}

.landing-stats div
{
    display: flex;
    align-items:center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
}

.landing-stats b
{
    color: white;
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.landing-stats span
{
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    font-family: 'Golos', sans-serif;
    line-height: 120%;
    white-space: nowrap;
}

.landing-section
{
    width: min(100%, 2160px);
    margin: 0 auto 100px;
    padding: 0 50px;
    scroll-margin-top: 110px;
}

.landing-section-head
{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.landing-section-head.centered
{
    justify-content: center;
    text-align: center;
}

.landing-section-head h2,
.landing-cta h2,
.game-info-grid h2
{
    margin: 0;
    color: var(--primary-text-color);
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;
}

.landing-cta h2
{
    color: white;
}

.landing-feature-stack
{
    border: 1px solid var(--inframe-color);
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--frame-color);
}

.landing-feature-card
{
    min-height: 460px;
    display: grid;
    grid-template-columns: minmax(260px, 0.74fr) minmax(360px, 1fr);
    align-items: center;
    gap: 20px;
    padding: 54px 90px 0;
    background:
        linear-gradient(180deg, #000000 0%, #0A3E2E 100%);
    border-bottom: 1px solid var(--inframe-color);
}

.landing-feature-card:last-child
{
    border-bottom: none;
}

.landing-feature-copy
{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 360px;
}

.landing-feature-copy span
{
    display: block;
    margin-bottom: 12px;
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 32px;
    font-weight: 600;
}

.landing-feature-copy h3
{
    margin: 0;
    color: white;
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.05;
}

.landing-feature-copy p
{
    margin: auto 0 42px;
    font-family: 'Golos', sans-serif;
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 150%;
}

.landing-feature-card img
{
    width: 118%;
    max-width: none;
    max-height: 430px;
    object-fit: contain;
    align-self: end;
}

.landing-feature-card:nth-child(1) img
{
    transform: translate(8%, 8%) scale(1.05);
}

.landing-feature-card:nth-child(3) img
{
    transform: translate(8%, 12%) scale(1.18);
}

.landing-games-grid
{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.landing-game-card
{
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 14px;
    padding: 26px;
    background-color: var(--frame-color);
}

.landing-game-card::after
{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,13,13,0) 0%, rgba(13,13,13,1) 100%);
    pointer-events: none;
}

.landing-game-card img
{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 0.3s;
}

.landing-game-card:hover img
{
    transform: scale(1.12);
}

.landing-game-card div
{
    position: relative;
    z-index: 1;
    max-width: 74%;
}

.landing-game-card p
{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 16px;
    vertical-align: middle;
}

.landing-game-card p small
{
    color: rgba(255,255,255,0.75);
    line-height: 31px;
    font-size: 16px;
}

.landing-game-card p span
{
    background-color: var(--background-primary-color);
    padding: 0 10px;
    line-height: 31px;
    border-radius: 10px;
    font-family: 'Neue', sans-serif;
}

.landing-game-card h3
{
    margin: 0 0 10px;
    color: white;
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 32px;
    font-weight: 600;
}

.landing-game-card div > span
{
    color: rgba(255,255,255,0.75);
    font-family: 'Golos', sans-serif;
    font-size: 16px;
    line-height: 150%;
}

.landing-game-card button
{
    position: absolute;
    z-index: 1;
    right: 22px;
    bottom: 24px;
}

.landing-games-more
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 64px;
    margin-top: 14px;
    padding: 14px 26px;
    border-radius: 14px;
    background-color: var(--frame-color);
    color: var(--text-color);
    font-family: 'Golos', sans-serif;
    font-size: 16px;
    transition: opacity 0.2s, transform 0.2s;
}

.landing-games-more:hover
{
    opacity: 0.82;
    transform: translateY(-1px);
}

.cpu-comparison-section
{
    font-family: 'Golos', sans-serif;
}

.cpu-comparison-table
{
    overflow: hidden;
    padding: 10px 30px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 82% 20%, rgba(0, 255, 154, 0.08), rgba(0, 255, 154, 0) 34%),
        var(--frame-color);
}

.cpu-comparison-row
{
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr);
    gap: 56px;
    align-items: center;
    padding: 20px 0;
}

.cpu-comparison-row:not(:last-child)
{
    border-bottom: 1px solid var(--inframe-color);
}

.cpu-comparison-row-primary
{
    background: transparent;
}

.cpu-comparison-name
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cpu-comparison-name b
{
    color: var(--primary-text-color);
    font-family: 'Neue', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.15;
}

.cpu-comparison-copy p
{
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--text-color);
    font-size: 15px;
    line-height: 150%;
}

.cpu-comparison-country
{
    display: flex;
    align-items: center;
    gap: 7px;
    width: max-content;
    max-width: 100%;
    min-height: 26px;
    padding: 0 8px;
    border-radius: 6px;
    background-color: var(--inframe-color);
    color: var(--primary-text-color);
    font-size: 13px;
}

.cpu-comparison-country img
{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
}

.cpu-comparison-score
{
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.cpu-comparison-score strong
{
    color: var(--primary-color);
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
}

.cpu-score-bar
{
    height: 14px;
    overflow: hidden;
    border-radius: 99px;
    background-color: var(--inframe-color);
}

.cpu-score-bar i
{
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary-color) 0%, #00FF9A 100%);
}

.cpu-comparison-note
{
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--text-color);
    font-family: 'Golos', sans-serif;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
}

.document-hero
{
    width: min(100%, 2160px);
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 auto 70px;
    padding: 150px 74px 70px;
    overflow: hidden;
    border-radius: 0 0 56px 56px;
    background:
        radial-gradient(circle at 78% 10%, rgba(0, 255, 154, 0.16), rgba(0, 255, 154, 0) 34%),
        linear-gradient(180deg, #000000 0%, #0A3E2E 100%);
}

.document-hero h1
{
    max-width: 980px;
    margin: 0;
    color: white;
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
}

.document-hero > p:not(.landing-kicker)
{
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255,255,255,0.75);
    font-family: 'Golos', sans-serif;
    font-size: 18px;
    line-height: 150%;
}

.document-section
{
    max-width: 1180px;
}

.document-content
{
    padding: 42px;
    border-radius: 16px;
    background-color: var(--frame-color);
    color: var(--text-color);
    font-family: 'Golos', sans-serif;
    font-size: 16px;
    line-height: 170%;
}

.document-content span
{
    display: block;
    margin: 34px 0 14px;
    color: var(--primary-text-color);
    font-family: 'Neue', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.document-content span:first-child
{
    margin-top: 0;
}

.document-content a
{
    color: var(--primary-color);
}

.landing-plan-filters
{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 12px;
    background-color: var(--frame-color);
}

.order-filter-section p
{
    margin: 10px 5px 14px;
    color: var(--primary-text-color);
    font-family: 'Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.order-filter-buttons
{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.order-filter-button
{
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: none;
    border-radius: 10px;
    background-color: var(--inframe-color);
    color: var(--primary-text-color);
    font-family: 'Golos', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s, color 0.2s;
}

.order-filter-button img
{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.order-filter-button:hover
{
    opacity: 0.78;
}

.order-filter-button.selected
{
    background-color: var(--background-primary-color);
    color: var(--primary-color);
}

.order-filter-button:disabled
{
    opacity: 0.55;
    cursor: default;
}

.order-filter-placeholder,
.landing-plan-loading
{
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
}

.landing-plan-list
{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.landing-plan-card
{
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    padding: 18px;
    border-radius: 12px;
    font-family: 'Golos', sans-serif;
    justify-content: space-between;
    background-color: var(--frame-color);
}

.landing-plan-card .base-button
{
    width: 100% !important;
}

.landing-plan-top
{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.landing-plan-meta
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.landing-plan-card h3
{
    margin: 0;
    color: var(--primary-text-color);
    font-family: 'Neue', sans-serif;
    font-size: 24px;
    font-weight: 400;
    overflow-wrap: anywhere;
}

.landing-plan-chip
{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    max-width: 100%;
    min-height: 26px;
    padding: 0 8px;
    border-radius: 5px;
    background-color: var(--inframe-color);
    color: var(--text-color);
    font-size: 12px;
}

.landing-plan-chip img
{
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.landing-plan-price
{
    text-align: right;
}

.landing-plan-price span
{
    color: var(--text-color);
    font-size: 12px;
}

.landing-plan-price b
{
    display: block;
    margin-top: 4px;
    color: var(--primary-text-color);
    font-family: 'Neue', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.landing-plan-price small
{
    display: block;
    margin-top: 6px;
    color: var(--text-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

.landing-plan-sale
{
    display: inline-flex;
    gap: 5px;
    margin-top: 5px;
    color: var(--text-green-color);
    font-family: 'Golos', sans-serif;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
}

.landing-plan-sale em
{
    font-style: normal;
    font-weight: 400;
    color: var(--primary-color);
}

.landing-plan-specs
{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.landing-plan-specs div
{
    min-width: 0;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--inframe-color);
}

.landing-plan-specs span
{
    display: block;
    color: var(--text-color);
    font-size: 12px;
}

.landing-plan-specs b
{
    display: block;
    margin-top: 5px;
    color: var(--primary-text-color);
    font-family: 'Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.landing-plan-card .base-button
{
    width: 100%;
    margin-top: auto;
}

.landing-empty-state
{
    grid-column: 1 / -1;
    padding: 32px;
    border-radius: 12px;
    background-color: var(--frame-color);
    color: var(--text-color);
    text-align: center;
}

.landing-faq-grid
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.landing-faq-item
{
    padding: 0;
    border-radius: 8px;
    background-color: var(--frame-color);
    overflow: hidden;
}

.landing-faq-item button
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 70px;
    padding: 0 22px;
    border: none;
    background: transparent;
    color: var(--primary-text-color);
    font-family: 'Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
}

.landing-faq-item button::after
{
    content: "\F282";
    flex: 0 0 auto;
    font-family: bootstrap-icons;
    font-size: 14px;
    color: var(--primary-text-color);
    transition: transform 0.2s;
}

.landing-faq-item.active button::after
{
    transform: rotate(180deg);
}

.landing-faq-item > div
{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.landing-faq-item p
{
    margin: 0;
    font-family: 'Golos', sans-serif;
    padding: 0 22px 22px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 155%;
}

.landing-faq
{
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
    gap: 80px;
    align-items: start;
}

.landing-faq-intro h2
{
    margin: 0 0 24px;
    color: var(--primary-text-color);
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15;
}
.landing-cta p 
{
    font-family: 'Golos', sans-serif;
    
}

.landing-faq-intro p
{
    max-width: 620px;
    margin: 0;
    font-family: 'Golos', sans-serif;
    color: var(--text-color);
    font-size: 16px;
    line-height: 150%;
}

.landing-faq-intro a
{
    color: var(--primary-color);
    font-weight: 600;
}

.landing-cta
{
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    text-align: center;
    padding: 70px 42px;
    border-radius: 48px 48px 0 0;
    background:
        linear-gradient(180deg, #000000 0%, #0A3E2E 100%);
    margin-bottom: 0;
}

.landing-cta h2
{
    max-width: 920px;
}

.landing-cta p
{
    margin: 34px 0 0;
    color: rgba(255,255,255,0.75);
    font-size: 24px;
    line-height: 1.12;
}

.landing-footer
{
    width: min(100%, 2160px);
    margin: 0 auto;
    padding: 64px 90px 34px;
    font-family: 'Golos', sans-serif;
    background-color: var(--frame-color);
}

.landing-footer-grid
{
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(150px, 0.75fr));
    gap: clamp(28px, 4vw, 72px);
}

.landing-footer-grid > *
{
    min-width: 0;
}

.landing-footer-brand p,
.landing-footer a,
.landing-footer-bottom
{
    color: var(--text-color);
    font-size: 16px;
    line-height: 150%;
}

.landing-footer h3
{
    margin: 0 0 14px;
    color: var(--primary-text-color);
    font-family: 'Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.landing-footer .landing-logo
{
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    flex-wrap: nowrap;
}

.landing-footer .logotype h1
{
    display: block;
    white-space: nowrap;
}

.landing-footer a
{
    display: block;
    margin-top: 10px;
}

.landing-footer a:hover
{
    color: var(--primary-color);
}

.landing-footer-bottom
{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--inframe-color);
}

.game-hero
{
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: flex-end;
    width: min(100%, 2160px);
    margin: 0 auto 100px;
    padding: 170px 74px 92px;
    overflow: hidden;
    border-radius: 0 0 56px 56px;
    font-family: 'Golos', sans-serif;
    background-image: var(--game-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.game-hero-overlay
{
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.36) 44%, rgba(0,0,0,0) 100%);
}

.game-hero-content
{
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.game-hero-content > p:not(.landing-kicker),
.game-info-grid > div > p
{
    max-width: 650px;
    margin: 22px 0 0;
    font-family: 'Golos', sans-serif;
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 155%;
}

.game-feature-section
{
    font-family: 'Golos', sans-serif;
}

.game-feature-list
{
    display: grid;
    gap: 86px;
}

.game-feature-row
{
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
    gap: 56px;
    align-items: center;
}

.game-feature-row-reverse
{
    grid-template-columns: minmax(360px, 1.14fr) minmax(280px, 0.86fr);
}

.game-feature-row-reverse .game-feature-copy
{
    order: 2;
}

.game-feature-row-reverse .game-feature-media
{
    order: 1;
}

.game-feature-copy
{
    min-width: 0;
}

.game-feature-copy span
{
    display: block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.game-feature-copy h3
{
    max-width: 520px;
    margin: 0;
    color: var(--primary-text-color);
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.12;
}

.game-feature-copy p
{
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--text-color);
    font-family: 'Golos', sans-serif;
    font-size: 16px;
    line-height: 155%;
}

.game-feature-media
{
    min-width: 0;
    overflow: hidden;
}

.game-feature-media img
{
    display: block;
    width: 100%;
    max-height: 430px;
    object-fit: contain;
}

.game-info-grid
{
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 18px;
    align-items: stretch;
}

.game-info-grid > div:first-child,
.game-point-list
{
    padding: 44px;
    border-radius: 14px;
    background-color: var(--frame-color);
}

.game-info-grid > div:first-child
{
    background:
        linear-gradient(180deg, #000000 0%, #0A3E2E 100%);
}

.game-info-metrics
{
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-top: 34px;
}

.game-info-metrics div
{
    flex: 1 1 0;
    min-width: 0;
    padding: 16px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.035);
}

.game-info-metrics b
{
    display: block;
    color: var(--primary-text-color);
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.game-info-metrics span
{
    display: block;
    margin-top: 10px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 140%;
}

.game-point-list
{
    display: grid;
    gap: 10px;
}

.game-point
{
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 10px;
    background-color: var(--inframe-color);
}

.game-point span
{
    font-family: 'Unbounded', 'Neue', sans-serif;
    font-size: 32px;
    font-weight: 600;
}

.game-point p
{
    margin: 0;
    color: var(--primary-text-color);
    font-size: 16px;
    line-height: 150%;
}

.landing-reveal
{
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.landing-reveal.landing-reveal-visible
{
    opacity: 1;
    transform: translateY(0);
}

.landing-feature-card:nth-child(2),
.landing-game-card:nth-child(2),
.cpu-comparison-row:nth-child(2),
.game-feature-row:nth-child(2),
.landing-faq-item:nth-child(2)
{
    transition-delay: 0.06s;
}

.landing-feature-card:nth-child(3),
.landing-game-card:nth-child(3),
.cpu-comparison-row:nth-child(3),
.game-feature-row:nth-child(3),
.landing-faq-item:nth-child(3)
{
    transition-delay: 0.12s;
}

.landing-game-card:nth-child(4),
.cpu-comparison-row:nth-child(4),
.landing-faq-item:nth-child(4)
{
    transition-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce)
{
    .landing-reveal
    {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media screen and (max-width: 980px)
{
    #landing-header
    {
        padding: 12px;
    }

    .landing-header-inner
    {
        grid-template-columns: auto minmax(0, 1fr);
        min-height: 48px;
    }

    .landing-header-actions
    {
        grid-column: 2;
    }

    .landing-nav
    {
        display: none;
    }

    .landing-hero,
    .game-hero,
    .document-hero
    {
        width: min(100% - 16px, 2160px);
        min-height: auto;
        padding: 108px 24px 44px;
        border-radius: 0 0 32px 32px;
        background-size: cover;
    }

    .game-hero
    {
        min-height: 720px;
        padding: 132px 24px 60px;
    }

    .landing-hero-content,
    .landing-feature-card,
    .game-feature-row,
    .game-feature-row-reverse,
    .game-info-grid
    {
        grid-template-columns: 1fr;
    }

    .game-feature-list
    {
        gap: 54px;
    }

    .game-feature-row,
    .game-feature-row-reverse
    {
        gap: 24px;
    }

    .game-feature-row-reverse .game-feature-copy,
    .game-feature-row-reverse .game-feature-media
    {
        order: initial;
    }

    .landing-hero-art
    {
        transform: none;
        margin-top: 20px;
    }

    .landing-hero-art img
    {
        width: 100%;
    }

    .landing-stats
    {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 24px;
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: none;
        flex-wrap: wrap;
    }

    .landing-stats span
    {
        white-space: normal;
    }

    .landing-feature-card
    {
        min-height: 0;
        padding: 32px 24px 0;
    }

    .landing-feature-copy p
    {
        margin: 16px 0 18px;
    }

    .landing-games-grid,
    .landing-plan-list
    {
        grid-template-columns: 1fr;
    }

    .cpu-comparison-row
    {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }

    .cpu-comparison-score
    {
        grid-column: auto;
    }

    .landing-footer-grid
    {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
    }

    .landing-footer-brand
    {
        grid-column: 1 / -1;
    }

    .landing-plan-filters
    {
        grid-template-columns: 1fr;
    }

    .landing-section-head,
    .landing-footer-bottom
    {
        align-items: flex-start;
        flex-direction: column;
    }

    .landing-section-head.centered
    {
        align-items: center;
        text-align: center;
    }

    .landing-cta
    {
        align-items: center;
        flex-direction: column;
    }

    .landing-faq
    {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media screen and (max-width: 560px)
{
    .landing-header-actions .grey-button
    {
        display: none;
    }

    .logotype h1
    {
        font-size: 16px;
    }

    .landing-hero h1,
    .game-hero h1,
    .document-hero h1
    {
        font-size: 32px;
    }

    .landing-hero-content
    {
        text-align: center;
    }

    .landing-hero-copy
    {
        max-width: none;
    }

    .landing-hero-actions
    {
        justify-content: center;
    }

    .landing-hero-art
    {
        display: none;
    }

    .landing-hero
    {
        min-height: 760px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 210px;
    }

    .landing-hero-content
    {
        width: 100%;
    }

    .landing-stats
    {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 54px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 0;
    }

    .landing-stats div:last-child
    {
        grid-column: auto;
    }

    .game-hero
    {
        min-height: 660px;
        padding: 112px 24px 46px;
    }

    .game-hero-content
    {
        max-width: none;
        text-align: center;
    }

    .game-hero-overlay
    {
        background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 52%, rgba(0,0,0,0.42) 100%);
    }

    .landing-section-head h2,
    .landing-cta h2,
    .game-info-grid h2
    {
        font-size: 32px;
    }

    .game-feature-copy h3
    {
        font-size: 28px;
    }

    .game-feature-copy span
    {
        font-size: 28px;
    }

    .document-hero
    {
        min-height: 360px;
    }

    .document-hero > p:not(.landing-kicker)
    {
        font-size: 16px;
    }

    .landing-hero-text
    {
        left: 50%;
        width: auto;
        height: 100%;
    }

    .landing-cta h2,
    .landing-cta p
    {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .landing-cta p
    {
        font-size: 16px;
    }

    .landing-section
    {
        width: min(100%, 2160px);
        padding: 0 10px;
        margin-bottom: 48px;
        scroll-margin-top: 84px;
    }

    .landing-cta
    {
        margin-bottom: 0px;
    }

    .landing-games-grid
    {
        gap: 10px;
    }

    .landing-games-more
    {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 10px;
        padding: 18px;
    }

    .cpu-comparison-table
    {
        padding: 9px 18px;
    }

    .cpu-comparison-row
    {
        padding: 18px 0;
    }

    .cpu-comparison-score
    {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .landing-game-card
    {
        min-height: 450px;
        padding: 22px;
        padding-bottom: 84px;
    }

    .landing-game-card div
    {
        max-width: 100%;
    }

    .landing-game-card button
    {
        left: 22px;
        right: auto;
        bottom: 22px;
    }

    .landing-game-card b
    {
        position: relative;
        right: auto;
        bottom: auto;
        margin-left: auto;
        align-self: flex-start;
    }

    .landing-plan-top,
    .landing-plan-specs
    {
        grid-template-columns: 1fr;
    }

    .landing-plan-top
    {
        display: grid;
    }

    .landing-plan-price
    {
        text-align: left;
    }

    .landing-cta,
    .landing-footer,
    .document-content,
    .game-info-grid > div:first-child,
    .game-point-list
    {
        padding: 22px;
    }

    .landing-footer-grid
    {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .landing-footer-brand
    {
        grid-column: auto;
    }

    .game-info-metrics
    {
        flex-direction: column;
    }
}

@media screen and (max-width: 420px)
{
    .landing-hero
    {
        min-height: 840px;
        padding: 112px 16px 250px;
    }

    .landing-hero-copy,
    .landing-hero h1,
    .landing-kicker
    {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .landing-hero h1
    {
        font-size: 28px;
    }

    .landing-hero-actions
    {
        flex-direction: column;
        width: 100%;
    }

    .landing-hero-actions .base-button,
    .landing-hero-actions .grey-button
    {
        width: 100%;
    }

    .landing-stats
    {
        left: 16px;
        right: 16px;
        bottom: 42px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .landing-stats div:last-child
    {
        grid-column: auto;
    }

    .landing-stats b
    {
        font-size: 30px;
    }

    .landing-stats div
    {
        justify-content: center;
    }
}
