*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:30px;
background:#081120;
overflow-x:hidden;
}

.background{
position:fixed;
inset:0;
background:
radial-gradient(circle at top left,#2563eb55,transparent 30%),
radial-gradient(circle at bottom right,#7c3aed55,transparent 30%);
z-index:-1;
}

.container{
width:100%;
max-width:900px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,0.15);
border-radius:25px;
padding:40px;
color:white;
box-shadow:0 20px 50px rgba(0,0,0,0.5);
}

.top-badge{
display:inline-block;
padding:8px 18px;
border-radius:50px;
background:#2563eb;
font-size:14px;
font-weight:600;
margin-bottom:20px;
}

h1{
font-size:42px;
font-weight:800;
margin-bottom:15px;
}

.subtitle{
font-size:17px;
line-height:1.8;
color:#cbd5e1;
margin-bottom:30px;
}

.card{
background:rgba(255,255,255,0.06);
padding:25px;
border-radius:15px;
margin-bottom:25px;
}

.card h2{
margin-bottom:20px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:15px;
}

.item{
padding:15px;
background:rgba(255,255,255,0.08);
border-radius:12px;
}

.warning{
background:#f59e0b22;
border-left:4px solid #f59e0b;
padding:18px;
border-radius:12px;
margin-bottom:25px;
line-height:1.8;
}

.consent{
display:flex;
gap:12px;
align-items:flex-start;
margin-bottom:25px;
}

.consent input{
margin-top:5px;
transform:scale(1.3);
}

button{
width:100%;
padding:18px;
border:none;
border-radius:14px;
font-size:18px;
font-weight:700;
background:linear-gradient(135deg,#2563eb,#7c3aed);
color:white;
cursor:pointer;
transition:.3s;
}

button:hover{
transform:translateY(-3px);
}

.result-box{
margin-top:30px;
display:none;
background:rgba(255,255,255,0.06);
padding:25px;
border-radius:15px;
line-height:2;
}

.result-box h3{
margin-bottom:15px;
}

.footer{
text-align:center;
margin-top:25px;
color:#94a3b8;
font-size:14px;
}

@media(max-width:768px){

.container{
padding:25px;
}

h1{
font-size:30px;
}

.subtitle{
font-size:15px;
}

}
