*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
font-size:16px;
}

body{

font-family:'Cairo',sans-serif;

background:#020617;

color:#fff;

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:24px;

overflow:hidden;

position:relative;

}

.bg{

position:absolute;

inset:0;

background:

radial-gradient(circle at top left,#2563eb55,transparent 35%),

radial-gradient(circle at bottom right,#7c3aed55,transparent 35%),

linear-gradient(135deg,#020617,#0f172a,#111827);

z-index:-1;

}

.card{

width:100%;

max-width:700px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

padding:60px 40px;

text-align:center;

box-shadow:0 25px 60px rgba(0,0,0,.35);

animation:show .8s ease;

}

.logo img{

width:90px;

height:90px;

margin-bottom:20px;

}

.badge{

display:inline-block;

padding:8px 18px;

border-radius:999px;

background:#2563eb22;

border:1px solid #2563eb55;

font-size:.9rem;

margin-bottom:25px;

}

h1{

font-size:clamp(2rem,5vw,3rem);

margin-bottom:18px;

font-weight:800;

}

p{

font-size:1.08rem;

line-height:2;

color:#cbd5e1;

max-width:520px;

margin:auto;

}

.actions{

margin-top:40px;

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

}

.btn{

padding:14px 30px;

border-radius:12px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.primary{

background:#2563eb;

color:#fff;

}

.primary:hover{

transform:translateY(-3px);

background:#1d4ed8;

}

.secondary{

color:#fff;

border:1px solid rgba(255,255,255,.15);

}

.secondary:hover{

background:rgba(255,255,255,.08);

}

footer{

margin-top:45px;

font-size:.9rem;

color:#94a3b8;

}

footer strong{

color:#fff;

}

@keyframes show{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:none;

}

}

@media(max-width:768px){

.card{

padding:40px 25px;

}

p{

font-size:1rem;

}

.logo img{

width:70px;

height:70px;

}

}

@media(max-width:480px){

.actions{

flex-direction:column;

}

.btn{

width:100%;

}

}