.music-card{
    border:1px solid #e5e5e5;
    margin-top:15px;
    background:#fff;
    border-radius:30px;
    padding:20px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
    cursor:pointer;
    transition:0.3s;
}

.music-card:hover{
    transform:translateY(-5px);
}

.cover{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    background:#fff;
    z-index:1;
}

.cover::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:25px;
    background:conic-gradient(#DC0000, transparent, #DC0000);
    animation:spin 6s linear infinite;
    z-index:0;
}

@keyframes spin{
    0%{transform:rotate(0deg)}
    100%{transform:rotate(360deg)}
}

.cover::after{
    content:"";
    position:absolute;
    inset:2px;
    background:#fff;
    border-radius:23px;
    z-index:1;
}

.cover img{
    position:relative;
    width:100%;
    height:200px;
    object-fit:contain;
    border-radius:25px;
    z-index:2;
}

.time{
    font-size:12px;
    color:#999;
    margin:10px 0;
}

.title{
    font-size:18px;
    font-weight:600;
}

.artist{
    font-size:14px;
    color:#aaa;
    margin-bottom:15px;
}

.actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.icon{
    font-size:20px;
    color:#DC0000;
}

.wave{
    display:flex;
    justify-content:center;
    gap:4px;
}

.bar{
    width:3px;
    height:10px;
    background:#dcdcdc;
    border-radius:2px;
    animation:wave 1s infinite ease-in-out;
}

.bar:nth-child(odd){
    background:#DC0000;
}

.bar:nth-child(1){height:8px}
.bar:nth-child(2){height:15px}
.bar:nth-child(3){height:10px}
.bar:nth-child(4){height:18px}
.bar:nth-child(5){height:12px}
.bar:nth-child(6){height:20px}
.bar:nth-child(7){height:10px}
.bar:nth-child(8){height:16px}
.bar:nth-child(9){height:12px}
.bar:nth-child(10){height:14px}

@keyframes wave{
    0%,100%{opacity:0.4}
    50%{opacity:1}
}

.icon img{
    height:20px;
    width:20px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
}