/* ============================================================
   game.css — автономный CSS для лендинга Olimp Runner
   ============================================================ */

/* ---- Шрифты ---- */
@font-face {
    font-family: 'Aznauri Round';
    src: url('assets/fonts/AznauriRoundBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Aznauri Round';
    src: url('assets/fonts/AznauriRoundRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/manrope-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/manrope-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* ---- Переменные ---- */
:root {
    --color-primary:        #35a296;
    --color-primary-dark:   #1d5451;
    --color-bg-light:       #e6f6f4;
    --color-bg-light-alt:   #e9f5f3;
    --color-bg-field:       #e7f7f5;
    --color-text-primary:   #000000;
    --color-text-secondary: #678b87;
    --color-text-accent:    #35a296;
    --color-white:          #ffffff;
    --shadow-card:          0px 0px 8px 0px rgba(29, 84, 81, 0.25);
    --shadow-header:        0px 2px 12px rgba(29, 84, 81, 0.12);
    --border-radius:        15px;
    --container-width:      1440px;
    --transition-fast:      200ms;
    --transition-normal:    250ms;
    --transition-slow:      300ms;
    --ease-out:             cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-smooth:          cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Сброс ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.85);
    background-color: #071615;
    line-height: normal;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   LAYOUT
   ================================================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 120px);
}

/* ================================================================
   HEADER — игровой тёмный, прозрачный
   ================================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background-color: transparent;
    z-index: 1000;
    transition: background-color 300ms ease, border-color 300ms ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(7, 22, 21, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(53, 162, 150, 0.12);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 120px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.game-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.game-header-logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-header-logo-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.game-header-logo-text {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
    transition: color var(--transition-fast) ease;
}

.game-header-logo:hover .game-header-logo-text {
    color: var(--color-primary);
}

.game-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.game-nav-link {
    font-family: 'Manrope', sans-serif;
    font-weight: normal;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--transition-fast) ease;
    white-space: nowrap;
}

.game-nav-link:hover {
    color: #ffffff;
}

.btn-nav-apk {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    background: rgba(53, 162, 150, 0.16);
    border: 1px solid rgba(53, 162, 150, 0.4);
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-normal) var(--ease-out);
    cursor: pointer;
}

.btn-nav-apk:hover {
    background: rgba(53, 162, 150, 0.28);
    border-color: rgba(53, 162, 150, 0.7);
    color: #ffffff;
    transform: translateY(-1px);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: transform var(--transition-normal) ease, opacity var(--transition-normal) ease;
}

.burger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open span:nth-child(2) { opacity: 0; }
.burger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 22, 21, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 998;
    flex-direction: column;
    padding: 24px 20px 40px;
    overflow-y: auto;
    border-top: 1px solid rgba(53, 162, 150, 0.14);
}

.mobile-nav.is-open { display: flex; }

.mobile-nav-link {
    font-family: 'Manrope', sans-serif;
    font-weight: normal;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: block;
    transition: color var(--transition-fast) ease;
}

.mobile-nav-link:hover { color: var(--color-primary); }

.mobile-nav-download {
    margin-top: 24px;
}

.mobile-nav-download .btn-primary {
    width: 100%;
    text-align: center;
}

/* ================================================================
   КНОПКИ
   ================================================================ */

.btn {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 20px;
    padding: 16px 51px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal) var(--ease-out);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    transform: translateY(0);
}

.btn:active { transform: translateY(1px); }

.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(53, 162, 150, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0px 2px 6px rgba(53, 162, 150, 0.2);
}

.btn-outline {
    background-color: var(--color-white);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-card);
}

.btn-outline:hover {
    box-shadow: 0px 0px 12px 0px rgba(29, 84, 81, 0.35);
    transform: translateY(-2px);
}

.btn-outline:active { transform: translateY(0); }

.btn-outline-teal {
    background-color: #e1f5f3;
    color: var(--color-text-primary);
    border: 0.5px solid var(--color-primary);
}

.btn-outline-teal:hover {
    background-color: var(--color-bg-light);
    transform: translateY(-2px);
    box-shadow: 0px 2px 8px rgba(29, 84, 81, 0.15);
}

.btn-outline-teal:active { transform: translateY(0); }

