html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #000;
}

body * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    display: block;
    font-family: "Roboto", sans-serif;
}

body.webp {
    background: #0F0F0F;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Roboto", sans-serif;
}


body.lock {
    overflow-y: hidden;
}

* img {
    pointer-events: none;
    user-select: none;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: inherit;
}

::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 8px;
    height: 0;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: linear-gradient(225deg, #8290FF 0%, #D1ADFF 37.81%, #8290FF 100%);
}

.global__wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

body.webp .global__wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    row-gap: 120px; /* можешь изменить отступы, если нужно */
}

.container {
    max-width: 1360px;
    padding: 0 40px;
    margin: 0 auto;
}

.subtitle {
    color: #82CFFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.title {
    color: #FFF;
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 69px;
}

.title .title-focus {
    width: fit-content;
    height: fit-content;
    background: linear-gradient(225deg, #D1ADFF 0%, #8290FF 37.81%, #D1ADFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: #797E86;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.link {
    padding: 18px 32px;
    border-radius: 100px;
    background: linear-gradient(225deg, #D1ADFF 0%, #8290FF 37.81%, #D1ADFF 100%);
    width: fit-content;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.link span {
    color: #FFF;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    z-index: 2;
}

.link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, #8290FF 0%, #D1ADFF 37.81%, #8290FF 100%);
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.link:hover::before {
    opacity: 1;
}

.animate {
   
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.tools,
.trading,
.crypto,
.questions,
.banner {
    position: relative;
    z-index: 2;
}

@media (max-width: 1000px) {
    .subtitle {
        margin-bottom: 24px !important;
    }

    .title {
        font-size: 50px !important;
        line-height: 110% !important;
        margin-bottom: 24px !important;
    }

    .description {
        margin-bottom: 24px !important;
    }
}

@media (max-width: 850px) {
    .title {
        font-size: 42px !important;
    }

    .global__wrapper {
        row-gap: 80px;
    }
}

@media (max-width: 800px) {
    .description {
        font-size: 16px !important;
        line-height: 110% !important;
    }
}

@media (max-width: 550px) {
    .container {
        padding: 0 16px !important;
    }

    .subtitle {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }

    .title {
        font-size: 30px !important;
        margin-bottom: 15px !important;
    }

    .description {
        font-size: 14px !important;
        line-height: 140% !important;
    }

    .link {
        padding: 12px 19px;
    }

    .link span {
        font-size: 14px;
    }
}
