/* Most Played Section */
.most-played-section {
    background: white;
    padding: 20px;
    border-top: 1px solid #eee;
}

.most-played-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.most-played-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: linear-gradient(135deg, #fff5f5 0%, #fef7f7 100%);
    border-radius: 12px;
    border-left: 4px solid #ff6b6b;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.most-played-item:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.most-played-item:hover .most-played-title,
.most-played-item:hover .most-played-artist {
    color: white;
}

.most-played-item:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.most-played-rank {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.most-played-item:hover .most-played-rank {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.most-played-info {
    flex: 1;
    min-width: 0;
}

.most-played-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

.most-played-artist {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.most-played-count {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.most-played-item:hover .most-played-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

