.audio-files {
    width: 100%;
    margin-top: 25px;
    padding: 10px;
    background: #fff;
    border-radius: 27px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.audio-files audio {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    background: linear-gradient(90deg, #5f45e0, #aa3ecb, #3051cb, #8220fa, #20fcbc);
    outline: none;
    padding: 5px;
}

.audio-files .audio-item {
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 15px;
    margin-bottom: 10px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-files .audio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .audio-files {
        width: 100%;
    }
}
