*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    width:100%;
    height:100%;
}

body{
    font-family:'Poppins',sans-serif;
    color:#fff;
    overflow-x:hidden;
    background:#080811;
}

.background{
    position:fixed;
    inset:0;
    z-index:-3;
    background:linear-gradient(
        135deg,
        #12001f,
        #1b0635,
        #2b0b56,
        #170228,
        #090912
    );
    background-size:400% 400%;
    animation:bgMove 18s ease infinite;
}

@keyframes bgMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

.background::before,
.background::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(140px);
    opacity:.45;
}

.background::before{
    top:-120px;
    left:-120px;
    background:#8a2eff;
}

.background::after{
    bottom:-150px;
    right:-150px;
    background:#b56dff;
}

.container{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.logo{
    text-align:center;
    margin-bottom:45px;
}

.logo h1{
    font-size:4rem;
    font-weight:700;
    letter-spacing:2px;
    text-shadow:
        0 0 15px #9c4dff,
        0 0 35px #7d2dff,
        0 0 70px #b98cff;
}

.logo p{
    margin-top:12px;
    font-size:1.1rem;
    color:#d7c9ff;
}
.card{
    width:100%;
    max-width:430px;
    padding:28px;
    border-radius:24px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:
        0 0 40px rgba(133,66,255,.25),
        inset 0 0 20px rgba(255,255,255,.03);
}

.button{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    padding:16px 20px;
    margin:14px 0;
    border-radius:16px;
    text-decoration:none;
    color:#fff;
    font-size:1.05rem;
    font-weight:600;
    transition:.25s ease;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
}

.button svg{
    width:24px;
    height:24px;
}

.button:hover{
    transform:translateY(-4px) scale(1.02);
    box-shadow:0 0 25px rgba(165,98,255,.55);
    background:rgba(150,80,255,.18);
}

.discord:hover{
    border-color:#5865F2;
}

.tiktok:hover{
    border-color:#ff2dd1;
}

.snapchat:hover{
    border-color:#ffd400;
}

footer{
    margin-top:35px;
    opacity:.75;
    font-size:.9rem;
    text-align:center;
}

.particles{
    position:fixed;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:-2;
}

.particles span{
    position:absolute;
    display:block;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#b56dff;
    opacity:.5;
    animation:floatUp linear infinite;
}

.particles span:nth-child(1){left:5%;animation-duration:14s;animation-delay:0s;}
.particles span:nth-child(2){left:15%;animation-duration:18s;animation-delay:2s;}
.particles span:nth-child(3){left:25%;animation-duration:16s;animation-delay:4s;}
.particles span:nth-child(4){left:35%;animation-duration:20s;animation-delay:1s;}
.particles span:nth-child(5){left:45%;animation-duration:15s;animation-delay:6s;}
.particles span:nth-child(6){left:55%;animation-duration:19s;animation-delay:3s;}
.particles span:nth-child(7){left:65%;animation-duration:17s;animation-delay:5s;}
.particles span:nth-child(8){left:75%;animation-duration:21s;animation-delay:2s;}
.particles span:nth-child(9){left:85%;animation-duration:16s;animation-delay:7s;}
.particles span:nth-child(10){left:95%;animation-duration:18s;animation-delay:4s;}
.particles span:nth-child(11){left:12%;animation-duration:22s;animation-delay:8s;}
.particles span:nth-child(12){left:30%;animation-duration:13s;animation-delay:9s;}
.particles span:nth-child(13){left:50%;animation-duration:24s;animation-delay:10s;}
.particles span:nth-child(14){left:70%;animation-duration:17s;animation-delay:11s;}
.particles span:nth-child(15){left:90%;animation-duration:20s;animation-delay:12s;}

@keyframes floatUp{
    from{
        transform:translateY(110vh) scale(.4);
        opacity:0;
    }
    20%{
        opacity:.5;
    }
    to{
        transform:translateY(-20vh) scale(1.3);
        opacity:0;
    }
}

@media (max-width:600px){
    .logo h1{
        font-size:2.8rem;
    }

    .logo p{
        font-size:1rem;
    }

    .card{
        padding:22px;
    }

    .button{
        padding:15px;
        font-size:1rem;
    }
}
