body{
margin:0;
font-family:"Poppins",sans-serif;

background:
radial-gradient(circle at 20% 20%,#1e293b,#020617);

color:white;

min-height:100vh;
display:flex;
justify-content:center;
}

.app-wrapper{

width:100%;
max-width:520px;

padding:16px;

}


.downloader-card{

padding:22px;

border-radius:22px;

background:rgba(255,255,255,0.06);

backdrop-filter:blur(16px);

box-shadow:

0 10px 40px rgba(0,0,0,0.6),

inset 0 1px 0 rgba(255,255,255,0.05);

}


.header{

text-align:center;
margin-bottom:18px;

}

.logo{

font-size:38px;
color:#ff0050;

}

.header h1{

font-size:24px;
font-weight:700;

margin:6px 0;

}

.header p{

color:#94a3b8;
font-size:13px;

}



.input-area{

display:flex;
gap:8px;

background:#020617;

padding:8px;

border-radius:14px;

box-shadow:
inset 0 0 0 1px rgba(255,255,255,0.05);

}


.input-area input{

flex:1;

border:none;
outline:none;

background:transparent;

color:white;

font-size:15px;

padding:8px;

}


.input-area button{

border:none;

width:44px;
height:44px;

border-radius:10px;

font-size:18px;

display:flex;
align-items:center;
justify-content:center;

}


#fetchBtn{

background:linear-gradient(90deg,#ff0050,#ff3b82);

}

#clearBtn{

background:#334155;

}



.loading{

text-align:center;

padding:20px;

color:#94a3b8;

}



.result{

margin-top:10px;
text-align:center;

}


#title{

font-size:16px;
margin-bottom:10px;

color:#cbd5f5;

}



#video{

width:100%;

border-radius:14px;

box-shadow:0 10px 30px rgba(0,0,0,0.6);

margin-bottom:12px;

}



.download-buttons{

display:flex;
gap:10px;

}


.download-buttons button{

flex:1;

border:none;

padding:12px;

border-radius:12px;

font-weight:600;

background:linear-gradient(90deg,#ff0050,#ff3b82);

color:white;

font-size:15px;

}



.photo-gallery{

display:grid;

grid-template-columns:1fr 1fr;

gap:10px;

margin-top:12px;

}



.photo-card{

position:relative;

}


.photo-card img{

width:100%;
border-radius:12px;

}


.photo-download{

position:absolute;

bottom:6px;
right:6px;

border:none;

background:#ff0050;

color:white;

font-size:12px;

padding:6px 8px;

border-radius:8px;

}



.footer{

text-align:center;

margin-top:18px;

font-size:12px;

color:#94a3b8;

}


.footer a{

color:#ff3b82;
text-decoration:none;

}



.hidden{
display:none;
}
