.music-player {
    background: rgba(18, 18, 18, 0.7);
    border-radius: 12px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.profile-pic-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 250px;
}

.profile-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive design */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
    }
    
    .profile-pic-container {
        width: 100%;
    }

    .profile-pic {
        width: 100%;
        height: auto;
    }
    
    .music-player {
        width: 100%;
    }
}
