:root {
    --background: #070b14;
    --background-secondary: #0c1220;
    --surface: #111827;
    --surface-hover: #172033;

    --text: #f4f7fb;
    --text-secondary: #9ba7b8;

    --accent: #4ea1ff;
    --accent-light: #82c1ff;

    --border: rgba(255, 255, 255, 0.08);

    --header-height: 76px;

    --content-width: 1180px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    background:
        radial-gradient(
            circle at top,
            #111c31 0,
            var(--background) 45%
        );

    color: var(--text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;
}


a {
    color: inherit;
}


.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: var(--header-height);

    z-index: 1000;

    background: rgba(7, 11, 20, 0.78);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}


.navbar {
    max-width: var(--content-width);

    height: 100%;

    margin: auto;

    padding: 0 28px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.brand {
    min-width: 180px;
    min-height: 48px;

    display: flex;

    align-items: center;

    text-decoration: none;
}


.brand-logo {
    display: block;

    max-width: 180px;
    max-height: 46px;

    width: auto;
    height: auto;

    object-fit: contain;
}


.brand-name {
    display: none;

    font-size: 1.2rem;
    font-weight: 700;

    letter-spacing: 0.02em;
}


.nav-links {
    display: flex;

    align-items: center;

    gap: 36px;
}


.nav-links a {
    position: relative;

    color: var(--text-secondary);

    font-size: 0.95rem;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.25s ease;
}


.nav-links a:hover {
    color: var(--text);
}


.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition:
        width 0.25s ease;
}


.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


.nav-links a.active {
    color: var(--text);
}


.menu-toggle {
    display: none;

    width: 36px;
    height: 36px;

    background: none;

    border: 0;

    cursor: pointer;
}


.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: var(--text);

    transition: 0.25s ease;
}


.hero {
    position: relative;

    min-height: 92vh;

    padding:
        calc(var(--header-height) + 80px)
        28px
        80px;

    display: flex;

    align-items: center;

    overflow: hidden;
}


.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: var(--content-width);

    margin: auto;
}


.hero-eyebrow,
.section-label {
    margin-bottom: 18px;

    color: var(--accent-light);

    font-size: 0.8rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.16em;
}


.hero h1 {
    max-width: 900px;

    font-size:
        clamp(
            3rem,
            7vw,
            6.5rem
        );

    line-height: 0.98;

    letter-spacing: -0.045em;
}


.hero h1 span {
    display: block;

    color: var(--text-secondary);
}


.hero-description {
    max-width: 630px;

    margin-top: 34px;

    color: var(--text-secondary);

    font-size: 1.2rem;
}


.hero-actions {
    margin-top: 42px;

    display: flex;

    gap: 16px;

    flex-wrap: wrap;
}


.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 10px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border 0.2s ease;
}


.button:hover {
    transform: translateY(-2px);
}


.button-primary {
    background: var(--accent);

    color: white;
}


.button-primary:hover {
    background: #65adff;
}


.button-secondary {
    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.03);
}


.button-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
}


.hero-background {
    position: absolute;

    inset: 0;

    pointer-events: none;
}


.data-line {
    position: absolute;

    height: 1px;

    width: 45vw;

    opacity: 0.15;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--accent),
            transparent
        );

    animation:
        dataFlow 9s linear infinite;
}


.data-line-1 {
    top: 30%;
    left: -10%;
}


.data-line-2 {
    top: 55%;
    left: 35%;

    animation-delay: -3s;
}


.data-line-3 {
    top: 74%;
    left: 5%;

    animation-delay: -6s;
}


@keyframes dataFlow {
    0% {
        transform: translateX(-20%);
    }

    50% {
        transform: translateX(40%);
    }

    100% {
        transform: translateX(-20%);
    }
}


.section {
    padding: 120px 28px;
}


.section-content {
    max-width: 760px;

    margin: auto;
}


.section h2 {
    margin-bottom: 26px;

    font-size:
        clamp(
            2.4rem,
            5vw,
            4rem
        );

    line-height: 1.1;

    letter-spacing: -0.03em;
}


