body{

margin:0;

background:#07020d;

font-family:Arial,Helvetica,sans-serif;

color:white;

display:flex;

justify-content:center;

align-items:center;

min-height:100vh;

text-align:center;

}

.container{

width:90%;

max-width:600px;

}

.logo{

width:180px;

margin-bottom:25px;

filter:drop-shadow(0 0 20px #8a2be2);

}

h1{

font-size:52px;

margin-bottom:10px;

}

h2{

font-size:34px;

line-height:1.3;

margin-bottom:20px;

}

p{

font-size:22px;

color:#cccccc;

margin-bottom:30px;

}

.buttons{

display:flex;

justify-content:center;

gap:20px;

margin-bottom:25px;

flex-wrap:wrap;

}

button{

background:#7d2cff;

border:none;

padding:15px 35px;

color:white;

font-size:18px;

border-radius:15px;

cursor:pointer;

transition:.3s;

}

button:hover{

background:#a14dff;

transform:scale(1.05);

}

#ca{

word-break:break-all;

font-size:18px;

color:#8ec5ff;

margin-bottom:35px;

}

.socials{

display:flex;

justify-content:center;

gap:30px;

}

.socials a{

color:white;

text-decoration:none;

background:#7d2cff;

padding:15px 30px;

border-radius:15px;

font-size:20px;

transition:.3s;

}

.socials a:hover{

background:#a14dff;

}