body{
font-family:Inter,sans-serif;
margin:0;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:#020617;
color:white;
overflow:hidden;
}

.background{
position:absolute;
width:100%;
height:100%;
background:
radial-gradient(circle at 20% 20%,#6366f140,transparent),
radial-gradient(circle at 80% 80%,#22c55e30,transparent);
filter:blur(80px);
}

.container{
position:relative;
width:520px;
padding:40px;
border-radius:16px;
background:rgba(30,41,59,0.7);
backdrop-filter:blur(20px);
box-shadow:0 20px 60px rgba(0,0,0,0.6);
}

header h1{
margin:0;
font-size:28px;
}

header p{
opacity:.7;
margin-top:6px;
}

.upload-box{
margin-top:30px;
display:flex;
flex-direction:column;
gap:12px;
}

input{
padding:10px;
background:#020617;
border:1px solid #334155;
border-radius:8px;
color:white;
}

button{
padding:12px;
background:linear-gradient(135deg,#6366f1,#8b5cf6);
border:none;
border-radius:10px;
font-weight:600;
color:white;
cursor:pointer;
}

button:hover{
opacity:.9;
}

.result-card{
margin-top:30px;
background:#020617;
padding:18px;
border-radius:10px;
border:1px solid #334155;
}

pre{
white-space:pre-wrap;
font-size:13px;
}

footer{
margin-top:30px;
display:flex;
justify-content:center;
}

.footer-content{
display:flex;
gap:10px;
align-items:center;
font-size:12px;
opacity:.7;
}