.btn-sm {
    padding: 10px 24px;
    font-size: 16px;
}

/* ================================================================
   HERO — ТЁМНАЯ АРЕНА С GLOW
   ================================================================ */

.game-hero {
    margin-top: 72px;
    min-height: calc(100vh - 72px);
    background-color: #071615;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.game-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.game-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(53, 162, 150, 0.2) 0%,
        rgba(53, 162, 150, 0.07) 45%,
        transparent 70%
    );
    border-radius: 50%;
}

.game-hero-track {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(53, 162, 150, 0.13);
}

.game-hero-track--1 { width: 320px;  height: 170px; }
.game-hero-track--2 { width: 560px;  height: 290px; }
.game-hero-track--3 { width: 820px;  height: 420px; }
.game-hero-track--4 { width: 1120px; height: 580px; border-color: rgba(53, 162, 150, 0.06); }

.game-hero-dot {
    position: absolute;
    border-radius: 50%;
    background-color: var(--color-primary);
    box-shadow: 0 0 14px 5px rgba(53, 162, 150, 0.55);
    animation: heroDotPulse 3.2s ease-in-out infinite;
}

.game-hero-dot--1 { width: 6px; height: 6px; top: 31%; left: 21%; animation-delay: 0s; }
.game-hero-dot--2 { width: 4px; height: 4px; top: 58%; right: 17%; animation-delay: 1.1s; }
.game-hero-dot--3 { width: 5px; height: 5px; bottom: 26%; left: 62%; animation-delay: 2.2s; }

@keyframes heroDotPulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50%       { opacity: 1;    transform: scale(1.6); }
}

.game-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding: 80px 0 70px;
}

.game-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 20px;
    background-color: rgba(53, 162, 150, 0.14);
    border: 1px solid rgba(53, 162, 150, 0.35);
    width: fit-content;
}

.game-hero-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--color-primary);
    flex-shrink: 0;
}

.game-hero-badge-text {
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
    font-size: 13px;
    color: var(--color-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.game-hero-title {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.08;
    color: #ffffff;
    text-shadow:
        0 0 60px rgba(53, 162, 150, 0.45),
        0 0 130px rgba(53, 162, 150, 0.15);
    max-width: 840px;
    margin: 0;
}

.game-hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.7vw, 18px);
    color: rgba(255, 255, 255, 0.5);
    max-width: 460px;
    margin: 0;
    letter-spacing: 0.03em;
}

.game-hero-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}

.btn-hero-apk {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2b8a7f 100%);
    border-radius: var(--border-radius);
    font-family: 'Aznauri Round', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    box-shadow:
        0 0 30px rgba(53, 162, 150, 0.5),
        0 4px 18px rgba(0, 0, 0, 0.35);
    animation: heroBtnGlow 2.6s ease-in-out infinite;
    transition: transform var(--transition-fast) ease,
                box-shadow var(--transition-normal) ease;
}

.btn-hero-apk:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 52px rgba(53, 162, 150, 0.75),
        0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-hero-apk svg {
    width: 20px;
    height: 20px;
    fill: white;
    flex-shrink: 0;
}

@keyframes heroBtnGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(53, 162, 150, 0.5),  0 4px 18px rgba(0,0,0,0.35); }
    50%       { box-shadow: 0 0 55px rgba(53, 162, 150, 0.78), 0 4px 18px rgba(0,0,0,0.35); }
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--border-radius);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: border-color var(--transition-fast) ease,
                color var(--transition-fast) ease;
}

.btn-hero-ghost:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: white;
}

.game-hero-stats {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    padding: 18px 0;
    margin-top: 10px;
}

.game-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0 32px;
}

