*{

margin:0;
padding:0;
box-sizing:border-box;

}


body{

height:100vh;

display:flex;

justify-content:center;

align-items:center;

font-family:'Poppins',sans-serif;

background:#080808;

color:white;

overflow:hidden;

}



.background{

position:absolute;

inset:0;

background:
radial-gradient(circle at top,#40351b,transparent 35%),
radial-gradient(circle at bottom,#222,transparent 40%);

}



.card{

position:relative;

z-index:2;

width:90%;

max-width:420px;

padding:45px 30px;

text-align:center;

border-radius:30px;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.15);

backdrop-filter:blur(20px);

box-shadow:0 30px 80px black;

}



.emoji{

font-size:45px;

margin-bottom:20px;

}



h1{

font-size:30px;

font-weight:600;

}



.subtitle{

margin:15px 0;

color:#ddd;

}



.message{

padding:20px;

margin:25px 0;

border-radius:20px;

background:rgba(255,255,255,.05);

color:#ccc;

line-height:2;

font-size:14px;

font-style:italic;

}



/* Audio Player */

.audio-player{

display:flex;

align-items:center;

gap:20px;

margin-top:30px;

}



#playButton{

width:75px;

height:75px;

border-radius:50%;

border:none;

font-size:25px;

cursor:pointer;

background:#d4af37;

color:#111;

flex-shrink:0;

transition:.3s;

}



#playButton:hover{

transform:scale(1.08);

}



.progress-box{

flex:1;

}



#progress{

width:100%;

cursor:pointer;

accent-color:#d4af37;

}



.time{

display:flex;

justify-content:space-between;

font-size:12px;

color:#aaa;

margin-top:8px;

}



h3{

margin-top:35px;

color:#d4af37;

letter-spacing:2px;

}



.footer{

margin-top:20px;

font-size:13px;

color:#aaa;

}