.music-player {
    max-width: 400px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.background-gradient {
    background: linear-gradient(135deg, #4b0082, #ff4500);
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

.music-icon img {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 10px;
}

.song-title {
    font-size: 24px;
    margin: 15px 0;
}

.custom-player {
    margin: 20px 0;
}

.time-display {
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background: #ffa500;
    width: 0;
    transition: width 0.3s;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.control-btn {
    background: #ffa500;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn-step {
    background: #ffa6003a;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.back-button {
    margin-top: 10px;
    margin-bottom: 10px;
    float: inline-start;
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.back-button:hover {
    text-decoration: underline;
}