@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Roboto", sans-serif;
    background: url(../images/bg.png) no-repeat top center;
    background-size: cover;
    min-height: auto;
}
img {
    max-width: 100%;
}

a {
    text-decoration: none;
}
.bg-popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.9);
    opacity: 0;
    transition: all 0.5s ease;
}
.box-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 35px;
    width: 100%;
    max-width: 834px;
    border-radius: 34px;
    background: #fff;
    transition: all 1s ease;
}
.content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0 25px;
}
.left {
    width: 334px;
}
.logo img {
    margin-bottom: 8px;
}
h1 {
    color: #014165;
    font-family: Roboto;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 18px;
    height: 177px;
}
h1 span {
    color: #278ba2;
    font-weight: 800;
}
.box {
    max-width: 300px;
    text-align: center;
}
p {
    color: #014165;
    text-align: center;
    font-family: Roboto;
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 8px;
}
.btn {
    margin-top: 10px;
    padding: 12px 40px;
    border-radius: 8px;
    border: 2px solid #fff;
    background: #fca905;
    color: #014165;
    text-align: center;
    font-family: Roboto;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: inline-block;
    width: 100%;
    transition: transform 0.2s;
    animation: shakeY 3s infinite ease-in-out;
}
.btn:hover {
    background: #278ba2;
    color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    transition: background-color 0.3s linear;
}
.close {
    position: absolute;
    top: 18px;
    right: 21px;
}
.mb {
    display: none;
}

@keyframes shakeY {
    0%,
    85%,
    100% {
        transform: translateY(0);
    }
    88% {
        transform: translateY(-2px);
    }
    91% {
        transform: translateY(2px);
    }
    94% {
        transform: translateY(-1px);
    }
    97% {
        transform: translateY(1px);
    }
}

.trust-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #555;
    margin-top: 8px;
    flex-wrap: wrap;
}
.trust-row span {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.trust-row svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .mb {
        display: block;
        margin-bottom: 20px;
    }
    body {
        font-family: "Roboto", sans-serif;
        background: url(../images/bg-mb.png) no-repeat top center;
        background-size: cover;
        min-height: auto;
    }
    .box-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 30px;
        width: 100%;
        max-width: 450px;
        border-radius: 23px;
        background: #fff;
        transition: all 1s ease;
        text-align: center;
    }
    .content {
        display: flex;
        align-items: end;
        gap: 0 25px;
    }
    .left {
        width: 100%;
    }
    .logo img {
        margin-bottom: 15px;
        max-width: 96px;
    }
    h1 {
        font-size: 37px;
        margin-bottom: 5px;
        height: 129px;
        max-width: 400px;
        text-align: center;
        margin: auto;
    }
    .money img {
        max-width: 255px;
    }
    .box {
        max-width: 300px;
        margin: 0 auto;
    }
    p {
        margin-bottom: 8px;
        font-size: 21px;
    }
    .btn {
        border-radius: 8px;
        border: 2px solid #fff;
        background: #fca905;
        font-size: 29px;
        padding: 10px 40px;
    }
    .close img {
        max-width: 25px;
    }
    .close {
        top: 10px;
        right: 12px;
    }
}
