/*zero*/
*{
    padding: 0;
    margin: 0;
    border: 0;
}
*,*:before,*:after{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

body{
     font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
.hide{
    display: none !important;
}
/*--------------------*/

.main{
    background: url(./img/pc.png);
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
}
.popup{
    z-index: 110;
    background: rgba(0, 0, 0, .55);
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(env(safe-area-inset-top, 0) + 18px) 18px calc(env(safe-area-inset-bottom, 0) + 18px);
    background: rgba(0, 0, 0, .42);
    animation: gFade .2s ease;
}
.popup .inner{
    width: 100%;
    max-width: 360px;
    border-radius: 22px;
    padding: 22px 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .5), 0 10px 30px rgba(0, 0, 0, .45);
    border: .5px solid rgba(84, 84, 88, .50);
    text-align: center;
    animation: gPop .35s cubic-bezier(.22,.61,.36,1);
    max-height: 100%;
    overflow-y: auto;
    background: rgba(30, 30, 32, .72);
    backdrop-filter: saturate(180%) blur(20px);
}
.popup .inner img{
    display: block;
    margin: 2px auto 10px;
    border-radius: 16px;
}
.popup .inner h3{
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 8px;
}
.popup .inner h2{
   font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 7px;
}
.popup .inner p{
    font-size: 14.5px;
    color: rgba(235, 235, 245, .60);
    line-height: 1.45;
    margin-bottom: 18px;
}
.popup .inner a{
    width: 100%;
    height: 50px;
    border-radius: 14px;
    background: #30d158;
    color: #fff;
    font-weight: 600;
    font-size: 16.5px;
    border: 0;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.4s;
}
.bottom-block{
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 120;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 16px;
    background: rgba(9, 28, 17, .93);
    border: 1px solid #A5FF4A40;
    box-shadow: 0 14px 40px -10px #000b;
    backdrop-filter: blur(10px);
    font-size: 13px;
    color: #eafff0;
    line-height: 1.42;
    transition: opacity .3s, transform .3s;
    max-width: 560px;
    margin: 0 auto;
}
.bottom-block p{
    font-size: 13px;
    color: #eafff0;
    line-height: 1.42;
}
.bottom-block p a{
    color: #A5FF4A;
    text-decoration: underline;
    font-size: 13px;
    line-height: 1.42;
}
.bottom-block button{
    flex-shrink: 0;
    border: 0;
    border-radius: 11px;
    padding: 10px 22px;
    background: #A5FF4A;
    color: #04240f;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    transition: 0.4s;
}
.popup .inner a:hover, .bottom-block button:hover{
    background: rgba(48, 209, 88, 0.4);
}

@media(max-width:750px){
   .main{
        background: url(./img/mob.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}