.game-hero-stat-val {
    font-family: 'Aznauri Round', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.game-hero-stat-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.game-hero-stat-divider {
    width: 1px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ================================================================
   ОБ ИГРЕ — открытый split layout
   ================================================================ */

.game-about {
    padding: 110px 0;
    background-color: #0c1e1c;
    position: relative;
    overflow: hidden;
}

.about-blob {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(53, 162, 150, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
}

.about-eyebrow {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.about-headline {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 28px 0;
}

.about-text {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0 0 16px 0;
}

.about-text strong {
    color: rgba(255, 255, 255, 0.88);
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 13px 28px;
    background: rgba(53, 162, 150, 0.12);
    border: 1px solid rgba(53, 162, 150, 0.35);
    border-radius: var(--border-radius);
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: var(--color-primary);
    text-decoration: none;
    transition: background var(--transition-fast) ease,
                border-color var(--transition-fast) ease,
                color var(--transition-fast) ease;
}

.about-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.about-cta:hover {
    background: rgba(53, 162, 150, 0.22);
    border-color: rgba(53, 162, 150, 0.6);
    color: #ffffff;
}

.about-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    overflow: hidden;
}

.an-item {
    background: rgba(7, 22, 21, 0.65);
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background var(--transition-fast) ease;
}

.an-item:hover {
    background: rgba(53, 162, 150, 0.08);
}

.an-val {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 46px;
    line-height: 1;
    color: var(--color-primary);
    text-shadow: 0 0 24px rgba(53, 162, 150, 0.38);
}

.an-plus {
    font-size: 26px;
    opacity: 0.7;
}

.an-unit {
    font-size: 22px;
    opacity: 0.7;
}

.an-key {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

/* ================================================================
   ОСОБЕННОСТИ — нумерованные горизонтальные ряды
   ================================================================ */

.game-features {
    padding: 110px 0;
    background-color: #071615;
}

.feat-header {
    display: flex;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 64px;
}

.feat-count {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: var(--color-primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    flex-shrink: 0;
    padding-bottom: 10px;
}

.feat-title {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: clamp(28px, 3.5vw, 46px);
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.feat-row {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.feat-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.feat-num {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 54px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    width: 70px;
    text-align: right;
    user-select: none;
}

.feat-icon-wrap {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(53, 162, 150, 0.09);
    border: 1px solid rgba(53, 162, 150, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast) ease,
                border-color var(--transition-fast) ease;
}

.feat-row:hover .feat-icon-wrap {
    background: rgba(53, 162, 150, 0.18);
    border-color: rgba(53, 162, 150, 0.4);
}

.feat-icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: var(--color-primary);
}

.feat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.feat-name {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
    margin: 0;
}

.feat-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.65;
    max-width: 520px;
}

.feat-badge {
    flex-shrink: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-primary);
    padding: 5px 16px;
    border-radius: 20px;
    background: rgba(53, 162, 150, 0.09);
    border: 1px solid rgba(53, 162, 150, 0.22);
}

/* ================================================================
   ДЛЯ КОГО — асимметричный layout
   ================================================================ */

.game-audience {
    padding: 110px 0;
    background-color: #0c1e1c;
    position: relative;
    overflow: hidden;
}

.aud-bg-num {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 320px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.022);
    user-select: none;
    pointer-events: none;
}

.aud-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 100px;
    align-items: start;
}

.aud-label-col {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aud-title {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1;
    color: #ffffff;
    margin: 0;
}

.aud-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0;
}

.aud-items {
    display: flex;
    flex-direction: column;
}

.aud-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: padding-left var(--transition-normal) var(--ease-out);
}

.aud-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.aud-item:hover {
    padding-left: 10px;
}

.aud-icon-wrap {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(53, 162, 150, 0.1);
    border: 1px solid rgba(53, 162, 150, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aud-icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: var(--color-primary);
}

.aud-item-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aud-item-title {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #ffffff;
    margin: 0;
}

.aud-item-text {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.54);
    line-height: 1.7;
    margin: 0;
}

/* ================================================================
   ОБ АВТОРЕ — split с декоративным словом
   ================================================================ */

.game-author {
    padding: 110px 0;
    background-color: #071615;
    position: relative;
    overflow: hidden;
}

.author-bg-word {
    position: absolute;
    bottom: -50px;
    left: -20px;
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: clamp(120px, 18vw, 240px);
    line-height: 1;
    color: rgba(53, 162, 150, 0.04);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.author-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.author-eyebrow {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.author-name {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 14px 0;
}

.author-tag {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 24px;
}

.author-bio {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.78;
    margin: 0 0 14px 0;
}

.author-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.author-btn-vk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: rgba(53, 162, 150, 0.13);
    border: 1px solid rgba(53, 162, 150, 0.36);
    border-radius: var(--border-radius);
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 15px;
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-fast) ease;
}

.author-btn-vk svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.author-btn-vk:hover {
    background: rgba(53, 162, 150, 0.24);
    border-color: rgba(53, 162, 150, 0.62);
    color: #ffffff;
}

.author-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--border-radius);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all var(--transition-fast) ease;
}

