/* App */

:root {
    --text: #FFFFFF;
    --text-2: #9A9A9A;

    --background: #000000;
    --background-2: linear-gradient(180deg, rgba(69, 76, 238, 0.01) 0%, rgba(69, 76, 238, 0.07) 100%);
    --background-3: #101010;

    --width: 90%;
    --max-width: 1440px;

    --transition: 0.3s;

    --opacity: 0.8;
    --opacity-2: 0.5;

    --font-family: "SF Pro Display", sans-serif;
}

::-moz-selection {
    background: var(--text);
    color: var(--background);
}

::selection {
    background: var(--text);
    color: var(--background);
}

html,
body {
    transition: var(--transition);
    color-scheme: dark;
    scroll-behavior: smooth;
    text-rendering: optimizelegibility;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    background-color: var(--background);
    font-family: var(--font-family);
    color: var(--text);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

body {
    opacity: 0;
    -webkit-animation: load 1s 0.5s forwards ease-in-out;
    animation: load 1s 0.5s forwards ease-in-out;
}

* {
    padding: 0;
    margin: 0;
    text-wrap: balance;
}

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

a {
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a:hover,
button:hover {
    opacity: var(--opacity);
}

a:active,
button:active {
    opacity: var(--opacity-2);
}

.default-hover {
    cursor: pointer;
    transition: var(--transition);
}

.default-hover:hover {
    opacity: var(--opacity);
}

.default-hover:active {
    opacity: var(--opacity-2);
}

.link-button {
    position: relative;
    height: 60px;
    background: linear-gradient(90deg, #454CEE 0%, #7910FF 100%);
    background-image: url("/components/images/button.png");
    display: flex;
    gap: 20px;
    align-items: center;
    overflow: hidden;
    border-radius: 124px;
    box-shadow: inset 0 0 0 1px var(--background);
    width: 320px;
}

.link-button div {
    background: var(--background-2);
    background-color: var(--background-3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 25px * 2);
    padding: 32px 0;
    font-weight: 600;
    font-size: 18px;
    border-radius: 124px;
}

.link-button svg {
    color: var(--background-3);
    margin-right: 25px;
}

.link-button.alternative div {
    background: var(--background);
}

.link-button.alternative svg {
    color: var(--background);
}

.text-cover {
    background-image: url("/components/images/button.png");
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.block-title {
    text-align: center;
    margin-bottom: 50px;
}

.block-title span {
    display: block;
    background: linear-gradient(90deg, rgba(38, 26, 109, 0.5) 0%, rgba(0, 0, 0, 0.5) 49.5%, rgba(42, 26, 109, 0.5) 100%);
    border: 1px solid #FFFFFF20;
    border-radius: 124px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 500;
    color: #A7A4FF;
}

.block-title h1 {
    margin-top: 24px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
}

.block-title h2 {
    color: var(--text-2);
    margin-top: 16px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
}

/* Effects */

.opacity-true {
    transition: var(--transition);
    opacity: 1 !important;
    pointer-events: all !important;
}

.opacity-false {
    transition: var(--transition);
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Header */

header {
    position: fixed;
    z-index: 123456789123456789;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 60px;
    border-bottom: 1px solid #3F3F3F90;
    background-color: #00000090;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

header .content {
    display: flex;
    justify-content: space-between;
    width: var(--width);
    max-width: var(--max-width);
}

header .content nav {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 123456789123456789;
}

header .content nav .media-container {
    display: none;
    gap: 15px;
    align-items: center;
}

header .content nav .media-container h2 {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
}

header .content nav .link {
    cursor: pointer;
    transition: var(--transition);
}

header .content nav .link .name {
    display: flex;
    align-items: center;
    gap: 6px;
}

header .content nav .link .name h4 {
    transition: var(--transition);
    color: var(--text-2);
    font-size: 16px;
    font-weight: 500;
}

header .content nav .link .name svg {
    transition: var(--transition);
    margin-top: 4px;
    color: var(--text-2);
}

header .content nav .link:hover {
    opacity: 1;
}

header .content nav .link:hover .name h4,
header .content nav .link:hover .name svg {
    color: var(--text);
}

header .content nav .link:active {
    opacity: var(--opacity-2);
}

header .content .manage {
    display: flex;
    align-items: center;
    gap: 16px;
}

header .content .manage .media-container {
    display: none;
    gap: 8px;
    align-items: center;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

header .content .manage h4 {
    margin-right: 16px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-2);
}

header .content .manage h4 a {
    color: var(--text);
}

.header-menu {
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    position: fixed;
    z-index: 123454;
    width: 100vw;
    height: 100dvh;
    top: 0;
    left: 0;
    background-color: #00000059;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
}

.header-menu.open {
    opacity: 1;
    pointer-events: all;
}

.header-menu .background {
    cursor: pointer;
    position: fixed;
    top: 61px;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: none;
    height: calc(100dvh - 61px);
    z-index: -1;
}

.header-menu .content {
    margin: auto;
    position: relative;
    width: 100vw;
    padding-top: 80px;
    padding-bottom: 30px;
    border-bottom: 1px solid #3F3F3F;
}

.header-menu .content::before {
    content: "";
    width: 100%;
    height: calc(100% - 61px);
    position: absolute;
    top: 61px;
    left: 0;
    background-color: var(--background);
}

.header-menu .content .in {
    position: relative;
    width: var(--width);
    max-width: var(--max-width);
    display: flex;
    margin: auto;
}

.header-menu .content .in .links {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-right: 1.25px solid #3F3F3F;
    padding-right: 25px;
}

.header-menu .content .in .links .link {
    width: calc((100% - 15px * 3) / 4 - 20px * 2);
    background-color: #101010;
    padding: 15px 20px;
    border-radius: 15px;
    display: grid;
    gap: 6px;
}

.header-menu .content .in .links .link:nth-child(1),
.header-menu .content .in .links .link:nth-child(2),
.header-menu .content .in .links .link:nth-child(3) {
    width: calc((100% - 15px * 2) / 3 - 20px * 2);
}

.header-menu .content .in .links .link:hover {
    opacity: 1;
    background-color: #090909;
}

.header-menu .content .in .links .link:active {
    opacity: var(--opacity);
}

.header-menu .content .in .links .link svg {
    margin-bottom: 10px;
}

.header-menu .content .in .links .link h2 {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.header-menu .content .in .links .link h3 {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-2);
}

.header-menu .content .in .links .link svg {
    transition: var(--transition);
    fill: var(--background);
    color: #454CEE;
}

.header-menu .content .in .links .link:hover svg {
    fill: #454CEE;
    color: var(--text);
}

.header-menu .content .in .other {
    padding-left: 25px;
    width: 40%;
    display: flex;
    gap: 15px;
}

.header-menu .content .in .other .anonymous {
    background-image: url("/components/images/locks.png");
    background-size: cover;
    width: 55%;
    border-radius: 15px;
    padding: 25px 30px;
}

.header-menu .content .in .other .anonymous h2 {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
}

.header-menu .content .in .other .anonymous h3 {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-2);
}

.header-menu .content .in .other .lk {
    width: 45%;
    background-color: #101010;
    border-radius: 15px;
    padding: 20px;
}

.header-menu .content .in .other .lk img {
    width: calc(100% + 20px * 2);
    margin-left: -20px;
}

.header-menu .content .in .other .lk h2 {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.header-menu .content .in .other .lk h3 {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-2);
    margin-top: 8px;
}

.header-menu .content .in .other .lk .link-button {
    margin-top: 16px;
    width: 100%;
    height: 40px;
}

.header-menu .content .in .other .lk .link-button div {
    font-size: 12px;
}

/* Media Menu */

.media-menu {
    background-color: var(--background);
    transition: var(--transition);
    position: fixed;
    left: 0;
    z-index: 2;
    bottom: 0;
    width: calc(100vw - 20px * 2);
    height: calc(100dvh - 60px - 20px * 2 - 1px);
    overflow-y: scroll;
    color: var(--text-2);
    padding: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: grid;
    align-content: baseline;
    gap: 6px;
}

.media-menu::-webkit-scrollbar {
    display: none;
}

.media-menu .link {
    padding: 15px 20px;
    background-color: #101010;
    border-radius: 15px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.media-menu .link.last {
    margin-bottom: calc(35px + 60px * 2);
}

.media-menu .link h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--text);
}

.media-menu .link:has(.link-content) {
    display: grid;
    gap: 15px;
}

.media-menu .link .name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.media-menu .link .name div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.media-menu .link .name svg {
    transition: var(--transition);
}

.media-menu .link .link-content {
    display: none;
}

.media-menu .link.open .link-content {
    display: block;
}

.media-menu .link.open .name svg.trigger {
    transform: rotate(180deg);
}

.media-menu .link .link-content .in-link {
    display: block;
    padding: 15px 0;
    border-top: 0.5px solid #515151;
}

.media-menu .link .link-content .in-link h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.media-menu .link .link-content .in-link h4 {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-2);
    margin-top: 12px;
}

.media-menu .link-button {
    height: 60px;
    position: fixed;
    width: var(--width);
    margin: auto;
    bottom: 35px;
    left: 0;
    right: 0;
}

.media-menu .link-button div {
    font-size: 18px !important;
}

/* Content */

.app {
    margin-top: 100px;
    width: 100%;
}

.app .block {
    width: var(--width);
    max-width: var(--max-width);
    margin: auto;
    scroll-margin-top: calc(60px + 50px);
}

.app .title-block .name {
    display: flex;
    justify-content: space-between;
}

.app .title-block .name h1 {
    font-size: 48px;
    font-weight: 500;
}

.app .title-block .mansory {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.app .title-block .mansory .item {
    background: var(--background-2);
    background-color: var(--background-3);
    border-radius: 40px;
    padding: 35px 50px;
}

.app .title-block .mansory .item.big {
    width: calc(100% / 3 * 2);
}

.app .title-block .mansory .item.big .in-title {
    position: relative;
    display: grid;
    gap: 115px;
}

.app .title-block .mansory .item.big .in-title h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

.app .title-block .mansory .item.big .in-title h3 {
    margin-top: 36px;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-2);
    max-width: 380px;
}

.app .title-block .mansory .item.big .in-title img {
    position: absolute;
    right: -50px;
    bottom: -40px;
    height: 350px;
    -o-object-position: bottom;
    object-position: bottom;
    -o-object-fit: contain;
    object-fit: contain;
}

.app .title-block .mansory .item.big .statistics {
    border-top: 2px solid var(--background);
    width: 100%;
    margin-left: -50px;
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
    padding-top: 22px;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: -10px;
}

.app .title-block .mansory .item.big .statistics .st-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.app .title-block .mansory .item.big .statistics .st-item h2 {
    font-size: 24px;
    font-weight: 600;
}

.app .title-block .mansory .item.big .statistics .st-item h3 {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-2);
}

.app .title-block .mansory .list {
    width: calc(100% / 3);
    display: grid;
    grid-template-rows: -webkit-min-content;
    grid-template-rows: min-content;
    gap: 20px;
}

.app .title-block .mansory .list .item {
    position: relative;
    overflow: hidden;
    padding: 35px;
}

.app .title-block .mansory .list .item .absolute {
    position: absolute;
    right: 0;
}

.app .title-block .mansory .list .item:first-child .absolute {
    top: -10px;
    right: -10px;
}

.app .title-block .mansory .list .item h3 {
    color: var(--text-2);
    font-weight: 500;
    font-size: 18px;
}

.app .title-block .mansory .list .item h1 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 12px;
}

.app .title-block .mansory .list .item h4 {
    margin-top: 16px;
    color: var(--text-2);
    line-height: 1;
    font-size: 20px;
    font-weight: 400;
}

.app .title-block .mansory .list .item .link-button {
    width: 100%;
    margin-top: 56px;
}

.app .title-block .mansory .list .item .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app .title-block .mansory .list .item .flex h2 {
    font-size: 22px;
    font-weight: 500;
}

.app .title-block .mansory .list .item:last-child h3 {
    margin-top: 16px;
}

.app .title-block .mansory .list .item:last-child h1 {
    font-size: 78px;
    font-weight: 700;
    margin-top: 0;
    line-height: 0.8;
    margin-top: 35px;
}

.app .showcase-block {
    margin-top: 150px;
}

.app .showcase-block .mansory {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    gap: 20px;
    height: 930px;
}

.app .showcase-block .mansory .list {
    display: grid;
    gap: 20px;
    width: 100%;
}

.app .showcase-block .mansory .list:nth-child(1) {
    grid-template-rows: 1fr -webkit-min-content;
    grid-template-rows: 1fr min-content;
}

.app .showcase-block .mansory .list:nth-child(2) {
    grid-template-rows: -webkit-min-content -webkit-min-content 1fr;
    grid-template-rows: min-content min-content 1fr;
}

.app .showcase-block .mansory .list:nth-child(3) {
    grid-template-rows: 370px 1fr;
}

.app .showcase-block .mansory .list .item {
    position: relative;
    padding: 35px;
    background: var(--background-2);
    background-color: var(--background-3);
    border-radius: 40px;
    overflow: hidden;
}

.app .showcase-block .mansory .list:nth-child(1) .item:nth-child(1) {
    background: url("/components/images/cones.png"), var(--background-2);
    background-color: var(--background-3);
    background-size: cover;
}

.app .showcase-block .mansory .list:nth-child(1) .item h1 {
    background: linear-gradient(111.48deg, #FFFFFF 5.1%, #4952A3 94.51%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 56px;
    font-weight: 600;
    line-height: 0.9;
}

.app .showcase-block .mansory .list:nth-child(1) .item h3 {
    margin-top: 32px;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-2);
}

.app .showcase-block .mansory .list:nth-child(1) .item h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    max-width: 256px;
}

