.bjmp-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.bjmp-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.bjmp-header p {
    color: #666;
    margin-top: 0.5rem;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.track-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.track-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.track-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #111;
}

.track-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.download-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s;
}

.download-link:hover {
    background: #e5e7eb;
}

audio {
    width: 100%;
    height: 36px;
    border-radius: 8px;
}

/* Customizing audio player a bit for better integration */
audio::-webkit-media-controls-panel {
    background-color: #f9fafb;
}

@media (min-width: 640px) {
    .track-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .track-info {
        flex: 1;
    }
    
    .track-player {
        flex: 2;
        padding: 0 2rem;
    }
    
    .track-actions {
        flex: 0;
    }
}