.author-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.author-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding-top: 8px;
}

.author-icon-big {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-icon-big img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.author-facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.author-facts li {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.48);
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 2px solid rgba(53, 162, 150, 0.38);
    line-height: 1.4;
}

/* ================================================================
   СКАЧАТЬ — с водяным знаком
   ================================================================ */

.game-download {
    padding: 110px 0;
    background: linear-gradient(135deg, #081f1d 0%, #1a4a47 50%, #0c2322 100%);
    position: relative;
    overflow: hidden;
}

.game-download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(53, 162, 150, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.download-watermark {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: clamp(160px, 22vw, 280px);
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.02em;
}

.game-download-inner {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 70px 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    backdrop-filter: blur(12px);
}

.game-download-title {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: white;
    text-shadow: 0 0 40px rgba(53, 162, 150, 0.3);
    margin: 0;
}

.game-download-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: normal;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 560px;
}

.game-download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.btn-apk {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 44px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2b8a7f 100%);
    border-radius: var(--border-radius);
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: white;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(53, 162, 150, 0.45), 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal) var(--ease-out);
    border: none;
    cursor: pointer;
}

.btn-apk svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.btn-apk:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(53, 162, 150, 0.65), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-apk:active { transform: translateY(0); }

.btn-apk-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 20px;
    padding: 16px 44px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all var(--transition-normal) var(--ease-out);
    cursor: pointer;
}

.btn-apk-outline:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.45);
    color: white;
    transform: translateY(-2px);
}

.game-download-note {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.38);
    margin: 0;
    letter-spacing: 0.03em;
}

/* ================================================================
   ТЕХНИЧЕСКИЕ ХАРАКТЕРИСТИКИ — split layout
   ================================================================ */

.game-tech {
    padding: 110px 0;
    background-color: #0c1e1c;
}

.tech-wrap {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 100px;
    align-items: start;
}

.tech-heading {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-title {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.tech-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.65;
}

.tech-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    gap: 20px;
}

.tech-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.tech-key {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.42);
}

.tech-val {
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.84);
    text-align: right;
}

/* ================================================================
   КОНТАКТЫ — горизонтальный список
   ================================================================ */

.game-contacts {
    padding: 110px 0;
    background-color: #071615;
}

.ctc-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    align-items: start;
}

.ctc-heading {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ctc-title {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.05;
    color: #ffffff;
    margin: 0;
}

.ctc-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.38);
    margin: 0;
}

.ctc-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
}

.ctc-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(53, 162, 150, 0.1);
    border: 1px solid rgba(53, 162, 150, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctc-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.ctc-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctc-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ctc-val {
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
}

.ctc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.ctc-social {
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast) ease;
}

.ctc-social:hover {
    color: #ffffff;
}

/* ================================================================
   ФУТЕР
   ================================================================ */

.game-footer {
    background: linear-gradient(to bottom, #060f0e 0%, #040b0a 100%);
    padding: 70px 0 0;
    border-top: 1px solid rgba(53, 162, 150, 0.12);
}

.game-footer-body {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}

.game-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.game-footer-logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-footer-logo-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.game-footer-logo-text {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #ffffff;
}

.game-footer-tagline {
    font-family: 'Manrope', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.65;
}

.game-footer-cta {
    margin-top: 8px;
}

.game-footer-col-title {
    font-family: 'Aznauri Round', sans-serif;
    font-weight: bold;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.game-footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.game-footer-link {
    font-family: 'Manrope', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--transition-fast) ease;
}

.game-footer-link:hover {
    color: var(--color-primary);
}

.game-footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.game-footer-contact-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.game-footer-contact-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.32);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.game-footer-contact-val {
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

.game-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.game-footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: background var(--transition-fast) ease,
                border-color var(--transition-fast) ease,
                color var(--transition-fast) ease;
}

.game-footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--color-primary);
}