.section-text {
    margin-top: 18px;

    color: var(--text-secondary);

    font-size: 1.1rem;
}


.game-highlight {
    max-width: var(--content-width);

    margin: auto;
}


.game-card {
    position: relative;

    overflow: hidden;

    min-height: 420px;

    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    border: 1px solid var(--border);

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(78, 161, 255, 0.11),
            rgba(255, 255, 255, 0.02)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}


.game-card:hover {
    transform: translateY(-5px);

    border-color: rgba(78, 161, 255, 0.4);
}


.game-card-content {
    padding: 64px;
}


.game-card-content p:not(.section-label) {
    max-width: 600px;

    margin-bottom: 28px;

    color: var(--text-secondary);

    font-size: 1.1rem;
}


.text-link {
    color: var(--accent-light);

    font-weight: 600;

    text-decoration: none;
}


.game-card-visual {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 30px;

    background:
        radial-gradient(
            circle,
            rgba(78, 161, 255, 0.18),
            transparent 65%
        );
}


.download-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 120px;
    height: 120px;

    border-radius: 28px;

    background: rgba(78, 161, 255, 0.12);

    color: var(--accent-light);

    font-size: 4rem;

    animation:
        downloadPulse 2.5s ease-in-out infinite;
}


@keyframes downloadPulse {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}


.speed-display {
    text-align: center;
}


.speed-display span {
    display: block;

    color: var(--text-secondary);

    font-size: 0.85rem;
}


.speed-display strong {
    display: block;

    margin-top: 5px;

    font-size: 1.4rem;
}


.site-footer {
    margin-top: 60px;

    border-top: 1px solid var(--border);
}


.footer-content {
    max-width: var(--content-width);

    margin: auto;

    padding: 34px 28px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: var(--text-secondary);

    font-size: 0.9rem;
}


.footer-links {
    display: flex;

    gap: 24px;
}


.footer-links a {
    text-decoration: none;
}


.footer-links a:hover {
    color: var(--text);
}


.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


@media (max-width: 800px) {

    .menu-toggle {
        display: block;
    }


    .nav-links {
        position: absolute;

        top: var(--header-height);
        left: 0;

        width: 100%;

        padding: 24px 28px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 24px;

        background: rgba(7, 11, 20, 0.97);

        border-bottom: 1px solid var(--border);
    }


    .nav-links.open {
        display: flex;
    }


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


    .game-card-content {
        padding: 42px 30px;
    }


    .game-card-visual {
        min-height: 300px;
    }


    .footer-content {
        gap: 20px;

        flex-direction: column;

        align-items: flex-start;
    }

}


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

    * {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}

.game-hero {
    position: relative;

    min-height: 82vh;

    padding:
        calc(var(--header-height) + 90px)
        28px
        90px;

    display: flex;

    align-items: center;

    overflow: hidden;
}


.game-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: var(--content-width);

    margin: auto;
}


.game-hero h1 {
    font-size:
        clamp(
            4rem,
            10vw,
            8rem
        );

    line-height: 0.95;

    letter-spacing: -0.055em;
}


.game-hero-tagline {
    margin-top: 20px;

    color: var(--accent-light);

    font-size:
        clamp(
            1.4rem,
            3vw,
            2rem
        );

    font-weight: 600;
}


.features-section {
    max-width: var(--content-width);

    margin: auto;

    padding: 40px 28px 120px;
}


.features-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.feature-card {
    padding: 38px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


.feature-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(78, 161, 255, 0.35);

    background:
        rgba(78, 161, 255, 0.05);
}


.feature-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 26px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        rgba(78, 161, 255, 0.12);

    color: var(--accent-light);

    font-size: 1.8rem;
}


.feature-card h3 {
    margin-bottom: 14px;

    font-size: 1.35rem;
}


.feature-card p {
    color: var(--text-secondary);
}


.screenshots-section {
    max-width: var(--content-width);

    margin: auto;

    padding: 100px 28px 130px;
}


.screenshots-header {
    margin-bottom: 50px;

    text-align: center;
}