.app .showcase-block .mansory .list:nth-child(1) .item .absolute {
    position: absolute;
    right: 0;
    top: 0;
}

.app .showcase-block .mansory .list:nth-child(2) .item h1 {
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
}

.app .showcase-block .mansory .list:nth-child(2) .item h2 {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-2);
    max-width: 256px;
}

.app .showcase-block .mansory .list:nth-child(2) .item .absolute {
    position: absolute;
    right: 0;
    top: 0;
}

.app .showcase-block .mansory .list:nth-child(2) .item:nth-child(2) {
    text-align: center;
}

.app .showcase-block .mansory .list:nth-child(2) .item:nth-child(2) h1 {
    margin-top: 28px;
}

.app .showcase-block .mansory .list:nth-child(2) .item:nth-child(2) h2 {
    max-width: 100%;
}

.app .showcase-block .mansory .list:nth-child(2) .item:nth-child(3) {
    overflow: visible;
}

.app .showcase-block .mansory .list:nth-child(2) .item:nth-child(3) img {
    right: -75px;
    top: -20px;
    z-index: 2;
}

.app .showcase-block .mansory .list:nth-child(3) .item h1 {
    max-width: 400px;
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
    background: linear-gradient(111.48deg, #FFFFFF 5.1%, #4952A3 94.51%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app .showcase-block .mansory .list:nth-child(3) .item:nth-child(1) {
    background-image: url("/components/images/circle.png"), var(--background-2);
    background-size: cover;
    background-color: var(--background-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app .showcase-block .mansory .list:nth-child(3) .item:nth-child(1) h1 {
    text-align: center;
}

.app .showcase-block .mansory .list:nth-child(3) .item:nth-child(2) {
    background-image: url("/components/images/circlenext.png"), var(--background-2);
    background-color: var(--background-3);
    background-repeat: no-repeat;
}

.app .showcase-block .mansory .list:nth-child(3) .item:nth-child(2) h1 {
    position: absolute;
    text-align: right;
    bottom: 35px;
}

.app .marquee-block {
    margin-top: 90px;
    display: flex;
    overflow: hidden;
}

.app .marquee-block img {
    display: block;
    padding-right: 75px;
    height: 60px;
}

.app .shadow-block {
    pointer-events: none;
    position: absolute;
    background: linear-gradient(90deg, var(--background) 0%, transparent 50%, var(--background) 100%);
    height: 60px;
    margin-top: -60px;
    left: 0;
    right: 0;
}

.app .list-block {
    margin-top: 195px;
}

.app .list-block .name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app .list-block .name h1 {
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
}

.app .list-block .name .manage h2 {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-2);
}

.app .list-block .name .manage .controls {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app .list-block .name .manage .controls a {
    -webkit-text-decoration: 1px underline;
    text-decoration: 1px underline;
    font-size: 16px;
}

.app .list-block .name .manage .controls .arrows {
    display: flex;
    gap: 20px;
}

.app .list-block .name .manage .controls .arrows svg {
    color: var(--text);
}

.app .list-block .list {
    transition: var(--transition);
    display: flex;
    gap: 20px;
    margin-top: 50px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100vw;
    overflow-x: scroll;
    overflow-y: hidden;
    margin-left: calc((100vw - var(--max-width)) / -2);
    scroll-behavior: smooth;
}

.app .list-block .list::-webkit-scrollbar {
    display: none;
}

.app .list-block .list .item:first-of-type {
    margin-left: calc((100vw - var(--max-width)) / 2);
}

.app .list-block .list .item:last-of-type {
    margin-right: calc((100vw - var(--max-width)) / 2);
}

.app .list-block .list .item {
    transition-delay: 0.1s;
    min-width: calc(345px - 24px * 2);
    height: calc(420px - 24px * 2);
    padding: 24px;
    background: var(--background-2);
    background-color: var(--background-3);
    border-radius: 40px;
    text-align: center;
}

.app .list-block .list .item img {
    transition: var(--transition);
    transition-delay: 0.1s;
}

.app .list-block .list .item h1 {
    transition: var(--transition);
    transition-delay: 0.1s;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    max-width: 165px;
    margin: auto;
    margin-top: 12px;
}

.app .list-block .list .item h2 {
    transition: var(--transition);
    transition-delay: 0.1s;
    height: 0;
    margin-top: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-2);
    opacity: 0;
}

.app .list-block .list .item:hover {
    opacity: 1;
}

.app .list-block .list .item:hover img {
    margin-top: -35px;
}

.app .list-block .list .item:hover h1 {
    margin-top: -5px;
}

.app .list-block .list .item:hover h2 {
    height: 38px;
    opacity: 1;
    margin-top: 12px;
}

.app .list-block .list .item:active {
    opacity: var(--opacity-2);
}

.app .instruments-block {
    margin-top: 150px;
    text-align: center;
}

.app .instruments-block h1 {
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
}

.app .instruments-block h2 {
    color: var(--text-2);
    font-size: 18px;
    font-weight: 400;
    max-width: 710px;
    margin: auto;
    margin-top: 24px;
}

.app .instruments-block .selectors {
    margin-top: 72px;
    display: flex;
}

.app .instruments-block .selectors span {
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    padding-bottom: 24px;
    border-bottom: 1px solid #505050;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
}

.app .instruments-block .selectors span.active {
    color: #454CEE;
    border-color: #454CEE;
}

.app .instruments-block .preview {
    margin-top: 50px;
    background: var(--background-2);
    background-color: var(--background-3);
    border-radius: 40px;
    padding: 40px;
}

.app .instruments-block .preview img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.app .new-block {
    margin-top: 150px;
    display: flex;
    background-image: url("/components/images/flames.png"), linear-gradient(180deg, #000000 0%, #070828 100%);
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    border-radius: 40px;
    border: 1px solid #1A1A1A;
    height: 700px;
}

.app .new-block .title {
    padding: 90px;
    padding-right: 0;
}

.app .new-block .title h1 {
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
}

.app .new-block .title h2 {
    margin-top: 24px;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-2);
    max-width: 610px;
}

.app .new-block .title .link-button {
    margin-top: 48px;
}

.app .new-block img {
    height: 530px;
    margin-top: 90px;
    margin-right: 210px;
}

.app .friend-block {
    margin-top: 150px;
    display: flex;
    gap: 150px;
    align-items: center;
    padding-left: 90px;
}

.app .friend-block img {
    width: 35%;
}

.app .friend-block .title {
    width: 100%;
}

.app .friend-block .title h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}

.app .friend-block .title h2 {
    margin-top: 24px;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-2);
}