.game-footer-social-link:hover {
    background: rgba(53, 162, 150, 0.1);
    border-color: rgba(53, 162, 150, 0.3);
    color: var(--color-primary);
}

.game-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.game-footer-copy {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.game-footer-meta {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

/* ================================================================
   АДАПТИВ
   ================================================================ */

@media (max-width: 1100px) {
    .about-wrap {
        grid-template-columns: 1fr 320px;
        gap: 50px;
    }

    .aud-wrap {
        grid-template-columns: 240px 1fr;
        gap: 60px;
    }

    .tech-wrap {
        grid-template-columns: 280px 1fr;
        gap: 60px;
    }

    .ctc-wrap {
        grid-template-columns: 210px 1fr;
        gap: 50px;
    }

    .game-footer-body {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .game-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .author-wrap {
        grid-template-columns: 1fr 260px;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .game-nav { display: none; }
    .burger-btn { display: flex; }

    /* Hero */
    .game-hero { min-height: auto; }
    .game-hero-inner { padding: 50px 0 40px; gap: 20px; }
    .game-hero-track--3,
    .game-hero-track--4 { display: none; }
    .game-hero-stats { padding: 14px 0; }
    .game-hero-stat { padding: 0 18px; }
    .game-hero-stat-val { font-size: 22px; }
    .game-hero-cta { width: 100%; }
    .btn-hero-apk,
    .btn-hero-ghost { width: 100%; justify-content: center; }

    /* About */
    .game-about { padding: 70px 0; }
    .about-wrap { grid-template-columns: 1fr; gap: 48px; }
    .about-numbers { grid-template-columns: repeat(4, 1fr); }
    .an-item { padding: 20px 14px; }
    .an-val { font-size: 34px; }

    /* Features */
    .game-features { padding: 70px 0; }
    .feat-header { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 36px; }
    .feat-count { padding-bottom: 0; }
    .feat-row { gap: 18px; }
    .feat-num { font-size: 40px; width: 50px; }

    /* Audience */
    .game-audience { padding: 70px 0; }
    .aud-wrap { grid-template-columns: 1fr; gap: 36px; }
    .aud-label-col { position: static; }
    .aud-bg-num { font-size: 160px; right: -20px; }

    /* Author */
    .game-author { padding: 70px 0; }
    .author-wrap { grid-template-columns: 1fr; gap: 44px; }
    .author-side { flex-direction: row; align-items: center; justify-content: flex-start; gap: 24px; }

    /* Download */
    .game-download { padding: 70px 0; }
    .game-download-inner { padding: 40px 24px; }
    .game-download-title { font-size: 28px; }
    .game-download-subtitle { font-size: 17px; }
    .game-download-buttons { flex-direction: column; width: 100%; }
    .btn-apk,
    .btn-apk-outline { width: 100%; justify-content: center; }

    /* Tech */
    .game-tech { padding: 70px 0; }
    .tech-wrap { grid-template-columns: 1fr; gap: 36px; }
    .tech-heading { position: static; }

    /* Contacts */
    .game-contacts { padding: 70px 0; }
    .ctc-wrap { grid-template-columns: 1fr; gap: 32px; }
    .ctc-heading { position: static; }

    /* Footer */
    .game-footer { padding: 40px 0 0; }
    .game-footer-body { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .game-footer-brand { grid-column: auto; }
    .game-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
    /* Hero stats — 2×2 сетка */
    .game-hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0;
        border: none;
        background: transparent;
        gap: 8px;
    }

    .game-hero-stat {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 14px;
    }

    .game-hero-stat-divider { display: none; }

    /* About numbers — 2×2 */
    .about-numbers { grid-template-columns: 1fr 1fr; }

    /* Features — скрыть номера */
    .feat-num { display: none; }
    .feat-row { gap: 14px; padding: 24px 0; }

    /* Audience */
    .aud-item { flex-direction: column; gap: 14px; }
    .aud-item:hover { padding-left: 0; }

    /* Author */
    .author-side { flex-direction: column; align-items: flex-start; }

    /* Tech */
    .tech-key, .tech-val { font-size: 14px; }

    /* Contacts */
    .ctc-row { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ctc-val { font-size: 15px; }
}