.screenshots-header h2 {
    font-size:
        clamp(
            2.5rem,
            5vw,
            4rem
        );

    line-height: 1.1;

    letter-spacing: -0.03em;
}


.carousel {
    position: relative;

    display: flex;

    align-items: center;

    gap: 24px;
}


.carousel-window {
    width: 100%;

    overflow: hidden;

    border-radius: 28px;
}


.carousel-track {
    display: flex;

    transition:
        transform 0.5s ease;
}


.carousel-slide {
    min-width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;
}


.carousel-slide img {
    display: block;

    width: auto;
    max-width: 100%;

    max-height: 720px;

    border-radius: 24px;

    box-shadow:
        0 35px 80px
        rgba(0, 0, 0, 0.4);
}


.carousel-button {
    flex-shrink: 0;

    width: 52px;
    height: 52px;

    border: 1px solid var(--border);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.04);

    color: var(--text);

    font-size: 2rem;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}


.carousel-button:hover {
    transform: scale(1.06);

    background:
        rgba(78, 161, 255, 0.12);

    border-color:
        rgba(78, 161, 255, 0.4);
}


.carousel-dots {
    margin-top: 28px;

    display: flex;

    justify-content: center;

    gap: 10px;
}


.carousel-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.2);

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease,
        border-radius 0.25s ease;
}


.carousel-dot.active {
    width: 26px;

    border-radius: 20px;

    background: var(--accent);
}


@media (max-width: 800px) {

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


    .game-hero {
        min-height: 75vh;
    }


    .carousel {
        gap: 8px;
    }


    .carousel-button {
        position: absolute;

        z-index: 5;

        width: 42px;
        height: 42px;

        background:
            rgba(7, 11, 20, 0.8);

        backdrop-filter: blur(10px);
    }


    .carousel-previous {
        left: 10px;
    }


    .carousel-next {
        right: 10px;
    }


    .carousel-slide {
        padding: 5px;
    }


    .carousel-slide img {
        max-height: 620px;

        border-radius: 18px;
    }

}

.privacy-page {
    min-height: 100vh;
}


.privacy-hero {
    position: relative;

    min-height: 430px;

    padding:
        calc(var(--header-height) + 100px)
        28px
        80px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    border-bottom: 1px solid var(--border);
}


.privacy-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 900px;

    margin: 0 auto;
}


.privacy-hero h1 {
    font-size:
        clamp(
            3.5rem,
            8vw,
            6rem
        );

    line-height: 1;

    letter-spacing: -0.05em;
}


.privacy-subtitle {
    margin-top: 20px;

    color: var(--text-secondary);

    font-size: 1rem;
}


.privacy-content {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 90px 28px 130px;
}


.privacy-intro {
    margin-bottom: 38px;

    font-size: 1.15rem;
}


.privacy-intro p {
    margin-bottom: 18px;

    color: var(--text-secondary);
}


.privacy-intro strong {
    color: var(--text);
}


.privacy-contact-card {
    margin: 36px 0 70px;

    padding: 26px 30px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    border: 1px solid
        rgba(78, 161, 255, 0.2);

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(78, 161, 255, 0.08),
            rgba(255, 255, 255, 0.02)
        );
}


.privacy-contact-card strong {
    margin-bottom: 7px;

    color: var(--text);

    font-size: 1.05rem;
}


.privacy-contact-card span {
    color: var(--text-secondary);
}


