

/* Start:/local/templates/scriptx/template_styles.css?178722560220903*/
/* ScriptX — dark techno template
   ------------------------------------------------ */

:root {
    --bg: #07080d;
    --bg-soft: #0d0f18;
    --surface: rgba(255, 255, 255, .03);
    --surface-2: rgba(255, 255, 255, .06);
    --line: rgba(255, 255, 255, .09);
    --text: #e8ecf6;
    --muted: #8e97ad;
    --accent: #35e0f2;
    --accent-2: #7c5cff;
    --accent-3: #ff4d8d;
    --radius: 18px;
    --maxw: 1180px;
    --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(620px 420px at 12% -5%, rgba(124, 92, 255, .28), transparent 70%),
        radial-gradient(560px 380px at 92% 4%, rgba(53, 224, 242, .18), transparent 70%),
        linear-gradient(180deg, #0a0c14 0%, var(--bg) 40%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .35;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 60%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 60%);
}

.sx-page { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }

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

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- header ---------- */

.sx-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(7, 8, 13, .72);
    border-bottom: 1px solid var(--line);
}

.sx-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 72px;
}

.sx-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.02em;
}

.sx-logo__mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 800;
    color: #05060a;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 22px rgba(53, 224, 242, .35);
}

.sx-logo__mark span { transform: skewX(-8deg); }

.sx-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.sx-nav a {
    color: var(--muted);
    font-size: 15px;
    font-weight: 500;
    transition: color .2s ease;
}

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

