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

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#0f0f0f,#1a1a1a,#000);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.card{

    width:100%;
    max-width:520px;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:18px;

    padding:50px 35px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.4);

}

.brand{
    display:inline-block;
    color:#d4af37;
    font-size:15px;
    font-weight:600;
    letter-spacing:6px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.card h1{
    color:#fff;
    font-size:46px;
    margin-bottom:18px;
    font-weight:700;
}

.card p{
    color:#d7d7d7;
    line-height:1.8;
    font-size:16px;
    margin-bottom:35px;
}

.card h1{

    color:#d4af37;

    font-size:46px;

    margin-bottom:18px;

    font-weight:700;

}

.card p{

    color:#d7d7d7;

    line-height:1.8;

    font-size:16px;

    margin-bottom:35px;

}

.social-links{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}

.social-links a{

    text-decoration:none;

    color:#fff;

    padding:14px 22px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.35s;

    font-weight:500;

}

.social-links i{

    font-size:18px;

}

.facebook{

    background:#1877f2;

}

.instagram{

    background:linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045);

}

.whatsapp{

    background:#25d366;

}

.social-links a:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 20px rgba(0,0,0,.35);

}

@media(max-width:600px){

    .card{

        padding:40px 25px;

    }

    .card h1{

        font-size:36px;

    }

    .social-links{

        flex-direction:column;

    }

    .social-links a{

        justify-content:center;

        width:100%;

    }

}