.privacy-content a {
    color: var(--accent-light);

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.privacy-content a:hover {
    color: var(--text);

    text-decoration: underline;
}


.privacy-section {
    position: relative;

    padding: 48px 0;

    border-top: 1px solid var(--border);
}


.privacy-section h2 {
    margin-bottom: 24px;

    color: var(--text);

    font-size:
        clamp(
            1.5rem,
            3vw,
            2rem
        );

    line-height: 1.25;

    letter-spacing: -0.02em;
}


.privacy-section h2 span {
    display: inline-block;

    min-width: 42px;

    margin-right: 12px;

    color: var(--accent);

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 0.12em;

    vertical-align: middle;
}


.privacy-section p {
    margin-top: 16px;

    color: var(--text-secondary);

    font-size: 1rem;
}


.privacy-section p:first-of-type {
    margin-top: 0;
}


.privacy-section strong {
    color: var(--text);
}


.privacy-section ul {
    margin:
        18px
        0
        20px;

    padding-left: 26px;
}


.privacy-section li {
    margin: 7px 0;

    padding-left: 6px;

    color: var(--text-secondary);
}


.privacy-section li::marker {
    color: var(--accent);
}


.privacy-section:last-child {
    padding-bottom: 0;
}


.privacy-section .privacy-contact-card {
    margin:
        26px
        0
        0;
}


@media (max-width: 800px) {

    .privacy-hero {
        min-height: 350px;

        padding:
            calc(var(--header-height) + 70px)
            24px
            55px;
    }


    .privacy-content {
        padding:
            65px
            24px
            90px;
    }


    .privacy-section {
        padding:
            38px
            0;
    }


    .privacy-section h2 {
        display: flex;

        align-items: baseline;
    }


    .privacy-section h2 span {
        min-width: 34px;

        margin-right: 8px;
    }


    .privacy-contact-card {
        padding: 22px;

        overflow-wrap: anywhere;
    }

}

.support-hero {
    position: relative;

    min-height: 500px;

    padding:
        calc(var(--header-height) + 100px)
        28px
        80px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    border-bottom: 1px solid var(--border);
}


.support-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: var(--content-width);

    margin: auto;
}


.support-hero h1 {
    max-width: 800px;

    font-size:
        clamp(
            3.5rem,
            8vw,
            6rem
        );

    line-height: 1;

    letter-spacing: -0.05em;
}


.support-section {
    max-width: var(--content-width);

    margin: auto;

    padding: 110px 28px 140px;
}


.support-layout {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 90px;

    align-items: start;
}


.support-info h2 {
    margin-bottom: 24px;

    font-size:
        clamp(
            2.4rem,
            4vw,
            3.5rem
        );

    line-height: 1.1;

    letter-spacing: -0.03em;
}


.support-info > p:not(.section-label) {
    max-width: 480px;

    color: var(--text-secondary);

    font-size: 1.05rem;
}


.support-email {
    margin-top: 38px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    color: var(--text-secondary);
}


.support-email a {
    color: var(--accent-light);

    font-weight: 600;

    text-decoration: none;
}


.support-form-container {
    padding: 38px;

    border: 1px solid var(--border);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.025);
}


.support-form {
    display: flex;

    flex-direction: column;

    gap: 24px;
}


.form-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.form-field label {
    color: var(--text);

    font-size: 0.9rem;

    font-weight: 600;
}


.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 14px 16px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    outline: none;

    background:
        rgba(255, 255, 255, 0.035);

    color: var(--text);

    font: inherit;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.form-field textarea {
    resize: vertical;

    min-height: 180px;
}


.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color:
        rgba(78, 161, 255, 0.7);

    background:
        rgba(78, 161, 255, 0.045);

    box-shadow:
        0 0 0 3px
        rgba(78, 161, 255, 0.08);
}


.support-submit {
    align-self: flex-start;

    border: 0;

    cursor: pointer;
}


.support-submit:disabled {
    opacity: 0.55;

    cursor: default;

    transform: none;
}


.website-field {
    position: absolute;

    left: -10000px;

    width: 1px;
    height: 1px;

    overflow: hidden;
}


.form-status {
    min-height: 24px;

    color: var(--text-secondary);

    font-size: 0.95rem;
}


.form-status.success {
    color: #7edc9a;
}


.form-status.error {
    color: #ff8585;
}


@media (max-width: 800px) {

    .support-hero {
        min-height: 400px;

        padding:
            calc(var(--header-height) + 70px)
            24px
            55px;
    }


    .support-section {
        padding:
            70px
            24px
            100px;
    }


    .support-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .support-form-container {
        padding: 26px 22px;
    }


    .support-submit {
        width: 100%;
    }

}