.sx-burger {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

/* ---------- buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .2s ease, border-color .2s ease;
    font-family: inherit;
}

.btn--primary {
    color: #05060a;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 10px 30px rgba(76, 140, 255, .28);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(76, 140, 255, .4); }

.btn--ghost {
    color: var(--text);
    background: var(--surface);
    border-color: var(--line);
}

.btn--ghost:hover { border-color: rgba(53, 224, 242, .55); background: var(--surface-2); }

.btn--sm { padding: 10px 18px; font-size: 14px; }

/* ---------- section basics ---------- */

.section { padding: 96px 0; }

.section--tight { padding: 72px 0; }

.section__head { max-width: 720px; margin-bottom: 44px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

h1, h2, h3 { margin: 0 0 14px; letter-spacing: -.03em; line-height: 1.12; font-weight: 800; }

h1 { font-size: clamp(34px, 5.4vw, 60px); }

h2 { font-size: clamp(28px, 3.6vw, 42px); }

h3 { font-size: 19px; letter-spacing: -.01em; }

.lead { color: var(--muted); font-size: 18px; margin: 0; }

/* ---------- hero ---------- */

.hero { padding: 92px 0 72px; }

.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

.hero h1 span {
    background: linear-gradient(120deg, var(--accent), var(--accent-2) 55%, var(--accent-3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__text { color: var(--muted); font-size: 18px; max-width: 540px; margin: 0 0 30px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.stats { display: flex; flex-wrap: wrap; gap: 36px; }

.stats__num {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.03em;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stats__label { color: var(--muted); font-size: 14px; }

/* hero visual */

.hero__visual { position: relative; }

.device {
    position: relative;
    margin: 0 auto;
    width: 260px;
    height: 520px;
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(160deg, #141827, #0a0c14);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .6), inset 0 0 0 6px rgba(255, 255, 255, .03);
    padding: 14px;
    animation: float 6s ease-in-out infinite;
}

.device__screen {
    height: 100%;
    border-radius: 26px;
    background:
        radial-gradient(200px 140px at 70% 10%, rgba(124, 92, 255, .5), transparent 70%),
        radial-gradient(180px 160px at 20% 80%, rgba(53, 224, 242, .35), transparent 70%),
        #0b0e19;
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.device__bar { height: 8px; border-radius: 999px; background: rgba(255, 255, 255, .12); }
.device__bar--w60 { width: 60%; }
.device__bar--w40 { width: 40%; }
.device__bar--accent { background: linear-gradient(90deg, var(--accent), var(--accent-2)); width: 75%; }

.device__card {
    margin-top: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
    padding: 14px;
    font-size: 13px;
    color: var(--muted);
}

.device__card b { display: block; color: var(--text); font-size: 15px; margin-bottom: 4px; }

.chip {
    position: absolute;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(13, 15, 24, .9);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}

.chip--1 { top: 44px; left: 0; color: var(--accent); animation: float 5s ease-in-out infinite; }
.chip--2 { bottom: 120px; right: 0; color: var(--accent-2); animation: float 7s ease-in-out infinite .6s; }
.chip--3 { bottom: 34px; left: 12px; color: var(--accent-3); animation: float 6.4s ease-in-out infinite .3s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ---------- cards grid ---------- */

.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(53, 224, 242, .35);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .45);
}

.card p { color: var(--muted); margin: 0; font-size: 15px; }

.card__icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(53, 224, 242, .2), rgba(124, 92, 255, .2));
    border: 1px solid var(--line);
    font-size: 22px;
}

.card__list { margin: 16px 0 0; padding: 0; list-style: none; }

.card__list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    margin-top: 6px;
}

.card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ---------- process ---------- */

.step { padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }

.step__num {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--accent);
    margin-bottom: 12px;
}

.step p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- stack ---------- */

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

.tag {
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    transition: color .2s ease, border-color .2s ease;
}

.tag:hover { color: var(--text); border-color: rgba(124, 92, 255, .5); }

/* ---------- игра ---------- */

.game {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    margin-bottom: 22px;
}

.game__cover {
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    border-right: 1px solid var(--line);
    background:
        radial-gradient(240px 200px at 30% 25%, rgba(124, 92, 255, .55), transparent 70%),
        radial-gradient(260px 220px at 75% 80%, rgba(53, 224, 242, .4), transparent 70%),
        linear-gradient(160deg, #14172a, #080a12);
    overflow: hidden;
}

.game__cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(53, 224, 242, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 77, 141, .1) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(0deg, #000, transparent 75%);
    -webkit-mask-image: linear-gradient(0deg, #000, transparent 75%);
}

.game__cover__inner { position: relative; z-index: 2; text-align: center; padding: 32px; }

.game__icon {
    position: relative;
    z-index: 2;
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
}

.game__tagline {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    padding: 0 30px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.game__logo {
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 800;
    font-size: 38px;
    line-height: 1;
    letter-spacing: .06em;
    color: #fff;
    text-shadow: 0 0 22px rgba(53, 224, 242, .9), 0 0 46px rgba(124, 92, 255, .6);
}

.game__logo span {
    color: var(--accent-3);
    text-shadow: 0 0 22px rgba(255, 77, 141, .9);
    letter-spacing: .14em;
}

.game__body { padding: 34px; }

.game__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.game__title { font-size: 30px; margin-bottom: 12px; }

.game__text { color: var(--muted); margin: 0 0 18px; font-size: 16px; }

.game__features { list-style: none; margin: 0 0 26px; padding: 0; }

.game__features li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 8px;
}

.game__features li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 14px;
}

.game__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* характеристики игры */

.specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 26px;
}

.spec {
    padding: 20px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
}

.spec__num {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 6px;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.spec__label { color: var(--muted); font-size: 14px; line-height: 1.45; }

/* галерея скриншотов */

.screens {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}

.screen { margin: 0; }

.screen img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #0a0d18;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
    transition: transform .22s ease, border-color .22s ease;
}

.screen img:hover { transform: translateY(-4px); border-color: rgba(53, 224, 242, .45); }

.screen figcaption {
    margin-top: 10px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

/* блок «в разработке» */

.soon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px 32px;
    border-radius: var(--radius);
    border: 1px dashed rgba(255, 255, 255, .18);
    background: var(--surface);
}

.soon h3 { margin-bottom: 6px; }

.soon p { color: var(--muted); margin: 0; font-size: 15px; }

.soon__label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 8px;
}

.soon__badge {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

/* неоновый экран в hero */

.device__screen--shot { padding: 0; }

.device__screen--shot img { width: 100%; height: 100%; object-fit: cover; border-radius: 26px; }

.device__screen--neon { padding: 18px 16px; }

.neon-hud {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--accent);
    text-shadow: 0 0 12px rgba(53, 224, 242, .8);
}

.neon-road {
    position: relative;
    flex: 1;
    margin: 14px 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(124, 92, 255, .18), rgba(8, 10, 18, .9));
}

.neon-road__line {
    position: absolute;
    left: 50%;
    width: 4px;
    height: 34px;
    margin-left: -2px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--accent), transparent);
    opacity: .8;
    animation: road 1.6s linear infinite;
}

