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

body{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:radial-gradient(circle at top left,#1f1f2e,#0f0f17);
color:white;
padding:20px;
}

.container{
text-align:center;
padding:40px;
width:100%;
max-width:500px;
border-radius:20px;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,0.1);
box-shadow:0 0 40px rgba(0,0,0,0.6);
}

h1{
font-size:clamp(24px,5vw,42px);
margin-bottom:10px;
}

h1 span{
background:linear-gradient(90deg,#00f7ff,#6a00ff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

p{
opacity:.75;
margin-bottom:25px;
}

.btn{
display:block;
width:100%;
padding:14px;
border-radius:30px;
background:linear-gradient(90deg,#00f7ff,#6a00ff);
color:white;
font-weight:500;
cursor:pointer;
transition:.3s;
font-size:16px;
margin-bottom:15px;
text-decoration:none;
border:none;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(106,0,255,.5);
}

.copy-menu{
display:none;
margin-top:10px;
}

.copy-menu button{
width:100%;
margin-bottom:10px;
padding:12px;
border:none;
border-radius:20px;
background:#1e1e2f;
color:white;
cursor:pointer;
}

.image-box{
margin-top:20px;
display:none;
}

.image-box img{
width:100%;
border-radius:15px;
}

.toast{
position:fixed;
bottom:30px;
left:50%;
transform:translateX(-50%);
background:#00f7ff;
color:black;
padding:10px 20px;
border-radius:20px;
font-weight:500;
opacity:0;
transition:.4s;
z-index:999;
}

.toast.show{
opacity:1;
}

#musicPlayer{
position:fixed;
bottom:20px;
right:20px;
z-index:9999;
display:flex;
align-items:center;
gap:10px;
padding:10px 14px;
border-radius:50px;
background:rgba(15,15,25,.75);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,.08);
box-shadow:
0 8px 25px rgba(0,0,0,.4),
0 0 15px rgba(0,247,255,.12);
}

#disc{
width:38px;
height:38px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#00f7ff,#6a00ff);
font-size:18px;
color:white;
animation:spin 4s linear infinite;
}

#musicBtn{
width:38px;
height:38px;
border:none;
border-radius:50%;
background:rgba(255,255,255,.08);
color:white;
font-size:16px;
cursor:pointer;
transition:.25s;
}

#musicBtn:hover{
transform:scale(1.08);
background:rgba(255,255,255,.15);
}

.paused #disc{
animation-play-state:paused;
opacity:.5;
}

@keyframes spin{
from{transform:rotate(0deg);}
to{transform:rotate(360deg);}
}

@media(max-width:600px){

#musicPlayer{
bottom:15px;
right:15px;
padding:8px 12px;
}

#disc,
#musicBtn{
width:34px;
height:34px;
font-size:15px;
}

}