.app .friend-block .list {
    margin-top: 24px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app .friend-block .list .item {
    width: calc(100% - 20px * 2);
    padding: 16px 20px;
    background: var(--background-2);
    background-color: var(--background-3);
    border-radius: 25px;
}

.app .friend-block .list .item:not(:last-child) {
    width: calc(100% / 2 - 20px * 2 - 10px);
}

.app .friend-block .list .item h4 {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-2);
    margin-bottom: 8px;
}

.app .friend-block .list .item .input {
    display: flex;
    gap: 4px;
}

.app .friend-block .list .item .input input {
    font-size: 32px;
    font-weight: 400;
    outline: none;
    border: none;
    background: none;
    width: 36px;
    min-width: 36px;
}

.app .friend-block .list .item h3 {
    font-size: 32px;
    font-weight: 400;
}

.app .friend-block p {
    max-width: 490px;
    margin-top: 25px;
    color: var(--text-2);
    font-style: italic;
    font-size: 18px;
    font-weight: 300;
    opacity: var(--opacity-2);
}

.app .friend-block p a {
    background: linear-gradient(90deg, #454CEE 0%, #7910FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app .friend-block .link-button {
    margin-top: 50px;
}

.app .ddos-block {
    margin-top: 150px;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(180deg, #03000A 0%, #080611 100%);
    border-radius: 40px;
    border: 1px solid #1A1A1A;
    height: 600px;
}

.app .ddos-block .title {
    padding: 60px 50px;
    padding-right: 0;
}

.app .ddos-block .title h1 {
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
}

.app .ddos-block .title h2 {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-2);
    margin-top: 18px;
}

.app .ddos-block .advantages {
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

.app .ddos-block .advantages .item h3 {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
}

.app .ddos-block .advantages .item h4 {
    margin-top: 16px;
    color: var(--text-2);
    font-size: 14px;
    font-weight: 400;
}

.app .ddos-block .link-button {
    margin-top: 48px;
}

.app .connect-block {
    margin-top: 150px;
    display: flex;
    height: 212px;
}

.app .connect-block .title {
    position: relative;
    z-index: 1;
    margin-left: -1px;
    background: linear-gradient(90deg, var(--background) 35%, transparent);
    width: 100%;
    padding-left: 20px;
    height: 212px;
    display: grid;
    align-content: center;
}

.app .connect-block .title::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100vw;
    background-color: var(--background);
    left: -100vw;
}

.app .connect-block .title h1 {
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
}

.app .connect-block .title h2 {
    font-size: 18px;
    margin-top: 24px;
    color: var(--text-2);
    font-weight: 400;
    max-width: 395px;
}

.app .connect-block .container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    width: calc(100vw - 5vw);
    height: 212px;
    overflow: hidden;
}

