.app-home {
    background: linear-gradient(180deg, rgba(23, 26, 29, 0.00) 22.21%, #171A1D 92.69%), linear-gradient(245deg, #006FBA 3.62%, #3F2EA8 54.28%, #1B0B4B 104.13%);
    position: relative;
    overflow: hidden;
}

.app-home__video {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 35%;
    mix-blend-mode: screen;
    pointer-events: none;
    max-width: 500px;
}

.app-home__container {
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.app-home__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}


.app-home__lang-wrapper {
    position: relative;
}

.app-home__logo {
    margin: auto 0 40px;
    width: 138px;
}

.app-home__title {
    font-family: Bender, sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.56px;
    background: linear-gradient(92deg, #BCB3FF 1.63%, #ADB6FF 99.86%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 48px;
    text-align: center;
}

.app-home__btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 232px;
    margin-bottom: auto;
}

.app-home__btn {
    text-align: center;
    width: 100%;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    background: rgba(255, 255, 255, 0.20);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.app-home__btn.--purple {
    background: #960CCC;
}

.app-home__btn:hover {
    background: rgba(255, 255, 255, 0.30);
    color: rgba(255, 255, 255, 1);
}

.app-home__btn:active {
    background: rgba(255, 255, 255, 0.40);
    color: rgba(255, 255, 255, 1);
}

.app-home__btn.--purple:hover {
    background: #8909bb;
}

.app-home__btn.--purple:active {
    background: #6d0796;
}

.app-home__bottom {
    margin: 40px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-home__tg-btn {
    display: flex;
    padding: 8px 13px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    font-family: Roboto, Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.app-home__tg-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.app-home__tg-btn:active {
    background: rgba(255, 255, 255, 0.20);
}

.app-home__tg-btn-icon {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 800px) {
    .app-home__video {
        max-width: 350px;
    }
}