.download-modal{

position:fixed;

inset:0;

background:rgba(0,0,0,0.75);

backdrop-filter:blur(10px);

display:none;

align-items:center;

justify-content:center;

z-index:9999;

}



.download-box{

width:420px;

padding:40px;

background:rgba(17,24,39,0.95);

border:1px solid rgba(0,245,212,0.3);

border-radius:25px;

text-align:center;

box-shadow:0 0 40px rgba(0,245,212,0.25);

}



.download-box h2{

font-family:Orbitron,sans-serif;

color:white;

margin-bottom:15px;

}



.download-box p{

color:#A7B0C0;

}



.progress-bar{

width:100%;

height:10px;

background:#222;

border-radius:20px;

overflow:hidden;

margin:25px 0;

}



.progress-fill{

height:100%;

width:0%;

background:linear-gradient(
90deg,
#00F5D4,
#8B5CF6
);

transition:.3s;

}



#downloadStatus{

color:#00F5D4;

}