.app .connect-block .container .marquee,
.app .connect-block .container .marquee .child {
    display: flex;
}

.app .connect-block .container .marquee:nth-child(2) {
    margin-top: 20px;
}

.app .connect-block .container .marquee .item {
    position: relative;
    padding: 20px;
    display: flex;
    gap: 100px;
    padding-right: 50px;
}

.app .connect-block .container .marquee .item::before {
    content: "";
    position: absolute;
    width: calc(100% - 30px);
    height: 100%;
    border-radius: 20px;
    background: var(--background-2);
    background-color: var(--background-3);
    border-radius: 20px;
    top: 0;
    left: 0;
}

.app .connect-block .container .marquee .item .name {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
}

.app .connect-block .container .marquee .item .name div h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.app .connect-block .container .marquee .item .name div h4 {
    margin-top: 10px;
    color: var(--text-2);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.app .connect-block .container .marquee .item .info {
    position: relative;
    display: flex;
    gap: 50px;
    align-items: center;
}

.app .connect-block .container .marquee .item .info h3 {
    text-wrap: nowrap;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-2);
}

.app .connect-block .container .marquee .item .info h3:nth-child(2) {
    color: var(--text);
}

.app .connect-block .container .marquee .item .info h3:nth-child(3) {
    color: #454CEE;
}

