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

.dlp-wrap{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
background:
radial-gradient(circle at top left,#00f5ff33,transparent 30%),
radial-gradient(circle at bottom right,#7c3aed44,transparent 30%),
#0f172a;
}

.container{
width:100%;
max-width:700px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,.1);
border-radius:30px;
padding:30px;
box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.logo{
width:90px;
height:90px;
margin:auto;
display:flex;
align-items:center;
justify-content:center;
font-size:42px;
border-radius:24px;
background:linear-gradient(135deg,#00f5ff,#7c3aed);
box-shadow:0 0 30px rgba(124,58,237,.5);
}

h1{
text-align:center;
color:white;
margin-top:15px;
}

.subtitle{
text-align:center;
color:#94a3b8;
margin:10px 0 25px;
}

.input-group{
display:flex;
flex-direction:column;
gap:15px;
}

input,select{
width:100%;
padding:14px;
border:none;
outline:none;
border-radius:14px;
background:rgba(255,255,255,.08);
color:white;
font-size:16px;
}

option{
background:#1e293b;
}

button{
margin-top:18px;
padding:15px;
border:none;
border-radius:14px;
cursor:pointer;
font-size:16px;
font-weight:600;
background:linear-gradient(135deg,#00f5ff,#7c3aed);
color:white;
transition:.3s;
}

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

.output{
margin-top:25px;
padding:20px;
background:rgba(255,255,255,.06);
border-radius:18px;
min-height:200px;
overflow:auto;
}

pre{
color:#fff;
font-size:18px;
line-height:1.6;
font-family:Consolas,monospace;
white-space:pre-wrap;
}

@media(max-width:600px){

.container{
padding:20px;
}

h1{
font-size:24px;
}

pre{
font-size:15px;
}
}
