@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter-r.woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter-m.woff2);
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url(../fonts/JetBrainsMono-r.woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url(../fonts/JetBrainsMono-m.woff2);
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url(../fonts/JetBrainsMono-b.woff2);
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url(../fonts/Oswald-r.woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url(../fonts/Oswald-m.woff2);
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url(../fonts/Oswald-sb.woff2);
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url(../fonts/Oswald-b.woff2);
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'icon';
    src: url(../fonts/icon.woff2);
    font-style: normal;
    font-display: swap;
}
:root {
    --main-bg: #1d1d1b;
    --header-bg: #0a0a0a73;
    --bg-1: #fff;
    --bg-2: #ee7203;
    --bg-3: #171717;
    --bg-7: #222220;
    --bg-12: #181717;
    --text-1: #fff;
    --text-2: #ee7203;
    --text-3: #1d1d1b;
    --text-4: #9d9d9c;
    --text-5: #f5f3ee;
    --text-6: #0a0a0a;
    --text-10: #8f8c85;
    --border-1: #f5f3ee;
    --border-3: rgba(245, 243, 238, 0.18);
    --border-7: rgba(245, 243, 238, 0.1);
    --shadow-1: 0 20px 60px rgba(0, 0, 0, 0.4);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    font-family: 'JetBrains Mono', sans-serif;
    color: var(--text-1);
    font-size: 18px;
    letter-spacing: 0.2px;
    font-weight: 400;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    min-height: 100dvh;
}
body {
    position: relative;
    min-height: 100dvh;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: var(--main-bg);
}
a {
    text-decoration: none;
    transition: 0.3s;
}
img {
    display: block;
    width: 100%;
    object-fit: cover;
}
input,
button {
    border-radius: 0;
    touch-action: manipulation;
    appearance: none;
}
label, button {
    cursor: pointer;
    appearance: none;
    border: none;
}
button {
    cursor: pointer;
}
textarea {
    appearance: none;
    resize: none;
    overflow: auto;
    border: none;
}
input[type="submit"] {
    border: none;
    cursor: pointer;
}
input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px var(--main-bg) !important;
    box-shadow: inset 0 0 0 50px var(--main-bg) !important;
}
input.error {
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, var(--error-text-2), var(--error-text-2), var(--error-text-2)) border-box;
}
input::placeholder, textarea::placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
}
input:focus::placeholder, textarea:focus::placeholder {
    opacity: 0; 
}
*::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}
*::-webkit-scrollbar-track {
    background: var(--main-bg);
}
*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    border: 2px solid var(--main-bg);
    background-color: var(--bg-1);
}
.wrapper {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    width: 100%;
    padding: 6px 5px;
    background: var(--bg-1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.28px;
    color: var(--text-3);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    &::before {
        content: '\e001';
        font-family: 'icon';
        display: flex;
        justify-content: center;
        align-items: center;
        width: 42px;
        min-width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--bg-2);
        font-size: 14px;
        color: var(--text-1);
        font-weight: 400;
    }
}
header {
    background: var(--header-bg);
    border-bottom: 1px solid #F5F3EE1A;
    padding: 11px 0;
    margin-bottom: 4px;
    z-index: 999;
    backdrop-filter: blur(14px);
    .wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        a.logo {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 151px;
        }
        .login {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 25px;
            border: 1px solid var(--border-1);
            border-radius: 10px;
            opacity: .53;
            font-size: 13px;
            line-height: 1;
            letter-spacing: 0%;
        }
        nav {
            .ws-menu {
                display: flex;
                align-items: center;
                gap: 37px;
                .item {
                    a {
                        font-family: 'Inter';
                        font-size: 14px;
                        font-weight: 400;
                        letter-spacing: 0%;
                    }
                }
            }
            a.mob {
                background: var(--text-2);
                font-size: 29px;
                opacity: 1;
                padding: 20px 54px;
                border-radius: 20px;
                display: none;
            }
        }
        .burger, .burger-close {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 29px;
            min-width: 29px;
            aspect-ratio: 1/1;
            gap: 4px;
            div {
                display: flex;
                width: 100%;
                justify-content: space-between;
                gap: 4px;
                span {
                    width: 7px;
                    min-width: 7px;
                    aspect-ratio: 1/1;
                    border-radius: 50%;
                    background: #D9D9D9;
                    transition: 0.3s;
                    opacity: 1;
                }
                &::before, &::after {
                    content: '';
                    width: 7px;
                    min-width: 7px;
                    aspect-ratio: 1/1;
                    border-radius: 50%;
                    background: #D9D9D9;
                    transition: 0.3s;
                    opacity: 1;
                }
                &::before {
                    right: calc(100% + 4px);
                }
                &::after {
                    left: calc(100% + 4px);
                }

            }
            
            &.burger-close {
                div:first-child, div:last-child {
                    span {
                        opacity: 0;
                    }
                }
                div:nth-child(2) {
                    &::before, &::after {
                        opacity: 0;
                    }
                }
            }
        }
        .impact-flash {
            display: none;
        }
    }
}
.cookie {
    z-index: 999;
    position: relative;
    .notification {
        position: fixed;
        bottom: 40px;
        left: 0;
        right: 0;
        background: var(--main-bg);
        border-top: 1px solid rgba(245, 243, 238, 0.1);
        .wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 16px 0;
            .left {
                display: flex;
                align-items: center;
                gap: 12px;
                &::before {
                    content: '\e001';
                    font-family: 'icon';
                    font-size: 20px;
                    color: var(--text-2);
                }
                p {
                    font-size: 14px;
                    line-height: 1.4;
                    color: var(--text-1);
                }
            }
            .right {
                display: flex;
                gap: 10px;
                flex-shrink: 0;
                button {
                    padding: 10px 20px;
                    border-radius: 10px;
                    font-size: 14px;
                    font-weight: 500;
                    letter-spacing: 0.2px;
                    transition: 0.3s;
                    cursor: pointer;
                    &[data-ws-action="open-settings"] {
                        background: transparent;
                        color: var(--text-1);
                        border: 1px solid rgba(245, 243, 238, 0.2);
                    }
                    &[data-ws-action="accept-all"] {
                        background: var(--bg-2);
                        color: var(--text-1);
                    }
                }
            }
        }
    }
    .window {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        align-items: center;
        justify-content: center;
        display: none;
        background: rgba(0, 0, 0, 0.6);
        &.show {
            display: flex;
        }
        .settings {
            width: 100%;
            max-width: 560px;
            display: none;
            border-radius: 16px;
            border: var(--border-3);
            background: var(--bg-12);
            box-shadow: var(--shadow-1);
            padding: 8px;
            margin: 20px;
            &.show {
                display: block;
            }
            .content {
                border-radius: 12px;
                border: var(--border-7);
                background: var(--bg-7);
                padding: 24px;
                position: relative;
                button[type="submit"] {
                    width: 100%;
                    margin-top: 8px;
                    margin-bottom: 12px;
                    padding: 14px 20px;
                    border-radius: 10px;
                    background: var(--bg-2);
                    color: var(--text-1);
                    font-size: 14px;
                    font-weight: 500;
                    letter-spacing: 0.2px;
                    cursor: pointer;
                    transition: 0.3s;
                }
                .close {
                    right: 20px;
                    top: 20px;
                    position: absolute;
                    width: 32px;
                    height: 32px;
                    padding: 6px;
                    background: none;
                    box-shadow: none;
                    cursor: pointer;
                    &::before {
                        content: '\e005';
                        font-family: 'icon';
                        color: var(--text-10);
                        font-size: 20px;
                        background: none;
                        position: unset;
                    }
                    &::after {
                        content: none;
                    }
                }
                .title {
                    padding-bottom: 12px;
                    border-bottom: var(--border-7);
                    margin-bottom: 16px;
                    h2 {
                        font-weight: 700;
                        font-size: 18px;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        color: var(--text-5);
                        &::before {
                            content: '\e001';
                            font-family: 'icon';
                            font-size: 20px;
                            color: var(--text-2);
                            background: none;
                            width: auto;
                            height: auto;
                        }
                    }
                    p {
                        font-size: 13px;
                        line-height: 1.5;
                        color: var(--text-10);
                        margin-top: 8px;
                    }
                }
                .variables {
                    margin-bottom: 12px;
                    &.border {
                        border-bottom: var(--border-7);
                        padding-bottom: 12px;
                    }
                    h3 {
                        font-size: 13px;
                        font-weight: 500;
                        color: var(--text-5);
                        margin-bottom: 8px;
                    }
                    > p {
                        font-size: 13px;
                        color: var(--text-10);
                        margin-bottom: 6px;
                    }
                    .variable {
                        margin-bottom: 8px;
                        display: flex;
                        gap: 20px;
                        label {
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            font-size: 13px;
                            color: var(--text-5);
                            cursor: pointer;
                        }
                    }
                }
                .links {
                    display: flex;
                    justify-content: center;
                    gap: 20px;
                    a {
                        color: var(--text-2);
                        text-decoration: underline;
                        font-size: 12px;
                    }
                }
            }
        }
    }
}
.last {
    padding: 220px 40px 155px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 120px;
    background: url(../images/last-bg.webp);
    background-size: 100% 100%;
    background-position: top left;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(245, 243, 238, 0.18);
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
    h2 {
        font-family: 'Oswald';
        font-weight: 400;
        font-size: 102px;
        line-height: 108px;
        letter-spacing: 1.02px;
        text-align: center;
        text-transform: uppercase;
        color: var(--text-5);
        max-width: 1230px;
    }
    div {
        display: flex;
        align-items: center;
        gap: 30px;
        p {
            font-weight: 700;
            font-size: 14px;
            line-height: 1;
            letter-spacing: 0.28px;
            text-decoration: underline;
            color: var(--text-1);
            white-space: nowrap;
        }
        .btn {
            width: 227px;
        }
    }
}
body.js .last {
    opacity: 0;
    transform: translateY(40px);
}
body.js .last.in {
    opacity: 1;
    transform: none;
}
body.js .last.show {
    opacity: 1;
    transform: translateY(0);
}
@keyframes cascadeCard {
    0% {
        opacity: 0;
        transform: rotateX(-180deg);
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}
.window-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    pointer-events: none;
    opacity: 0;
    transition: .3s linear;
    &.open {
        pointer-events: all;
        opacity: 1;
    }
    .window-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 1398px;
        background: var(--main-bg);
        position: relative;
        .close {
            position: absolute;
            top: 23px;
            right: -107px;
            width: 76px;
            height: 76px;
            border-radius: 50%;
            background: var(--bg-2);
        }
    }
}
footer {
    margin: 25px 0 56px;
    background: #181717;
    padding-bottom: 60px;
    .wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 84px 0px 32px;
        .left {
            display: flex;
            flex-direction: column;
            gap: 56px;
            .ws-menu {
                display: flex;
                gap: 78px;
                & > .item {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    & > p {
                        font-family: 'Oswald';
                        font-size: 18px;
                        line-height: 22px;
                        font-weight: 700;
                        color: #fff;
                        letter-spacing: -0.2px;
                        text-transform: uppercase;
                    }
                    .sub-menu {
                        display: flex;
                        flex-direction: column;
                        gap: 8px;
                        .item {
                            display: flex;
                            a {
                                font-size: 16px;
                                line-height: 19px;
                                color: #fff;
                                letter-spacing: -0.2px;
                            }
                        }
                    }
                }
            }
            nav {
                display: flex;
                align-items: center;
                gap: 190px;
                a {
                    display: flex;
                    font-size: 16px;
                    line-height: 19px;
                    letter-spacing: 0px;
                    color: #8f8c85;
                }
                .dev {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    img {
                        max-width: 110px;
                    }
                }
            }
        }
        .right {
            max-width: 591px;
            width: 100%;
            h2 {
                font-family: 'Oswald';
                font-size: 18px;
                line-height: 22px;
                font-weight: 700;
                letter-spacing: 0;
                text-transform: uppercase;
            }
            form {
                display: grid;
                grid-template-columns: 1fr 227px;
                gap: 11px;
                width: 100%;
                margin: 21px 0 20px;
                input {
                    display: flex;
                    height: 54px;
                    padding: 0 15px;
                    border: 1px solid #fff;
                    background: #1d1d1b;
                    border-radius: 10px;
                    font-size: 16px;
                    line-height: 19px;
                    color: #9d9d9c;
                    &::placeholder {
                        font-size: 16px;
                        line-height: 19px;
                        color: #9d9d9c;
                    }
                }
                button {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 10px;
                    background: var(--bg-2);
                    font-size: 18px;
                    line-height: 24px;
                    font-weight: 700;
                    text-transform: lowercase;
                    letter-spacing: 0;
                }
            }
            p {
                font-size: 16px;
                line-height: 19px;
                max-width: 520px;
                letter-spacing: 0;
                margin-bottom: 31px;
            }
            div {
                display: grid;
                grid-template-columns: repeat(2, 28px);
                gap: 6px; 
                margin-top: 15px;
                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 28px;
                    &::before {
                        font-family: 'icon';
                        font-size: 28px;
                    }
                    &.tg::before {
                        content: '\e002';
                    }
                    &.inst::before {
                        content: '\e003';
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 1759px) {
    .wrapper {
        width: calc(100% - 80px);
    }
    .last {
        border-radius: 7px;
        padding: 140px 40px 103px;
        gap: 82px;
        h2 {
            font-size: 70px;
            line-height: 73px;
            letter-spacing: 0.69px;
            max-width: 837px;
        }
        .btn {
            transition: box-shadow 0.35s ease, transform 0.35s ease;
            &:hover {
                transform: translateY(-2px);
                box-shadow: 0 10px 34px rgba(255, 107, 0, 0.35);
            }
        }
    }
    footer {
        margin: 50px 0 0;
        .wrapper {
            padding: 56px 0px 32px;
            .left {
                gap: 37px;
                .ws-menu {
                    gap: 40px;
                    & > .item {
                        gap: 11px;
                        width: 108px;
                        & > p {
                            font-size: 12px;
                            line-height: 14px;
                        }
                        .sub-menu {
                            gap: 6px;
                            .item {
                                a {
                                    font-size: 12px;
                                    line-height: 15px;
                                }
                            }
                        }
                    }
                }
                nav {
                    gap: 101px;
                    a {
                        font-size: 12px;
                        line-height: 14px;
                    }
                }
            }
            .right {
                max-width: 394px;
                h2 {
                    font-size: 12px;
                    line-height: 14px;
                }
                form {
                    grid-template-columns: 1fr 151px;
                    gap: 7px;
                    margin: 15px 0 11px;
                    input {
                        height: 36px;
                        padding: 0 10px;
                        font-size: 12px;
                        line-height: 16px;
                    }
                    button {
                        font-size: 16px;
                        line-height: 19px;
                    }
                }
                p {
                    font-size: 12px;
                    line-height: 14px;
                    max-width: 355px;
                    margin-bottom: 19px;
                }
                div {
                    grid-template-columns: repeat(2, 19px);
                    gap: 4px; 
                    margin-top: 11px;
                    a {
                        height: 19px;
                        &::before {
                            font-size: 19px;
                        }
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 1279px) {
    .wrapper {
        width: calc(100% - 64px);
    }
    header {
        position: fixed;
        margin-bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        .wrapper {
            gap: 12px;
            .logo-team {
                margin-right: auto;
                display: flex;
                align-items: center;
                position: relative;
                a.logo {
                    opacity: 1;
                    transition: 0.4s linear;
                    transform-origin: left;
                }
                .meteor {
                    position: absolute;
                    width: 40px;
                    aspect-ratio: 2 / 1;
                    background: #fff;
                    border-radius: 72% 28% 28% 72% / 53% 51% 49% 47%;
                    opacity: 0;
                    box-shadow: 
                        0 0 8px 2px #ff6b00,
                        -12px 0 12px 4px rgba(255, 107, 0, 0.6),
                        -30px 0 20px 8px rgba(255, 107, 0, 0.3),
                        -50px 0 25px 12px rgba(255, 107, 0, 0.1);
                }
                .basketball {
                    width: 30px;
                    height: 30px;
                    background: radial-gradient(circle at 30% 30%, #ff9500, #cc5200);
                    border-radius: 50%;
                    position: absolute;
                    opacity: 0;
                    box-shadow: inset -3px -3px 6px rgba(0,0,0,0.4), 0 0 6px rgba(255, 107, 0, 0.5);
                    overflow: hidden;
                    z-index: 3;
                }
                .basketball::before, .basketball::after {
                    content: ''; 
                    position: absolute;
                    border: 2px solid rgba(0,0,0,0.5);
                    border-radius: 50%;
                }
                .basketball::before { 
                    width: 100%; 
                    height: 100%; 
                    top: -50%; 
                    left: 0; 
                    border-bottom: none; 
                }
                .basketball::after { 
                    width: 100%; 
                    height: 100%; 
                    top: 0; 
                    left: -50%; 
                    border-right: none; 
                }
            }
            .impact-flash {
                display: flex;
                position: absolute;
                top: 50%;
                right: 50px;
                transform: translateY(-50%);
                width: 50px; height: 50px;
                background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,107,0,0) 70%);
                border-radius: 50%;
                opacity: 0;
                pointer-events: none;
            }
            nav {
                position: fixed;
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                overflow-y: auto;
                gap: 90px;
                top: 0;
                right: 0;
                width: 100%;
                max-width: 768px;
                height: 100vh;
                padding: 28px 33px 87px;
                transform-origin: top right;
                z-index: 100;
                background-image: url(../images/logo-menu.webp);
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center 56%;
                transition: 0.5s linear;
                transform: scale(0);
                opacity: 0;
                transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s;
                .burger-close {
                    display: flex;
                    transform: scale(0); 
                    opacity: 0; 
                }
                .ws-menu {
                    flex-direction: column;
                    align-items: flex-end;
                    gap: 68px;
                    counter-reset: my-counter;
                    z-index: 3;
                    position: relative;
                    margin-bottom: 15px;
                    .item {
                        display: flex;
                        align-items: flex-end;
                        gap: 13px;
                        opacity: 0;
                        transform: translateY(50px);
                        transition-delay: 0s;
                        &::before {
                            counter-increment: my-counter;
                            content: counter(my-counter, decimal-leading-zero);
                            color: var(--text-1);
                            font-size: 24px;
                            transition: 0.3s;
                        }
                        a {
                            font-family: Oswald;
                            align-self: flex-end;
                            font-weight: 400;
                            font-size: 60px;
                            line-height: 100%;
                            display: inline-flex;
                            align-items: center;
                            opacity: 0;
                            &::after {
                                content: '';
                                width: 0px;
                                aspect-ratio: 1/1;
                                border-radius: 50%;
                                background: var(--text-2);
                                transition: 0.3s;
                                margin-top: 15px;
                                margin-left: 0;
                                transform: scale(0);
                            }
                        }
                        &.active, &:hover {
                            a {
                                color: var(--text-2);
                                &::after {
                                    content: '';
                                    width: 16px;
                                    aspect-ratio: 1/1;
                                    border-radius: 50%;
                                    background: var(--text-2);
                                    transition: 0.3s;
                                    margin-left: 10px;
                                    transform: scale(1);
                                }
                            }
                            &::before {
                                color: var(--text-2);
                            }
                        }
                    }
                }
                a.mob {
                    display: flex;
                    z-index: 3;
                    position: relative;
                    opacity: 0;
                    transition: 0.3s linear;
                    transition-delay: 0s;
                }
            }
            .burger {
                display: flex;
                z-index: 3;
                position: relative;
            }
            &:has(.burger.open) {
                .logo-team {
                    a.logo {
                        animation: logoFade 0.4s forwards;
                        opacity: 0;
                    }
                    .meteor {
                        animation: meteorFly 2s 0.3s forwards cubic-bezier(0.5, 0, 0.75, 0);
                    }
                    .basketball {
                        animation: ballSlowMotion 2s 0.3s forwards linear;
                    }
                }
                .burger {
                    animation: burgerImpact 0.55s 1.8s forwards;
                    z-index: 1;
                }
                .impact-flash {
                    animation: flash 0.3s 1.9s forwards;
                }
                nav {
                    transform: scale(1);
                    transition-delay: 2.1s;
                    will-change: transform;
                    opacity: 1;
                    .burger-close {
                        animation: burgerShow 0.55s 2.1s forwards;
                    }
                    .ws-menu {
                        .item {
                            opacity: 1;
                            transform: translateY(0);
                            transition-delay: 2.2s;
                            transition: 0.5s linear;
                            &:first-child {
                                transition-delay: 2.3s;
                            }
                            &:nth-child(2) {
                                transition-delay: 2.4s;
                            }
                            &:nth-child(3) {
                                transition-delay: 2.5s;
                            }
                            &:nth-child(4) {
                                transition-delay: 2.6s;
                            }
                            &:nth-child(5) {
                                transition-delay: 2.7s;
                            }
                            &:nth-child(6) {
                                transition-delay: 2.8s;
                            }
                            &:nth-child(7) {
                                transition-delay: 2.9s;
                            }
                            a {
                                opacity: 1;
                            }
                        }
                    }
                    a.mob {
                        opacity: 1;
                        transition-delay: 2.1s;
                    }
                }

            }
        }
    }

    @keyframes logoFade {
        0% {
            opacity: 1;
            transform: scale(1); 
        }
        90% {
            opacity: 1;
        }
        100% { 
            opacity: 0; 
            transform: scale(0.2); 
        }
    }
    @keyframes meteorFly {
        0% { 
            opacity: 0; 
            transform: translate(0, 0) scale(0.5); 
            aspect-ratio: 2/1;
            border-radius: 72% 28% 28% 72% / 53% 51% 49% 47%;
        }
        20% {
            opacity: 1;
        }
        40% { 
            opacity: 0; 
            transform: translate(65vw, 0) scale(1);
            aspect-ratio: 1/1;
            border-radius: 50%;
        }
        50% { 
            opacity: 0; 
            transform: translate(67vw, 15px) scale(0.3); 
        }
        100% { 
            opacity: 0; 
        }
    }
    @keyframes ballSlowMotion {
        0% { 
            opacity: 0; 
            transform: translate(65vw, 0) scale(1); 
        }
        40% { 
            opacity: 0; 
            transform: translate(65vw, 0) scale(1); 
        }
        50% { 
            opacity: 1; 
            transform: translate(67vw, 15px) scale(0.3); 
        }
        60% { 
            opacity: 1; 
            transform: translate(67vw, 0) scale(1); 
        }
        70% { 
            transform: translate(72vw, 15px) scale(1) rotate(60deg); 
        }
        80% { 
            transform: translate(82vw, 5px) scale(1.05) rotate(180deg); 
            opacity: 1;  
        }
        90% { 
            transform: translate(calc(100vw - 102px), 0) scale(1.1) rotate(300deg);
            opacity: 0;  
        }
        100% { 
            transform: translate(calc(100vw - 102px), 0) scale(0.4) rotate(360deg); 
            opacity: 0;
        }
    }

    @keyframes burgerShow {
        0% { 
            transform: scale(0); 
            opacity: 0; 
        }
        100% {
            transform: scale(1); 
            opacity: 1;
        }
    }
    @keyframes burgerImpact {
        0% { 
            transform: scale(1); 
            opacity: 1; 
            filter: brightness(1); 
        }
        30% { 
            transform: scale(1.4); 
            opacity: 0.9; 
            filter: brightness(2.5) drop-shadow(0 0 8px #ff6b00); 
        }
        50% { 
            transform: scale(0); 
            opacity: 0; 
        }
        100% { 
            transform: scale(0); 
            opacity: 0; 
            pointer-events: none;
        }
    }

    @keyframes flash {
        0% { 
            opacity: 0; 
            transform: translate(50%, -50%) scale(0.5); 
        }
        30% { 
            opacity: 1; 
            transform: translate(50%, -50%) scale(1.2); 
        }
        100% { 
            opacity: 0; 
            transform: translate(50%, -50%) scale(2); 
        }
    }

    @keyframes not-show {
        0% {
            transform: translateY(0) translateX(0) scale(1);
            border-radius: 0;
        }
        100% {
            transform: translateY(-1000px) translateX(500px) scale(0);
            border-radius: 999px;
        }
    }
    .last {
        padding: 103px 20px 73px;
        margin-bottom: 25px;
        gap: 70px;
        h2 {
            font-size: 64px;
            line-height: 73px;
        }
    }
    footer {
        margin: 25px 0 56px;
        background: #181717;
        .wrapper {
            flex-direction: column-reverse;
            padding: 41px 0px 68px;
            gap: 102px;
            .left {
                gap: 54px;
                width: 100%;
                .ws-menu {
                    gap: 40px;
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    width: 100%;
                    & > .item {
                        gap: 25px;
                        width: auto;
                        & > p {
                            font-size: 28px;
                            line-height: 34px;
                        }
                        .sub-menu {
                            gap: 15px;
                            .item {
                                a {
                                    font-size: 24px;
                                    line-height: 29px;
                                }
                            }
                        }
                    }
                }
                nav {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 0px;
                    a {
                        font-size: 18px;
                        line-height: 22px;
                    }
                    .dev {
                        margin-top: 50px;
                        grid-column: 1/-1;
                    }
                }
            }
            .right {
                display: grid;
                grid-template-columns: 1fr 1fr;
                max-width: 100%;
                h2 {
                    font-size: 28px;
                    line-height: 34px;
                    margin-top: 16px;
                    &:first-child {
                        font-size: 20px;
                        line-height: 24px;
                        margin-top: 0;
                        grid-column: 1/-1;
                    }
                }
                form {
                    grid-column: 1/-1;
                    grid-template-columns: 1fr 323px;
                    gap: 11px;
                    margin: 21px 0 32px;
                    input {
                        height: 56px;
                        padding: 0 15px;
                        font-size: 16px;
                        line-height: 19px;
                        color: #9d9d9c;
                        &::placeholder {
                            font-size: 16px;
                            line-height: 19px;
                        }
                    }
                    button {
                        font-size: 20px;
                        line-height: 26px;
                    }
                }
                p {
                    font-size: 20px;
                    line-height: 24px;
                    max-width: 100%;
                    margin-bottom: 20px;
                    grid-column: 1/-1;
                }
                div {
                    grid-template-columns: repeat(2, 66px);
                    gap: 26px; 
                    margin-top: 0px;
                    margin-left: auto;
                    a {
                        height: 66px;
                        &::before {
                            font-size: 66px;
                        }
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 767px) {
    .wrapper {
        width: calc(100% - 32px);
    }
    .btn {
        gap: 7px;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 0.14px;
        padding: 4px;
        &::before {
            width: 25px;
            min-width: 25px;
            height: 25px;
            font-size: 12px;
        }
    }
    header {
        padding: 12px 0;
        .wrapper {
            .logo-team {
                .meteor {
                    width: 40px;
                }
                .basketball {
                    /* width: 26px;
                    height: 26px; */
                }
            }
            a.logo {
                max-width: 100px;
            }
            nav {
                padding: 15px 16px 74px;
                gap: 52px;
                .ws-menu {
                    gap: 33px;
                    margin-bottom: 0;
                    .item {
                        gap: 8px;
                        &::before {
                            font-size: 12px;
                        }
                        a {
                            font-size: 30px;
                            &::after {
                                margin-top: 5px;

                            }
                        }
                        &.active, &:hover {
                            a {
                                &::after {
                                    width: 8px;
                                    margin-left: 6px;
                                }
                            }
                        }
                    }
                }
                .login.mob {
                    font-size: 14px;
                    padding: 10px 26px;
                    border-radius: 10px;
                }
            }
            >.login {
                display: none;
            }
            .impact-flash {
                width: 40px;
                height: 40px;
                right: 40px;
            }
            &:has(.burger.open) {
                .logo-team {
                    .basketball {
                        animation-duration: 1.5s;
                    }
                    .meteor {
                        animation-duration: 1.5s;
                    }
                }
                nav {
                    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.6s, opacity 0.7s 1.6s;
                    .burger-close {
                        animation-delay: 1.6s;
                        animation-duration: 0.3s;
                    }
                    .ws-menu {
                        .item {
                            &:first-child {
                                transition-delay: 1.6s;
                            }
                            &:nth-child(2) {
                                transition-delay: 1.7s;
                            }
                            &:nth-child(3) {
                                transition-delay: 1.8s;
                            }
                            &:nth-child(4) {
                                transition-delay: 1.9s;
                            }
                            &:nth-child(5) {
                                transition-delay: 2s;
                            }
                            &:nth-child(6) {
                                transition-delay: 2.1s;
                            }
                            &:nth-child(7) {
                                transition-delay: 2.2s;
                            }
                            &:nth-child(8) {
                                transition-delay: 2.3s;
                            }
                        }
                    }
                }
                .burger {
                    animation: burgerImpact 0.55s 1.4s forwards;
                }
                .impact-flash {
                    animation: flash 0.3s 1.5s forwards;
                }
            }
        }
        
    }
    
    @keyframes meteorFly {
        0% { 
            opacity: 0; 
            transform: translate(0, 0) scale(0.5); 
            aspect-ratio: 2/1;
            border-radius: 72% 28% 28% 72% / 53% 51% 49% 47%;
        }
        20% {
            opacity: 1;
        }
        40% { 
            opacity: 0; 
            transform: translate(45vw, 0) scale(1); 
            aspect-ratio: 1/1;
            border-radius: 50%;
        }
        50% { 
            opacity: 0; 
            transform: translate(47vw, 15px) scale(0.3); 
        }
        100% { 
            opacity: 0; 
        }
    }
    @keyframes ballSlowMotion {
        0% { 
            opacity: 0; 
            transform: translate(45vw, 0) scale(0); 
        }
        40% { 
            opacity: 0; 
            transform: translate(45vw, 0) scale(1); 
        }
        50% { 
            opacity: 1; 
            transform: translate(47vw, 15px) scale(0.3); 
        }
        60% { 
            opacity: 1; 
            transform: translate(47vw, 0) scale(1); 
        }
        70% { 
            transform: translate(62vw, 15px) scale(1) rotate(30deg); 
        }
        80% { 
            transform: translate(72vw, 5px) scale(1.05) rotate(100deg); 
            opacity: 1; 
        }
        90% { 
            transform: translate(calc(100vw - 60px), 0) scale(1.1) rotate(150deg); 
            opacity: 0; 
        }
        100% { 
            transform: translate(calc(100vw - 60px), 0) scale(0.4) rotate(180deg); 
            opacity: 0;
        }
    }
    @keyframes burgerImpact {
        0% { 
            transform: scale(1); 
            opacity: 1; 
            filter: brightness(1); 
        }
        30% { 
            transform: scale(1.2); 
            opacity: 0.9; 
            filter: brightness(2.5) drop-shadow(0 0 8px #ff6b00); 
        }
        50% { 
            transform: scale(0); 
            opacity: 0; 
        }
        100% { 
            transform: scale(0); 
            opacity: 0; 
        }
    }
    .last {
        margin-bottom: 0;
        padding: 45px 10px 26px;
        gap: 35px;
        h2 {
            font-size: 30px;
            line-height: 36px;
            letter-spacing: 0.34px;
            max-width: 345px;
        }
        div {
            flex-direction: column-reverse;
            gap: 20px;
            p {
                font-size: 12px;
            }
            .btn {
                font-size: 12px;
                padding: 3px 34px 3px 3px;
                justify-content: space-between;
                width: 200px;
                &::before {
                    width: 20px;
                    min-width: 20px;
                    height: 20px;
                    font-size: 7px;
                    font-weight: 400;
                }
            }
        }
    }
    footer {
        margin: 18px 0 25px;
        .wrapper {
            padding: 19px 0px 23px;
            gap: 40px;
            .left {
                gap: 19px;
                .ws-menu {
                    gap: 20px;
                    & > .item {
                        gap: 12px;
                        & > p {
                            font-size: 14px;
                            line-height: 17px;
                        }
                        .sub-menu {
                            gap: 7px;
                            .item {
                                a {
                                    font-size: 12px;
                                    line-height: 14px;
                                }
                            }
                        }
                    }
                }
                nav {
                    a {
                        font-size: 12px;
                        line-height: 14px;
                    }
                }
            }
            .right {
                h2 {
                    font-size: 14px;
                    line-height: 17px;
                    margin-top: 7px;
                    &:first-child {
                        font-size: 12px;
                        line-height: 14px;
                    }
                }
                form {
                    grid-template-columns: 1fr;
                    gap: 6px;
                    margin: 21px 0 20px;
                    input {
                        height: 35px;
                        padding: 0 10px;
                        font-size: 16px;
                        line-height: 19px;
                        &::placeholder {
                            font-size: 16px;
                            line-height: 19px;
                        }
                    }
                    button {
                        font-size: 16px;
                        line-height: 20px;
                        height: 36px;
                    }
                }
                p {
                    font-size: 12px;
                    line-height: 14px;
                    max-width: 303px;
                    margin-bottom: 11px;
                }
                div {
                    grid-template-columns: repeat(2, 31px);
                    gap: 13px; 
                    a {
                        height: 31px;
                        &::before {
                            font-size: 31px;
                        }
                    }
                }
            }
        }
    }
    .cookie {
        .notification {
            bottom: 20px;
            .wrapper {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                padding: 12px 0;
                .left {
                    gap: 10px;
                    &::before {
                        font-size: 20px;
                    }
                    p {
                        font-size: 13px;
                    }
                }
                .right {
                    gap: 8px;
                    button {
                        flex: 1;
                        padding: 10px 16px;
                        font-size: 13px;
                        text-align: center;
                    }
                }
            }
        }
        .window {
            .settings {
                margin: 10px;
                .content {
                    padding: 20px 16px;
                    .close {
                        right: 12px;
                        top: 12px;
                    }
                    .title {
                        h2 {
                            font-size: 16px;
                            &::before {
                                font-size: 18px;
                            }
                        }
                        p {
                            font-size: 12px;
                        }
                    }
                    .variables {
                        h3 {
                            font-size: 12px;
                        }
                        > p {
                            font-size: 12px;
                        }
                        .variable {
                            gap: 16px;
                            label {
                                font-size: 12px;
                            }
                        }
                    }
                    button[type="submit"] {
                        padding: 12px 16px;
                        font-size: 13px;
                    }
                }
            }
        }
    }
}
@media (hover: hover) {
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 34px rgba(255, 107, 0, 0.35);
    }
    .cookie {
        .notification {
            .right {
                button {
                    &[data-ws-action="open-settings"]:hover {
                        background: rgba(245, 243, 238, 0.05);
                        border-color: rgba(245, 243, 238, 0.3);
                    }
                    &[data-ws-action="accept-all"]:hover {
                        opacity: 0.85;
                    }
                }
            }
        }
        .window {
            .content {
                button[type="submit"]:hover {
                    opacity: 0.85;
                }
                .close:hover {
                    &::before {
                        color: var(--text-5);
                    }
                }
            }
        }
    }
    header {
        .wrapper {
            nav {
                .ws-menu {
                    .item:hover {
                        a {
                            color: var(--text-2);
                        }
                        &::before {
                            color: var(--text-2);
                        }
                    }
                }
            }
            >.login:hover {
                border-color: var(--text-2);
                color: var(--text-2);
            }
        }
    }
}
@media (prefers-reduced-motion: reduce) {
    .logo-team .meteor,
    .logo-team .basketball,
    .impact-flash {
        animation: none !important;
        opacity: 0 !important;
    }
    .last {
        transition: none;
    }
}