* {
    margin: 0;
    padding: 0;
}

.root {
    background-image: url('../img/page_bg.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #F0F3F8;
}

.col {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 70px 16px 180px;
    box-sizing: border-box;
}

.app-name-logo {
    width: 124px;
}

.app-name-logo img {
    width: 159px;
    height: 30px;
}


.arc-card {
    height: 276px;
    width: 100%;
    background: white;
    box-sizing: border-box;
    border-radius: 29px;
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 21px;
}

.arc-img {
    width: 100%;
    height: 182px;
    margin-top: 16px;
}

.arc-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 0;
}

.arc-text {
    font-weight: 400;
    font-size: 14px;
    color: black;
    line-height: 18px;
    margin-bottom: 8px;
}

.arc-score {
    font-weight: bold;
    font-size: 41px;
    color: #BA70FE;
    line-height: 50px;
    margin-bottom: 14px;
}

.amount {
    font-weight: bold;
    font-size: 41px;
    color: black;
    line-height: 50px;
    margin-bottom: 17px;
}

.instant {
    font-weight: 600;
    font-size: 23px;
    color: #BA70FE;
    line-height: 23px;
    margin-top: 32px;
}

.badge {
    width: 218px;
    height: 29px;
    z-index: 2;
    margin-top: 26px;
}

.user-card {
    width: 100%;
    height: 134px;
    background: white;
    border-radius: 8px;
    margin-top: -15px;

    font-weight: 500;
    font-size: 14px;
    color: #333;
    line-height: 18px;

    display: flex;
    align-items: center;
    justify-content: space-around;
}

.avatar {
    width: 78px;
    height: 70px;
}

.left {
    display: flex;
    flex-direction: column;
    height: 62px;
    justify-content: space-between;
}

.right {
    display: flex;
    flex-direction: column;
    height: 62px;
    justify-content: space-between;
}


.men-card-wrap {
    width: 100%;
    position: relative;
    height: 195px;
    margin-top: 30px;
}

.men-card {
    width: 100%;
    height: 145px;
    background: white;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: end;

    position: absolute;
    top: 50px;
}

.men-card-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-right: 50px;
}

.indicator {
    width: 6px;
    height: 6px;
}

.feature {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    line-height: 18px;
}

.men {
    width: 212px;
    height: 183px;
    position: absolute;
    left: 0;
    top: 0;
}

.coins {
    width: 67px;
    height: 69px;
    position: absolute;
    right: 21px;
    top: 0;
}

.screen-card {
    height: 223px;
    width: 100%;
    position: relative;
    margin-top: 6px;
}

.screen-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 38px;
}

.coin-l {
    width: 66px;
    height: 69px;
    position: absolute;
    left: 10px;
    top: 0;
}

.need-come-me {
    font-weight: 600;
    font-size: 18px;
    color: #BA70FE;
    line-height: 21px;
    position: absolute;
    left: 0;
    top: 68px;
}

.footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-box {
    width: 100%;
    display: flex;
    justify-content: center;
}

.copyright {
    font-size: 12px;
    color: #333;
    box-sizing: border-box;
    padding-bottom: 16px;
}

#get_apk_box {
    width: 318px;
    height: 93px;

    background-image: url('../img/btn_bg.webp');
    background-size: contain;
    background-repeat: no-repeat;

    margin-top: -4px;
    margin-bottom: -8px;
    animation: apply 1200ms infinite;
}

#get_apk_box a {
    width: 100%;
    height: 87%;
    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: 500;
    font-size: 20px;
    color: white;
    line-height: 25px;
    text-decoration: none;

}

@keyframes apply {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}