.neon-road__line:nth-child(2) { animation-delay: .53s; }
.neon-road__line:nth-child(3) { animation-delay: 1.06s; }

@keyframes road {
    from { top: -40px; transform: scaleY(.6); opacity: .3; }
    to { top: 100%; transform: scaleY(1.4); opacity: 0; }
}

.neon-runner {
    position: absolute;
    left: 50%;
    bottom: 26px;
    width: 26px;
    height: 26px;
    margin-left: -13px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
    box-shadow: 0 0 22px rgba(255, 77, 141, .8);
    animation: hop 1.1s ease-in-out infinite;
}

@keyframes hop {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(-12deg); }
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .92em;
    padding: 1px 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .07);
    color: var(--accent);
}

/* ---------- контакты ---------- */

.cta {
    position: relative;
    padding: 52px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background:
        radial-gradient(600px 260px at 15% 0%, rgba(124, 92, 255, .28), transparent 70%),
        radial-gradient(500px 240px at 95% 100%, rgba(53, 224, 242, .2), transparent 70%),
        var(--bg-soft);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.cta { align-items: center; }

.contacts { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }

.contacts li {
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    transition: border-color .2s ease, transform .2s ease;
}

.contacts li:hover { border-color: rgba(53, 224, 242, .45); transform: translateY(-2px); }

.contacts__label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.contacts a { font-size: 17px; font-weight: 700; }

.contacts a:hover { color: var(--accent); }

/* ---------- footer ---------- */

.sx-footer {
    border-top: 1px solid var(--line);
    padding: 48px 0 36px;
    margin-top: 24px;
    background: rgba(9, 10, 17, .7);
}

.sx-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 34px;
}

.sx-footer p { color: var(--muted); font-size: 15px; margin: 14px 0 0; max-width: 320px; }

.sx-footer h4 { margin: 0 0 14px; font-size: 15px; font-weight: 700; }

.sx-footer ul { list-style: none; margin: 0; padding: 0; }

.sx-footer li { margin-bottom: 8px; }

.sx-footer li a { color: var(--muted); font-size: 15px; }

.sx-footer li a:hover { color: var(--accent); }

.sx-footer__bottom {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
    flex-wrap: wrap;
}

/* ---------- reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- adaptive ---------- */

@media (max-width: 980px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__visual { display: none; }
    .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .cta { grid-template-columns: 1fr; padding: 34px; }
    .game { grid-template-columns: 1fr; }
    .specs { grid-template-columns: repeat(2, 1fr); }
    .screens { grid-template-columns: repeat(3, 1fr); }
    .game__cover { min-height: 240px; border-right: none; border-bottom: 1px solid var(--line); }
    .sx-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .section { padding: 64px 0; }
    .hero { padding: 56px 0 40px; }
    .sx-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 24px 18px;
        background: rgba(7, 8, 13, .98);
        border-bottom: 1px solid var(--line);
        display: none;
    }
    .sx-nav.is-open { display: flex; }
    .sx-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .sx-nav .btn { margin-top: 12px; }
    .sx-burger { display: block; }
    .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
    .game__body { padding: 26px 22px; }
    .game__title { font-size: 25px; }
    .soon { padding: 24px; }
    .specs { grid-template-columns: 1fr; }
    .screens { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .stats__num { font-size: 24px; }
    .sx-footer__grid { grid-template-columns: 1fr; }
    .stats { gap: 24px; }
}

/* End */
/* /local/templates/scriptx/template_styles.css?178722560220903 */