.app .connect-block .container .marquee .item .info h3.warning {
    color: #FFE870;
}

.app .connect-block .container .marquee .item .info h3.danger {
    color: #EE4559;
}

.app .faq-block {
    margin-top: 150px;
}

.app .faq-block .questions {
    margin-top: 48px;
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.app .faq-block .questions .list {
    display: grid;
    gap: 20px;
}

.app .faq-block .questions .list .question {
    border-radius: 20px;
    background: var(--background-2);
    background-color: var(--background-3);
    padding: 35px;
}

.app .faq-block .questions .list .question .name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app .faq-block .questions .list .question .name h2 {
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
}

.app .faq-block .questions .list .question .name svg {
    transition: var(--transition);
    color: var(--text);
}

.app .faq-block .questions .list .question h3 {
    pointer-events: none;
    transition: var(--transition) linear;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    color: var(--text-2);
    font-weight: 400;
    font-size: 18px;
    max-width: 550px;
}

.app .faq-block .questions .list .question.open {
    background-color: var(--background);
}

.app .faq-block .questions .list .question.open .name svg {
    transform: rotate(180deg);
    color: var(--text-2);
}

.app .faq-block .questions .list .question.open h3 {
    pointer-events: all;
    max-height: 200px;
    opacity: 1;
    margin-top: 25px;
}

/* Footer */

footer {
    margin-top: 150px;
    border-top: 1px solid #3F3F3F;
    padding-top: 50px;
}

footer .content {
    width: var(--width);
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    justify-content: space-between;
}

footer .content .company {
    display: grid;
    align-content: space-between;
}

footer .content .company div h1 {
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
}

footer .content .company div h2 {
    margin-top: 14px;
    color: var(--text-2);
    font-weight: 400;
    font-size: 12px;
}

footer .content .links {
    display: flex;
    gap: 90px;
}

footer .content .links .link {
    display: grid;
    max-width: 200px;
    align-content: baseline;
}

footer .content .links .link h1 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}

footer .content .links .link a {
    margin-top: 18px;
    color: var(--text-2);
    font-weight: 400;
    line-height: 1;
    font-size: 14px;
}

footer .content .links .link a:hover {
    opacity: 1;
    color: var(--text);
}

footer .content .links .link a:active {
    opacity: var(--opacity-2);
}

footer .content .links .link a.custom {
    font-size: 16px;
    color: var(--text);
}

footer .content .links .link a.custom:hover {
    opacity: var(--opacity);
}

footer .content .links .link a.custom:active {
    opacity: var(--opacity-2);
}

footer .content .links .link h3 {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-2);
}

footer .end {
    margin-top: 50px;
    border-top: 1px solid #3F3F3F;
    padding: 24px 0;
}

footer .end .in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--width);
    max-width: var(--max-width);
    margin: auto;
}

footer .end .in p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
}

footer .end .in div {
    display: flex;
    gap: 40px;
}

footer .end .in div a {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
}

footer .end .in div a:hover {
    opacity: 1;
    color: var(--text);
}

footer .end .in div a:active {
    opacity: var(--opacity-2);
}

/* Animations */

@-webkit-keyframes load {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes load {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}