*{
box-sizing:border-box;
font-family:Segoe UI,Arial,sans-serif;
margin:0;
padding:0
}

body{
background:linear-gradient(135deg,#0a0f3c,#020012);
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
color:#fff
}

.container{
width:95%;
max-width:720px;
background:rgba(10,10,30,.85);
border-radius:16px;
padding:30px;
box-shadow:0 10px 40px rgba(0,0,0,.6)
}

h1{
text-align:center;
margin-bottom:25px;
font-size:26px;
color:#7dcfff
}

label{
display:block;
margin-bottom:6px;
font-size:14px;
color:#9bbcff
}

input,textarea{
width:100%;
background:#03061c;
border:1px solid #2f3fff;
color:#cfe6ff;
padding:12px;
border-radius:10px;
margin-bottom:16px;
font-size:14px
}

textarea{
resize:vertical;
min-height:160px
}

.buttons{
display:flex;
gap:10px;
justify-content:center;
margin-bottom:15px
}

button{
padding:10px 20px;
border:none;
border-radius:25px;
cursor:pointer;
font-weight:600;
transition:.25s;
}

button:hover{
transform:translateY(-2px);
box-shadow:0 6px 14px rgba(0,0,0,.4)
}

#fetchBtn{
background:linear-gradient(45deg,#0072ff,#00e0ff);
color:white
}

#copyBtn{
background:#222;
color:#fff
}

#resetBtn{
background:#b30000;
color:white
}

.progress{
width:100%;
height:8px;
background:#0a0a25;
border-radius:6px;
overflow:hidden;
margin-bottom:10px
}

#bar{
height:100%;
width:0%;
background:linear-gradient(90deg,#00e0ff,#7a00ff);
transition:width .3s ease
}

.stats{
display:flex;
justify-content:space-between;
font-size:14px;
color:#9fb6ff;
margin-bottom:10px
}

@media(max-width:600px){

.container{
padding:20px
}

.buttons{
flex-direction:column
}

button{
width:100%
}

}