/* ==========================
   Landing Page Premium
========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

height:100vh;

overflow:hidden;

display:flex;

justify-content:center;

align-items:center;

background:url("https://s13.gifyu.com/images/bd8BV.jpg");

background-size:cover;

background-position:center;

background-repeat:no-repeat;

position:relative;

}

/* Overlay */

body::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.45);

backdrop-filter:blur(4px);

}

/* =================
Loading
==================*/

#loading{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:#000;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

z-index:9999;

transition:1s;

}

.loader{

width:70px;

height:70px;

border:6px solid rgba(255,255,255,.2);

border-top:6px solid #ff2e88;

border-radius:50%;

animation:spin 1s linear infinite;

margin-bottom:20px;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

#loading p{

color:white;

font-size:18px;

}

/* =====================
CARD
===================== */

.card{

position:relative;

z-index:2;

width:360px;

padding:40px;

border-radius:30px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(15px);

border:1px solid rgba(255,255,255,.15);

box-shadow:

0 0 30px rgba(255,255,255,.15);

text-align:center;

animation:fadeUp 1.3s;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(50px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* ======================
Avatar
======================*/

.avatar-box{

position:relative;

width:170px;

height:170px;

margin:auto;

display:flex;

justify-content:center;

align-items:center;

}

.avatar{

width:130px;

height:130px;

border-radius:50%;

object-fit:cover;

position:absolute;

z-index:5;

border:4px solid white;

}

/* Ring 1 */

.ring1{

position:absolute;

width:150px;

height:150px;

border-radius:50%;

border:3px solid #ff2e88;

animation:rotate1 6s linear infinite;

box-shadow:

0 0 20px #ff2e88;

}

/* Ring 2 */

.ring2{

position:absolute;

width:165px;

height:165px;

border-radius:50%;

border:3px dashed #00e5ff;

animation:rotate2 9s linear infinite;

box-shadow:

0 0 25px cyan;

}

/* Ring 3 */

.ring3{

position:absolute;

width:180px;

height:180px;

border-radius:50%;

border:3px solid #fff;

opacity:.5;

animation:pulse 3s infinite;

}

@keyframes rotate1{

100%{

transform:rotate(360deg);

}

}

@keyframes rotate2{

100%{

transform:rotate(-360deg);

}

}

@keyframes pulse{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

}

/* =======================
Text
======================= */

.card h1{

margin-top:25px;

font-size:30px;

color:white;

}

.card p{

margin-top:12px;

color:#eee;

line-height:1.7;

font-size:15px;

}

/* ==========================================
   CONTINUE BUTTON PREMIUM
========================================== */

.continue{

display:inline-block;

margin-top:30px;

padding:16px 50px;

border-radius:60px;

text-decoration:none;

font-size:17px;

font-weight:bold;

color:white;

letter-spacing:1px;

background:linear-gradient(
90deg,
#ff2e88,
#ff6db3,
#ff2e88
);

background-size:300%;

animation:btnColor 5s linear infinite;

position:relative;

overflow:hidden;

box-shadow:
0 0 15px #ff2e88,
0 0 35px rgba(255,46,136,.5);

transition:.35s;

}

/* Shine */

.continue::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:60%;

height:100%;

background:rgba(255,255,255,.8);

transform:skewX(-25deg);

animation:shine 2.5s infinite;

}

@keyframes shine{

100%{

left:170%;

}

}

@keyframes btnColor{

0%{

background-position:0%;

}

100%{

background-position:300%;

}

}

.continue:hover{

transform:scale(1.08);

box-shadow:

0 0 20px #ff2e88,

0 0 50px #ff2e88,

0 0 80px #ff2e88;

}

/* ==========================================
LOVE
========================================== */

#love-container{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

overflow:hidden;

pointer-events:none;

z-index:1;

}

.love{

position:absolute;

bottom:-40px;

color:#ff4d94;

animation:loveFly linear forwards;

opacity:.9;

text-shadow:

0 0 8px #ff2e88,

0 0 20px #ff2e88;

}

@keyframes loveFly{

0%{

transform:translateY(0) scale(.5);

opacity:1;

}

100%{

transform:translateY(-120vh) scale(2);

opacity:0;

}

}

/* ==========================================
STAR
========================================== */

#star-container{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

pointer-events:none;

overflow:hidden;

z-index:0;

}

.star{

position:absolute;

width:3px;

height:3px;

background:white;

border-radius:50%;

animation:twinkle 2s infinite alternate;

box-shadow:

0 0 10px white,

0 0 20px white;

}

@keyframes twinkle{

from{

opacity:.2;

transform:scale(.6);

}

to{

opacity:1;

transform:scale(1.8);

}

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:768px){

.card{

width:92%;

padding:30px;

}

.avatar-box{

width:150px;

height:150px;

}

.avatar{

width:115px;

height:115px;

}

.ring1{

width:135px;

height:135px;

}

.ring2{

width:150px;

height:150px;

}

.ring3{

width:165px;

height:165px;

}

.card h1{

font-size:24px;

}

.card p{

font-size:14px;

}

.continue{

padding:15px 40px;

font-size:15px;

}

}